diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 17c4d9a..2c4a00b 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,57 +1,57 @@ -# Code of Conduct - -Last Updated: November 19, 2024 - -## Our Pledge - -We as members, contributors, and leaders pledge to make participation in our -community a harassment-free experience for everyone, regardless of age, body -size, visible or invisible disability, ethnicity, sex characteristics, gender -identity and expression, level of experience, education, socio-economic status, -nationality, personal appearance, race, religion, or sexual identity -and orientation. - -We pledge to act and interact in ways that contribute to an open, welcoming, -diverse, inclusive, and healthy community. - -## Our Standards - -Examples of behavior that contributes to a positive environment: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior: - -* The use of sexualized language or imagery -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information without explicit permission -* Other conduct which could reasonably be considered inappropriate - -## Enforcement Responsibilities - -Project maintainers are responsible for clarifying and enforcing standards of -acceptable behavior and will take appropriate and fair corrective action in -response to any behavior that they deem inappropriate, threatening, offensive, -or harmful. - -## Scope - -This Code of Conduct applies within all community spaces, and also applies when -an individual is officially representing the community in public spaces. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported to the project team at . All complaints will be -reviewed and investigated promptly and fairly. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), -version 2.0, available at -. +# Code of Conduct + +Last Updated: November 19, 2024 + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity +and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior: + +* The use of sexualized language or imagery +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information without explicit permission +* Other conduct which could reasonably be considered inappropriate + +## Enforcement Responsibilities + +Project maintainers are responsible for clarifying and enforcing standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the project team at . All complaints will be +reviewed and investigated promptly and fairly. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), +version 2.0, available at +. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cd9fa2e..475456a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,126 +1,126 @@ -# Contributing to DevAssist Bot - -First off, thank you for considering contributing to DevAssist Bot! It's people like you that make DevAssist Bot such a great tool. - -## Code of Conduct - -This project and everyone participating in it is governed by our [Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. - -## How Can I Contribute? - -### Reporting Bugs - -1. Check if the bug has already been reported in [Issues](https://github.com/your-username/devassist-bot/issues) -2. If not, create a new issue using the bug report template -3. Include as much relevant information as possible: - - Python version - - Operating system - - Steps to reproduce - - Expected behavior - - Actual behavior - - Error messages - -### Suggesting Enhancements - -1. Check existing [Issues](https://github.com/your-username/devassist-bot/issues) for similar suggestions -2. Create a new issue using the feature request template -3. Describe the feature in detail: - - Use cases - - Expected behavior - - Potential implementation approach - -### Pull Requests - -1. Fork the repository -2. Create a new branch (`git checkout -b feature/amazing-feature`) -3. Make your changes -4. Run tests (`pytest tests/`) -5. Update documentation -6. Commit your changes (`git commit -m 'Add amazing feature'`) -7. Push to the branch (`git push origin feature/amazing-feature`) -8. Open a Pull Request - -## Development Setup - -1. Clone your fork: - - ```bash - git clone https://github.com/your-username/devassist-bot.git - cd devassist-bot - ``` - -2. Create virtual environment: - - ```bash - python -m venv venv - source venv/bin/activate # Linux/macOS - venv\Scripts\activate # Windows - ``` - -3. Install dependencies: - - ```bash - pip install -r requirements.txt - pip install -r requirements-dev.txt - ``` - -4. Set up pre-commit hooks: - - ```bash - pre-commit install - ``` - -## Coding Guidelines - -- Follow [PEP 8](https://www.python.org/dev/peps/pep-0008/) -- Use type hints -- Write docstrings for functions and classes -- Add tests for new features -- Keep functions small and focused -- Use meaningful variable names - -## Testing - -- Write tests for new features -- Ensure all tests pass before submitting PR -- Maintain test coverage above 80% -- Use pytest for testing - -## Documentation - -- Update relevant documentation -- Add docstrings to new functions/classes -- Update README if needed -- Add examples for new features - -## Git Commit Messages - -- Use present tense ("Add feature" not "Added feature") -- Use imperative mood ("Move cursor to..." not "Moves cursor to...") -- Reference issues and pull requests -- Keep first line under 72 characters -- Describe what and why, not how - -## Review Process - -1. Automated checks must pass -2. Code review by maintainers -3. Documentation review -4. Test coverage verification -5. Final approval - -## Community - -- Join our [Discord server](https://discord.gg/your-invite) -- Follow our [Twitter](https://twitter.com/your-handle) -- Read our [blog](https://your-blog.com) - -## Recognition - -Contributors will be: - -- Listed in CONTRIBUTORS.md -- Mentioned in release notes -- Given special Discord roles - -Thank you for contributing! +# Contributing to DevAssist Bot + +First off, thank you for considering contributing to DevAssist Bot! It's people like you that make DevAssist Bot such a great tool. + +## Code of Conduct + +This project and everyone participating in it is governed by our [Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. + +## How Can I Contribute? + +### Reporting Bugs + +1. Check if the bug has already been reported in [Issues](https://github.com/your-username/devassist-bot/issues) +2. If not, create a new issue using the bug report template +3. Include as much relevant information as possible: + - Python version + - Operating system + - Steps to reproduce + - Expected behavior + - Actual behavior + - Error messages + +### Suggesting Enhancements + +1. Check existing [Issues](https://github.com/your-username/devassist-bot/issues) for similar suggestions +2. Create a new issue using the feature request template +3. Describe the feature in detail: + - Use cases + - Expected behavior + - Potential implementation approach + +### Pull Requests + +1. Fork the repository +2. Create a new branch (`git checkout -b feature/amazing-feature`) +3. Make your changes +4. Run tests (`pytest tests/`) +5. Update documentation +6. Commit your changes (`git commit -m 'Add amazing feature'`) +7. Push to the branch (`git push origin feature/amazing-feature`) +8. Open a Pull Request + +## Development Setup + +1. Clone your fork: + + ```bash + git clone https://github.com/your-username/devassist-bot.git + cd devassist-bot + ``` + +2. Create virtual environment: + + ```bash + python -m venv venv + source venv/bin/activate # Linux/macOS + venv\Scripts\activate # Windows + ``` + +3. Install dependencies: + + ```bash + pip install -r requirements.txt + pip install -r requirements-dev.txt + ``` + +4. Set up pre-commit hooks: + + ```bash + pre-commit install + ``` + +## Coding Guidelines + +- Follow [PEP 8](https://www.python.org/dev/peps/pep-0008/) +- Use type hints +- Write docstrings for functions and classes +- Add tests for new features +- Keep functions small and focused +- Use meaningful variable names + +## Testing + +- Write tests for new features +- Ensure all tests pass before submitting PR +- Maintain test coverage above 80% +- Use pytest for testing + +## Documentation + +- Update relevant documentation +- Add docstrings to new functions/classes +- Update README if needed +- Add examples for new features + +## Git Commit Messages + +- Use present tense ("Add feature" not "Added feature") +- Use imperative mood ("Move cursor to..." not "Moves cursor to...") +- Reference issues and pull requests +- Keep first line under 72 characters +- Describe what and why, not how + +## Review Process + +1. Automated checks must pass +2. Code review by maintainers +3. Documentation review +4. Test coverage verification +5. Final approval + +## Community + +- Join our [Discord server](https://discord.gg/your-invite) +- Follow our [Twitter](https://twitter.com/your-handle) +- Read our [blog](https://your-blog.com) + +## Recognition + +Contributors will be: + +- Listed in CONTRIBUTORS.md +- Mentioned in release notes +- Given special Discord roles + +Thank you for contributing! diff --git a/LICENSE b/LICENSE index 44da875..304e210 100644 --- a/LICENSE +++ b/LICENSE @@ -1,23 +1,23 @@ -# Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. +# Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/PRIVACY_POLICY.md b/PRIVACY_POLICY.md index c67eda2..e3e531c 100644 --- a/PRIVACY_POLICY.md +++ b/PRIVACY_POLICY.md @@ -1,153 +1,153 @@ -# Privacy Policy - -Last Updated: November 19, 2024 - -## 1. Introduction - -This Privacy Policy explains how IndieGO Bot ("we", "us", "our") collects, uses, and protects your data when you use our Discord bot services. - -## 2. Information We Collect - -### 2.1 Automatically Collected Information - -- Discord User ID -- Discord Server ID -- Command usage statistics -- Error logs -- Message content (only when commands are used) - -### 2.2 User-Provided Information - -- Code snippets submitted for review -- Project requirements and specifications -- Custom configurations -- Ticket content - -### 2.3 Premium Subscription Data - -- Payment information (processed by third-party providers) -- Billing history -- Subscription preferences - -## 3. How We Use Information - -We use collected information to: - -- Provide and maintain bot services -- Process commands and requests -- Generate code analysis and reviews -- Manage support tickets -- Track feature usage -- Improve our services -- Send service updates -- Process payments - -## 4. Data Storage and Security - -### 4.1 Storage - -- Data is stored on secure servers -- Code snippets are temporarily stored for processing -- Logs are retained for 30 days -- Subscription data is retained for legal requirements - -### 4.2 Security Measures - -- Encryption in transit and at rest -- Regular security audits -- Access controls and monitoring -- Secure API endpoints -- Rate limiting -- Input validation - -## 5. Data Sharing - -We DO NOT share your data with third parties except: - -- When required by law -- With your explicit consent -- With service providers under confidentiality agreements - -## 6. User Rights - -You have the right to: - -- Access your data -- Request data deletion -- Export your data -- Opt-out of data collection -- Update your information -- Restrict processing - -To exercise these rights, contact us at - -## 7. Data Retention - -We retain data for: - -- Active users: Duration of service use -- Inactive users: 90 days -- Payment records: As required by law -- Logs: 30 days -- Code snippets: 24 hours maximum - -## 8. Children's Privacy - -The Bot is not intended for users under 13 years of age. We do not knowingly collect data from children under 13. - -## 9. Third-Party Services - -We use the following third-party services: - -- OpenAI API -- Google Gemini API -- Anthropic Claude API -- Discord API - -Each service has its own privacy policy and data handling practices. - -## 10. Cookies and Tracking - -Our website uses essential cookies for: - -- Authentication -- Session management -- Security - -## 11. International Data Transfers - -Data may be processed in countries where our servers are located. We ensure appropriate safeguards are in place. - -## 12. Data Breaches - -In case of a data breach, we will: - -- Notify affected users within 72 hours -- Investigate the cause -- Take remedial actions -- Report to relevant authorities if required - -## 13. Changes to Privacy Policy - -We may update this policy occasionally. Users will be notified of significant changes through: - -- Discord server announcements -- Bot status updates -- Email (for premium subscribers) - -## 14. Contact Information - -For privacy-related inquiries: - -- Email: -- Discord: [Support Server](https://discord.gg/9bPsjgnJ5v) -- GitHub: [Issues](https://github.com/Drago-03/IndieGo/issues) - -## 15. Legal Compliance - -We comply with: - -- GDPR -- CCPA -- Discord Developer Terms of Service -- Relevant data protection laws +# Privacy Policy + +Last Updated: November 19, 2024 + +## 1. Introduction + +This Privacy Policy explains how IndieGO Bot ("we", "us", "our") collects, uses, and protects your data when you use our Discord bot services. + +## 2. Information We Collect + +### 2.1 Automatically Collected Information + +- Discord User ID +- Discord Server ID +- Command usage statistics +- Error logs +- Message content (only when commands are used) + +### 2.2 User-Provided Information + +- Code snippets submitted for review +- Project requirements and specifications +- Custom configurations +- Ticket content + +### 2.3 Premium Subscription Data + +- Payment information (processed by third-party providers) +- Billing history +- Subscription preferences + +## 3. How We Use Information + +We use collected information to: + +- Provide and maintain bot services +- Process commands and requests +- Generate code analysis and reviews +- Manage support tickets +- Track feature usage +- Improve our services +- Send service updates +- Process payments + +## 4. Data Storage and Security + +### 4.1 Storage + +- Data is stored on secure servers +- Code snippets are temporarily stored for processing +- Logs are retained for 30 days +- Subscription data is retained for legal requirements + +### 4.2 Security Measures + +- Encryption in transit and at rest +- Regular security audits +- Access controls and monitoring +- Secure API endpoints +- Rate limiting +- Input validation + +## 5. Data Sharing + +We DO NOT share your data with third parties except: + +- When required by law +- With your explicit consent +- With service providers under confidentiality agreements + +## 6. User Rights + +You have the right to: + +- Access your data +- Request data deletion +- Export your data +- Opt-out of data collection +- Update your information +- Restrict processing + +To exercise these rights, contact us at + +## 7. Data Retention + +We retain data for: + +- Active users: Duration of service use +- Inactive users: 90 days +- Payment records: As required by law +- Logs: 30 days +- Code snippets: 24 hours maximum + +## 8. Children's Privacy + +The Bot is not intended for users under 13 years of age. We do not knowingly collect data from children under 13. + +## 9. Third-Party Services + +We use the following third-party services: + +- OpenAI API +- Google Gemini API +- Anthropic Claude API +- Discord API + +Each service has its own privacy policy and data handling practices. + +## 10. Cookies and Tracking + +Our website uses essential cookies for: + +- Authentication +- Session management +- Security + +## 11. International Data Transfers + +Data may be processed in countries where our servers are located. We ensure appropriate safeguards are in place. + +## 12. Data Breaches + +In case of a data breach, we will: + +- Notify affected users within 72 hours +- Investigate the cause +- Take remedial actions +- Report to relevant authorities if required + +## 13. Changes to Privacy Policy + +We may update this policy occasionally. Users will be notified of significant changes through: + +- Discord server announcements +- Bot status updates +- Email (for premium subscribers) + +## 14. Contact Information + +For privacy-related inquiries: + +- Email: +- Discord: [Support Server](https://discord.gg/9bPsjgnJ5v) +- GitHub: [Issues](https://github.com/Drago-03/IndieGo/issues) + +## 15. Legal Compliance + +We comply with: + +- GDPR +- CCPA +- Discord Developer Terms of Service +- Relevant data protection laws diff --git a/Procfile b/Procfile index 812d254..5e29a82 100644 --- a/Procfile +++ b/Procfile @@ -1,3 +1,3 @@ -# Procfile -# +# Procfile +# #worker: python main.py \ No newline at end of file diff --git a/README.md b/README.md index 7a88cd3..c2e14b4 100644 --- a/README.md +++ b/README.md @@ -1,58 +1,58 @@ -# IndieGO Bot - -A premium Discord bot designed for developer communities, featuring advanced code analysis, project management, and AI-powered assistance. - -![DevAssist Banner](IndieGO.JPG) - -[![Discord](https://img.shields.io/discord/1292805470117171231)](https://discord.gg/9bPsjgnJ5v) -[![License](https://img.shields.io/badge/license-Boost%201.0-lightgrey)](LICENSE) -[![Python](https://img.shields.io/badge/python-3.9%2B-blue)](https://www.python.org/downloads/) -[![Code Style](https://img.shields.io/badge/code%20style-black-black)](https://github.com/psf/black) -[![Author](https://img.shields.io/badge/author-Drago-purple)](https://github.com/Drago-03) -[![Servers](https://img.shields.io/badge/dynamic/json?color=blue&label=servers&query=server_count&url=https://api.example.com/bot/stats)](https://discord.gg/9bPsjgnJ5v) -[![Invite](https://img.shields.io/badge/invite-IndieGO-green)](https://discord.com/oauth2/authorize?client_id=1304755116255088670) -[![Twitter](https://img.shields.io/twitter/follow/Drago?style=social)](https://twitter.com/_gear_head_03_) - -## 🌟 Features - -- Code review with security analysis -- Basic ticket system -- Programming assistance -- Fun developer utilities -- Advanced code analysis -- Performance optimization -- Project templates -- GitHub integration -- Custom commands -- Advanced logging -- All Pro features -- Team management -- Custom ticket categories -- Custom ticket forms -- All Team features -- Dedicated support -- Custom integrations -- SLA guarantees - -## How to Sponsor - -If you sponsor us, your name will be highlighted in the bot and server. - -## 📥 Invite IndieGO Bot - -Click [here](https://discord.com/oauth2/authorize?client_id=1304755116255088670) to invite IndieGO Bot to your server. - -## Setup - -1. Clone the repository -2. Install dependencies: `pip install -r requirements.txt` -3. Set up environment variables in a `.env` file -4. Run the bot: `python main.py` - -## 📊 Server Count - -IndieGO Bot is currently in [![Servers](https://img.shields.io/badge/dynamic/json?color=blue&label=servers&query=server_count&url=https://api.example.com/bot/stats)](https://discord.com/oauth2/authorize?client_id=1304755116255088670) servers. - -## 🐦 Follow me on Twitter - -Stay updated with the latest news and updates by following me on [Twitter](https://twitter.com/_gear_head_03_). +# IndieGO Bot + +A premium Discord bot designed for developer communities, featuring advanced code analysis, project management, and AI-powered assistance. + +![DevAssist Banner](IndieGO.JPG) + +[![Discord](https://img.shields.io/discord/1292805470117171231)](https://discord.gg/9bPsjgnJ5v) +[![License](https://img.shields.io/badge/license-Boost%201.0-lightgrey)](LICENSE) +[![Python](https://img.shields.io/badge/python-3.9%2B-blue)](https://www.python.org/downloads/) +[![Code Style](https://img.shields.io/badge/code%20style-black-black)](https://github.com/psf/black) +[![Author](https://img.shields.io/badge/author-Drago-purple)](https://github.com/Drago-03) +[![Servers](https://img.shields.io/badge/dynamic/json?color=blue&label=servers&query=server_count&url=https://api.example.com/bot/stats)](https://discord.gg/9bPsjgnJ5v) +[![Invite](https://img.shields.io/badge/invite-IndieGO-green)](https://discord.com/oauth2/authorize?client_id=1304755116255088670) +[![Twitter](https://img.shields.io/twitter/follow/Drago?style=social)](https://twitter.com/_gear_head_03_) + +## 🌟 Features + +- Code review with security analysis +- Basic ticket system +- Programming assistance +- Fun developer utilities +- Advanced code analysis +- Performance optimization +- Project templates +- GitHub integration +- Custom commands +- Advanced logging +- All Pro features +- Team management +- Custom ticket categories +- Custom ticket forms +- All Team features +- Dedicated support +- Custom integrations +- SLA guarantees + +## How to Sponsor + +If you sponsor us, your name will be highlighted in the bot and server. + +## 📥 Invite IndieGO Bot + +Click [here](https://discord.com/oauth2/authorize?client_id=1304755116255088670) to invite IndieGO Bot to your server. + +## Setup + +1. Clone the repository +2. Install dependencies: `pip install -r requirements.txt` +3. Set up environment variables in a `.env` file +4. Run the bot: `python main.py` + +## 📊 Server Count + +IndieGO Bot is currently in [![Servers](https://img.shields.io/badge/dynamic/json?color=blue&label=servers&query=server_count&url=https://api.example.com/bot/stats)](https://discord.com/oauth2/authorize?client_id=1304755116255088670) servers. + +## 🐦 Follow me on Twitter + +Stay updated with the latest news and updates by following me on [Twitter](https://twitter.com/_gear_head_03_). diff --git a/SECURITY.md b/SECURITY.md index 5fec725..c572511 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,54 +1,53 @@ -# Security Policy - -Last Updated: November 19, 2024 - -## Supported Versions - -| Version | Supported | -| ------- | ------------------ | -| 1.2.2 | :white_check_mark: | -| 1.2.1 | :white_check_mark: | -| 1.2.0 | :x: | -| 1.1.0 | :x: | -| 1.0.0 | :x: | - -## Reporting a Vulnerability - -We take security seriously at DevAssist Bot. If you discover a security vulnerability, please follow these steps: - -1. **DO NOT** create a public GitHub issue -2. Email me at -3. Include detailed information about the vulnerability -4. We will acknowledge receipt within 24 hours -5. We will provide a detailed response within 72 hours -6. We will work with you to verify and fix the issue - -## Security Measures - -- All API endpoints use HTTPS -- Sensitive data is encrypted at rest -- Regular security audits -- Automated vulnerability scanning -- Rate limiting on all endpoints -- Input validation and sanitization - -## Best Practices - -1. Keep your API keys secure -2. Use environment variables -3. Regular token rotation -4. Monitor for suspicious activity -5. Keep dependencies updated - -## Rewards - -We offer rewards for responsible disclosure: - -- Critical vulnerabilities: $200 -- High severity: $100 -- Medium severity: $50 - -## Contact - -[Email](mantejarora@gmail.com) -PGP Key: [Download](link-to-pgp-key) +# Security Policy + +Last Updated: November 19, 2024 + +## Supported Versions + +| Version | Supported | +| ------- | ------------------ | +| 1.2.1 | :white_check_mark: | +| 1.2.0 | :x: | +| 1.1.0 | :x: | +| 1.0.0 | :x: | + +## Reporting a Vulnerability + +We take security seriously at DevAssist Bot. If you discover a security vulnerability, please follow these steps: + +1. **DO NOT** create a public GitHub issue +2. Email me at +3. Include detailed information about the vulnerability +4. We will acknowledge receipt within 24 hours +5. We will provide a detailed response within 72 hours +6. We will work with you to verify and fix the issue + +## Security Measures + +- All API endpoints use HTTPS +- Sensitive data is encrypted at rest +- Regular security audits +- Automated vulnerability scanning +- Rate limiting on all endpoints +- Input validation and sanitization + +## Best Practices + +1. Keep your API keys secure +2. Use environment variables +3. Regular token rotation +4. Monitor for suspicious activity +5. Keep dependencies updated + +## Rewards + +We offer rewards for responsible disclosure: + +- Critical vulnerabilities: $200 +- High severity: $100 +- Medium severity: $50 + +## Contact + +[Email](mantejarora@gmail.com) +PGP Key: [Download](link-to-pgp-key) diff --git a/TERMS_OF_SERVICE.md b/TERMS_OF_SERVICE.md index 2d16228..5b40bb6 100644 --- a/TERMS_OF_SERVICE.md +++ b/TERMS_OF_SERVICE.md @@ -1,121 +1,121 @@ -# Terms of Service - -Last Updated: November 19, 2024 - -## 1. Agreement to Terms - -By inviting IndieGO Bot to your Discord server or using its services, you agree to be bound by these Terms of Service ("Terms"). If you disagree with any part of these terms, you may not use our services. - -## 2. Description of Service - -IndieGO Bot ("the Bot") is a Discord bot providing: - -- Code analysis and review -- Project management features -- AI-powered programming assistance -- Ticket management system -- Developer utilities - -## 3. Usage Requirements - -### 3.1 Eligibility - -- You must be at least 13 years old -- You must have the authority to agree to these terms -- You must comply with Discord's Terms of Service - -### 3.2 API Usage - -- Free tier users are limited to specified daily usage quotas -- Premium features are available through paid subscriptions -- API access is restricted to Enterprise tier subscribers - -## 4. User Responsibilities - -You agree NOT to: - -- Abuse, harass, or exploit the bot's services -- Attempt to access unauthorized features -- Use the bot for illegal activities -- Reverse engineer or modify the bot -- Resell or redistribute the bot's services -- Share API keys or premium access - -## 5. Subscription Terms - -### 5.1 Payment - -- All prices are in USD -- Subscriptions are billed monthly -- No refunds for partial months -- Payments are processed through secure third-party providers - -### 5.2 Cancellation - -- You may cancel your subscription at any time -- Access continues until the end of the billing period -- No refunds for unused time - -## 6. Data Usage - -We collect and process data as outlined in our [Privacy Policy](PRIVACY_POLICY.md). By using the Bot, you consent to such processing and warrant that all data provided is accurate. - -## 7. Intellectual Property - -### 7.1 Ownership - -- The Bot and its original content are owned by IndieGO -- User-generated content remains the property of respective users -- Code analysis results are provided for reference only - -### 7.2 Licenses - -- The Bot is licensed under the Boost Software License -- Third-party services and APIs are subject to their respective licenses - -## 8. Limitations of Liability - -### 8.1 Service Availability - -- The Bot is provided "as is" without warranties -- We do not guarantee 100% uptime -- Services may be modified or discontinued at any time - -### 8.2 Code Analysis - -- Code reviews and suggestions are advisory only -- We are not responsible for any damages from using our suggestions -- Users should verify all code before implementation - -## 9. Indemnification - -You agree to indemnify and hold harmless IndieGO Bot, its developers, and affiliates from any claims resulting from your use of the service. - -## 10. Changes to Terms - -We reserve the right to modify these terms at any time. Users will be notified of significant changes through: - -- Discord server announcements -- Bot status updates -- Email (for premium subscribers) - -## 11. Termination - -We may terminate or suspend access to our service immediately, without prior notice, for: - -- Terms of Service violations -- Abusive behavior -- Suspicious activity -- Non-payment of premium services - -## 12. Contact Information - -For questions about these Terms: - -- Email: -- Discord: [Support Server](https://discord.gg/9bPsjgnJ5v) -- GitHub: [Issues](https://github.com/Drago-03/IndieGo/issues) - -## 13. Governing Law - -These Terms shall be governed by and construed in accordance with the laws of India, without regard to its conflict of law provisions. +# Terms of Service + +Last Updated: November 19, 2024 + +## 1. Agreement to Terms + +By inviting IndieGO Bot to your Discord server or using its services, you agree to be bound by these Terms of Service ("Terms"). If you disagree with any part of these terms, you may not use our services. + +## 2. Description of Service + +IndieGO Bot ("the Bot") is a Discord bot providing: + +- Code analysis and review +- Project management features +- AI-powered programming assistance +- Ticket management system +- Developer utilities + +## 3. Usage Requirements + +### 3.1 Eligibility + +- You must be at least 13 years old +- You must have the authority to agree to these terms +- You must comply with Discord's Terms of Service + +### 3.2 API Usage + +- Free tier users are limited to specified daily usage quotas +- Premium features are available through paid subscriptions +- API access is restricted to Enterprise tier subscribers + +## 4. User Responsibilities + +You agree NOT to: + +- Abuse, harass, or exploit the bot's services +- Attempt to access unauthorized features +- Use the bot for illegal activities +- Reverse engineer or modify the bot +- Resell or redistribute the bot's services +- Share API keys or premium access + +## 5. Subscription Terms + +### 5.1 Payment + +- All prices are in USD +- Subscriptions are billed monthly +- No refunds for partial months +- Payments are processed through secure third-party providers + +### 5.2 Cancellation + +- You may cancel your subscription at any time +- Access continues until the end of the billing period +- No refunds for unused time + +## 6. Data Usage + +We collect and process data as outlined in our [Privacy Policy](PRIVACY_POLICY.md). By using the Bot, you consent to such processing and warrant that all data provided is accurate. + +## 7. Intellectual Property + +### 7.1 Ownership + +- The Bot and its original content are owned by IndieGO +- User-generated content remains the property of respective users +- Code analysis results are provided for reference only + +### 7.2 Licenses + +- The Bot is licensed under the Boost Software License +- Third-party services and APIs are subject to their respective licenses + +## 8. Limitations of Liability + +### 8.1 Service Availability + +- The Bot is provided "as is" without warranties +- We do not guarantee 100% uptime +- Services may be modified or discontinued at any time + +### 8.2 Code Analysis + +- Code reviews and suggestions are advisory only +- We are not responsible for any damages from using our suggestions +- Users should verify all code before implementation + +## 9. Indemnification + +You agree to indemnify and hold harmless IndieGO Bot, its developers, and affiliates from any claims resulting from your use of the service. + +## 10. Changes to Terms + +We reserve the right to modify these terms at any time. Users will be notified of significant changes through: + +- Discord server announcements +- Bot status updates +- Email (for premium subscribers) + +## 11. Termination + +We may terminate or suspend access to our service immediately, without prior notice, for: + +- Terms of Service violations +- Abusive behavior +- Suspicious activity +- Non-payment of premium services + +## 12. Contact Information + +For questions about these Terms: + +- Email: +- Discord: [Support Server](https://discord.gg/9bPsjgnJ5v) +- GitHub: [Issues](https://github.com/Drago-03/IndieGo/issues) + +## 13. Governing Law + +These Terms shall be governed by and construed in accordance with the laws of India, without regard to its conflict of law provisions. diff --git a/api/index.py b/api/index.py index 625f9e0..d483cd6 100644 --- a/api/index.py +++ b/api/index.py @@ -1,35 +1,35 @@ -from flask import Flask, request -import os -import discord -from discord.ext import commands -from threading import Thread - -app = Flask(__name__) - -# Load environment variables -TOKEN = os.getenv('DISCORD_TOKEN') - -# Bot configuration -intents = discord.Intents.default() -intents.message_content = True -intents.members = True - -bot = commands.Bot(command_prefix='!', intents=intents) - -@bot.event -async def on_ready(): - print(f'Logged in as {bot.user}') - -@app.route('/') -def home(): - return "Discord bot is running!" - -def run_bot(): - bot.run(TOKEN) - -# Start the bot in a separate thread -thread = Thread(target=run_bot) -thread.start() - -if __name__ == "__main__": +from flask import Flask, request +import os +import discord +from discord.ext import commands +from threading import Thread + +app = Flask(__name__) + +# Load environment variables +TOKEN = os.getenv('DISCORD_TOKEN') + +# Bot configuration +intents = discord.Intents.default() +intents.message_content = True +intents.members = True + +bot = commands.Bot(command_prefix='!', intents=intents) + +@bot.event +async def on_ready(): + print(f'Logged in as {bot.user}') + +@app.route('/') +def home(): + return "Discord bot is running!" + +def run_bot(): + bot.run(TOKEN) + +# Start the bot in a separate thread +thread = Thread(target=run_bot) +thread.start() + +if __name__ == "__main__": app.run(host='0.0.0.0', port=8080) \ No newline at end of file diff --git a/bot.log b/bot.log index 737f31a..972a37c 100644 --- a/bot.log +++ b/bot.log @@ -1,12394 +1,12778 @@ -2024-11-29 16:00:04,295 - IndieGOBot - INFO - Starting bot... -2024-11-29 16:00:04,295 - discord.client - INFO - logging in using static token -2024-11-29 16:00:05,294 - IndieGOBot - INFO - Starting bot setup... -2024-11-29 16:00:05,294 - IndieGOBot - INFO - Syncing command tree... -2024-11-29 16:00:05,768 - IndieGOBot - INFO - Command tree synced successfully -2024-11-29 16:00:05,771 - IndieGOBot - INFO - Loaded extension: cogs.general -2024-11-29 16:00:05,772 - IndieGOBot - INFO - Loaded extension: cogs.moderation -2024-11-29 16:00:05,774 - IndieGOBot - INFO - Loaded extension: cogs.fun -2024-11-29 16:00:05,774 - IndieGOBot - INFO - Loaded extension: cogs.admin -2024-11-29 16:00:05,775 - IndieGOBot - INFO - Loaded extension: cogs.tickets -2024-11-29 16:00:05,776 - IndieGOBot - INFO - Loaded extension: cogs.logging -2024-11-29 16:13:13,275 - IndieGOBot - INFO - Starting bot... -2024-11-29 16:13:13,276 - discord.client - INFO - logging in using static token -2024-11-29 16:13:15,350 - IndieGOBot - INFO - Starting bot setup... -2024-11-29 16:13:15,350 - IndieGOBot - INFO - Syncing command tree... -2024-11-29 16:13:15,851 - IndieGOBot - INFO - Command tree synced successfully -2024-11-29 16:13:15,854 - IndieGOBot - INFO - Loaded extension: cogs.general -2024-11-29 16:13:15,857 - IndieGOBot - INFO - Loaded extension: cogs.moderation -2024-11-29 16:13:15,859 - IndieGOBot - INFO - Loaded extension: cogs.fun -2024-11-29 16:13:15,861 - IndieGOBot - INFO - Loaded extension: cogs.admin -2024-11-29 16:13:15,862 - IndieGOBot - INFO - Loaded extension: cogs.tickets -2024-11-29 16:13:15,864 - IndieGOBot - INFO - Loaded extension: cogs.logging -2024-11-29 16:14:59,674 - discord.client - DEBUG - on_error has successfully been registered as an event -2024-11-29 16:14:59,675 - asyncio - DEBUG - Using proactor: IocpProactor -2024-11-29 16:14:59,676 - IndieGOBot - INFO - Starting bot... -2024-11-29 16:14:59,676 - discord.client - INFO - logging in using static token -2024-11-29 16:15:00,190 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 -2024-11-29 16:15:00,194 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). -2024-11-29 16:15:00,194 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} -2024-11-29 16:15:00,815 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 -2024-11-29 16:15:00,815 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). -2024-11-29 16:15:00,816 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['productivity', 'Moderation', 'fun', 'Community', 'Programming'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} -2024-11-29 16:15:00,816 - IndieGOBot - INFO - Starting bot setup... -2024-11-29 16:15:00,817 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general -2024-11-29 16:15:00,819 - IndieGOBot - INFO - Successfully loaded extension: cogs.general -2024-11-29 16:15:00,819 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation -2024-11-29 16:15:00,820 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation -2024-11-29 16:15:00,820 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun -2024-11-29 16:15:00,823 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun -2024-11-29 16:15:00,823 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin -2024-11-29 16:15:00,824 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin -2024-11-29 16:15:00,824 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets -2024-11-29 16:15:00,825 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets -2024-11-29 16:15:00,825 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging -2024-11-29 16:15:00,825 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging -2024-11-29 16:15:00,826 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant -2024-11-29 16:15:03,611 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): huggingface.co:443 -2024-11-29 16:15:03,898 - urllib3.connectionpool - DEBUG - https://huggingface.co:443 "HEAD /nvidia/Llama-3.1-Nemotron-70B-Instruct-HF/resolve/main/tokenizer_config.json HTTP/11" 200 0 -2024-11-29 16:15:04,558 - urllib3.connectionpool - DEBUG - https://huggingface.co:443 "HEAD /nvidia/Llama-3.1-Nemotron-70B-Instruct-HF/resolve/main/config.json HTTP/11" 200 0 -2024-11-29 16:24:06,704 - discord.client - DEBUG - on_error has successfully been registered as an event -2024-11-29 16:24:06,705 - asyncio - DEBUG - Using proactor: IocpProactor -2024-11-29 16:24:06,708 - IndieGOBot - INFO - Starting bot... -2024-11-29 16:24:06,708 - discord.client - INFO - logging in using static token -2024-11-29 16:24:07,307 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 -2024-11-29 16:24:07,307 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). -2024-11-29 16:24:07,308 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} -2024-11-29 16:24:07,810 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 -2024-11-29 16:24:07,810 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). -2024-11-29 16:24:07,810 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['fun', 'Moderation', 'Programming', 'productivity', 'Community'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} -2024-11-29 16:24:07,811 - IndieGOBot - INFO - Starting bot setup... -2024-11-29 16:24:07,811 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general -2024-11-29 16:24:07,813 - IndieGOBot - INFO - Successfully loaded extension: cogs.general -2024-11-29 16:24:07,813 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation -2024-11-29 16:24:07,814 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation -2024-11-29 16:24:07,814 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun -2024-11-29 16:24:07,816 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun -2024-11-29 16:24:07,816 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin -2024-11-29 16:24:07,817 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin -2024-11-29 16:24:07,817 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets -2024-11-29 16:24:07,819 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets -2024-11-29 16:24:07,819 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging -2024-11-29 16:24:07,820 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging -2024-11-29 16:24:07,821 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant -2024-11-29 16:24:12,801 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False -2024-11-29 16:24:12,802 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' -2024-11-29 16:24:13,110 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant -2024-11-29 16:24:13,111 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help -2024-11-29 16:24:15,748 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help -2024-11-29 16:24:15,749 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help -2024-11-29 16:24:15,757 - IndieGOBot - ERROR - Failed to load extension cogs.help -2024-11-29 16:24:15,757 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-29 16:24:15,758 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. -2024-11-29 16:24:15,758 - IndieGOBot - ERROR - Traceback: -2024-11-29 16:24:15,760 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup - await bot.add_cog(Help(bot)) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog - cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject - raise e - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject - bot.add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command - super().add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command - raise CommandRegistrationError(command.name) -discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. - -2024-11-29 16:24:15,761 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base -2024-11-29 16:24:15,767 - IndieGOBot - INFO - Successfully loaded extension: cogs.base -2024-11-29 16:24:15,768 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors -2024-11-29 16:24:15,774 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors -2024-11-29 16:24:15,774 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod -2024-11-29 16:24:15,781 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod -2024-11-29 16:24:15,781 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction -2024-11-29 16:24:15,788 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction -2024-11-29 16:24:15,788 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel -2024-11-29 16:24:15,794 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel -2024-11-29 16:24:15,794 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr -2024-11-29 16:24:15,918 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr -2024-11-29 16:24:15,918 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit -2024-11-29 16:24:16,047 - IndieGOBot - ERROR - Failed to load extension cogs.reddit -2024-11-29 16:24:16,047 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-29 16:24:16,047 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. -2024-11-29 16:24:16,047 - IndieGOBot - ERROR - Traceback: -2024-11-29 16:24:16,050 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup - await bot.add_cog(Reddit(bot)) - ^^^^^^^^^^^ - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ - self.reddit = praw.Reddit( - ^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped - return func(**dict(zip(_old_args, args)), **kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ - raise MissingRequiredAttributeException( -praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -2024-11-29 16:24:16,050 - IndieGOBot - INFO - Syncing command tree... -2024-11-29 16:24:16,758 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"help","description":"Show bot help and commands","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 -2024-11-29 16:24:16,759 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). -2024-11-29 16:24:16,759 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1308554160815476778', 'application_id': '1304755116255088670', 'version': '1311998121030586388', 'default_member_permissions': None, 'type': 1, 'name': 'help', 'name_localizations': None, 'description': 'Show bot help and commands', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] -2024-11-29 16:24:16,760 - IndieGOBot - INFO - Command tree synced successfully -2024-11-29 16:24:17,276 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ -2024-11-29 16:24:17,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-0l92",{"micros":0.0}]']}} -2024-11-29 16:24:17,279 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. -2024-11-29 16:24:17,617 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:24:17,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '5597777538f910b79b5ab5f775611df8', 'resume_gateway_url': 'wss://gateway-us-east1-d.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-d-0l92",{"micros":106848,"calls":["id_created",{"micros":823,"calls":[]},"session_lookup_time",{"micros":4543,"calls":[]},"session_lookup_finished",{"micros":17,"calls":[]},"discord-sessions-prd-1-279",{"micros":101172,"calls":["start_session",{"micros":80060,"calls":["discord-api-rpc-6cf69f8f4b-jzh9b",{"micros":76278,"calls":["get_user",{"micros":6162},"get_guilds",{"micros":8703},"send_scheduled_deletion_message",{"micros":7},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":5}]}]},"starting_guild_connect",{"micros":36,"calls":[]},"presence_started",{"micros":297,"calls":[]},"guilds_started",{"micros":112,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":20640,"calls":[]},"connect_finished",{"micros":20646,"calls":[]},"build_ready",{"micros":18,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":1,"calls":[]},"split_ready",{"micros":0,"calls":[]}]}]}]']}} -2024-11-29 16:24:17,739 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:17,739 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 5597777538f910b79b5ab5f775611df8). -2024-11-29 16:24:17,741 - discord.client - DEBUG - Dispatching event connect -2024-11-29 16:24:17,741 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 2, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-29 16:24:17,742 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:17,742 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. -2024-11-29 16:24:18,034 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 4, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'guild_id': '1276215268791550055', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-29 16:24:18,037 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,038 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. -2024-11-29 16:24:18,038 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 5, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'guild_id': '1285681923464892437', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-29 16:24:18,038 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,038 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. -2024-11-29 16:24:18,042 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,077 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,081 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 8, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'guild_id': '1288026038189690921', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-29 16:24:18,081 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,081 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. -2024-11-29 16:24:18,086 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 10, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'guild_id': '1292805470117171231', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-29 16:24:18,087 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,087 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. -2024-11-29 16:24:18,215 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 12, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'guild_id': '1276213423038005419', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-29 16:24:18,217 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,218 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. -2024-11-29 16:24:18,241 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,245 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 14, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'guild_id': '1004621739893993573', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-29 16:24:18,246 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:18,246 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. -2024-11-29 16:24:18,305 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:19,042 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:19,050 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 16:24:19,308 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:19,314 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 16:24:19,579 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:19,589 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 16:24:19,837 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:19,844 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 16:24:20,026 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:20,034 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 16:24:20,059 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:20,062 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. -2024-11-29 16:24:20,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 22, 'op': 0, 'd': {'nonce': '9a01f00d4232b9cf058a60bc275453d0', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 16:24:20,063 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:20,064 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. -2024-11-29 16:24:20,064 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 23, 'op': 0, 'd': {'nonce': '565cecb508afb1d806425792dde139e4', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 16:24:20,064 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:20,064 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. -2024-11-29 16:24:20,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 24, 'op': 0, 'd': {'nonce': '299e8c2810cd4f745e942e7962d5f216', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 16:24:20,066 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:20,066 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. -2024-11-29 16:24:20,311 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 16:24:20,311 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 16:24:20,312 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 16:24:20,312 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 16:24:20,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 25, 'op': 0, 'd': {'nonce': '6f84c96e71aaaa899b0663d30b2e0097', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': None, 'identity_guild_id': '1177040176531378256', 'identity_enabled': None, 'badge': None}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 16:24:20,386 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:20,386 - discord.state - DEBUG - Processed a chunk for 22 members in guild ID 1292805470117171231. -2024-11-29 16:24:20,386 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 16:24:20,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 26, 'op': 0, 'd': {'nonce': '21b6e59eea7abc9d8f9a4aa769eb5936', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 16:24:20,906 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:20,906 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. -2024-11-29 16:24:20,906 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 16:24:21,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 27, 'op': 0, 'd': {'nonce': 'ff08677f294eeda34c5fa690bfc6508a', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 16:24:21,397 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:21,397 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. -2024-11-29 16:24:21,398 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 16:24:21,398 - discord.client - DEBUG - Dispatching event ready -2024-11-29 16:24:21,398 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! -2024-11-29 16:24:21,398 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status -2024-11-29 16:24:58,538 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 27. -2024-11-29 16:24:58,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:24:59,869 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 28, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:00.693000+00:00', 'pinned': False, 'nonce': '1312008906926456832', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312008912525852773', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:24:59,869 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:24:59,870 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:24:59,870 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:25:00,460 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 29, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:01.291000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312008915034050620', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:25:00,460 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:25:00,460 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:25:02,484 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-29 16:25:02,485 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). -2024-11-29 16:25:02,485 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T10:55:01.291000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312008915034050620', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:25:02,485 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:25:31,010 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 30, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:31.830000+00:00', 'pinned': False, 'nonce': '1312009037516111872', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009043124162570', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ban', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:25:31,010 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:25:31,010 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:25:31,011 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:25:31,448 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"You must specify a member to ban.","title":"Error"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:25:31,449 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Error', 'description': 'You must specify a member to ban.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:55:32.308000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009045128773632', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:25:31,449 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:25:31,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 31, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:32.308000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009045128773632', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Error', 'description': 'You must specify a member to ban.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:25:31,502 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:25:31,502 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:25:39,801 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 31. -2024-11-29 16:25:40,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:25:43,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 32, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:44.698000+00:00', 'pinned': False, 'nonce': '1312009091769434112', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009097096462467', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.mute', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:25:43,871 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:25:43,872 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:25:43,872 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:25:44,374 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"You must specify a member to mute.","title":"Error"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:25:44,375 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Error', 'description': 'You must specify a member to mute.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:55:45.206000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009099227168868', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:25:44,375 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:25:44,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 33, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:45.206000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009099227168868', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Error', 'description': 'You must specify a member to mute.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:25:44,403 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:25:44,404 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:25:53,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 34, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732877754, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-11-29 16:25:53,909 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:25:53,909 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:25:53,909 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:25:56,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 35, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:57.761000+00:00', 'pinned': False, 'nonce': '1312009145586548736', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009151886397490', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.code a cube rotate', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:25:56,929 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:25:56,930 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:25:56,930 - discord.client - DEBUG - Dispatching event command_error -2024-11-29 16:25:57,477 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 36, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:58.242000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009153903984692', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:25:57,477 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:25:57,478 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:25:57,549 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"The command you tried to use does not exist. Please check the command and try again.","title":"Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:25:57,550 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:55:58.242000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009153903984692', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:26:11,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 37, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:12.647000+00:00', 'pinned': False, 'nonce': '1312009208924733440', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009214322806866', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.gift', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:11,812 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:11,813 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:26:11,813 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:26:11,813 - discord.client - DEBUG - Dispatching event command_error -2024-11-29 16:26:12,315 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"You're missing a required argument: `tier`.\nPlease provide all required arguments and try again.","title":"Missing Required Argument"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:26:12,315 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Missing Required Argument', 'description': "You're missing a required argument: `tier`.\nPlease provide all required arguments and try again.", 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:56:13.116000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009216289935402', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:26:12,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 38, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:13.116000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009216289935402', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Missing Required Argument', 'description': "You're missing a required argument: `tier`.\nPlease provide all required arguments and try again.", 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:12,335 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:12,335 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:26:16,356 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 39, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732877777, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:16,356 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:16,358 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:26:16,358 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:26:17,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 40, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:18.006000+00:00', 'pinned': False, 'nonce': '1312009231422980096', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009236800208906', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.tier', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:17,176 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:17,176 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:26:17,178 - discord.client - DEBUG - Dispatching event command_error -2024-11-29 16:26:17,598 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"The command you tried to use does not exist. Please check the command and try again.","title":"Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:26:17,599 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:56:18.451000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009238666805258', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:26:17,640 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 41, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:18.451000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009238666805258', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:17,641 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:17,641 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:26:21,065 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 41. -2024-11-29 16:26:21,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:26:27,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 42, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732877788, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:27,966 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:27,967 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:26:27,967 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:26:28,411 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 43, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:29.229000+00:00', 'pinned': False, 'nonce': '1312009278269161472', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009283873017887', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:28,411 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:28,411 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:26:28,412 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:26:28,955 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do programmers hate nature? It has too many bugs.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:26:28,956 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers hate nature? It has too many bugs.', 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:56:29.703000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009285860851735', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:26:28,956 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:26:28,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 44, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:29.703000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009285860851735', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers hate nature? It has too many bugs.', 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:28,958 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:28,958 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:26:34,343 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INVITE_CREATE', 's': 45, 'op': 0, 'd': {'uses': 0, 'type': 0, 'temporary': False, 'max_uses': 0, 'max_age': 604800, 'inviter': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'guild_id': '1292805470117171231', 'expires_at': '2024-12-06T10:56:35+00:00', 'created_at': '2024-11-29T10:56:35.163545+00:00', 'code': 'QZQMdsA3', 'channel_id': '1295427012722298882'}} -2024-11-29 16:26:34,343 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:34,343 - discord.client - DEBUG - Dispatching event invite_create -2024-11-29 16:26:34,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INVITE_CREATE', 's': 46, 'op': 0, 'd': {'uses': 0, 'type': 0, 'temporary': False, 'max_uses': 0, 'max_age': 604800, 'inviter': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'guild_id': '1292805470117171231', 'expires_at': '2024-12-06T10:56:35+00:00', 'created_at': '2024-11-29T10:56:35.173086+00:00', 'code': 'mAYQzS85', 'channel_id': '1295427012722298882'}} -2024-11-29 16:26:34,345 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:34,345 - discord.client - DEBUG - Dispatching event invite_create -2024-11-29 16:26:34,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 47, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': None, 'id': '1312009308837380156', 'changes': [{'new_value': 'QZQMdsA3', 'key': 'code'}, {'new_value': '1295427012722298882', 'key': 'channel_id'}, {'new_value': '950609706760691752', 'key': 'inviter_id'}, {'new_value': 0, 'key': 'uses'}, {'new_value': 0, 'key': 'max_uses'}, {'new_value': 604800, 'key': 'max_age'}, {'new_value': False, 'key': 'temporary'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 40, 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:34,352 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:34,352 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-11-29 16:26:34,381 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 48, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': None, 'id': '1312009308904624178', 'changes': [{'new_value': 'mAYQzS85', 'key': 'code'}, {'new_value': '1295427012722298882', 'key': 'channel_id'}, {'new_value': '950609706760691752', 'key': 'inviter_id'}, {'new_value': 0, 'key': 'uses'}, {'new_value': 0, 'key': 'max_uses'}, {'new_value': 604800, 'key': 'max_age'}, {'new_value': False, 'key': 'temporary'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 40, 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:34,382 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:34,382 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-11-29 16:26:50,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 49, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732877810, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:50,060 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:50,061 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:26:50,061 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:26:50,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 50, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:51.641000+00:00', 'pinned': False, 'nonce': '1312009372510978048', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009377875755049', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ping', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:50,803 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:50,804 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:26:50,804 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:26:51,315 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Pong! 343ms","components":[],"tts":false} has returned 200 -2024-11-29 16:26:51,315 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Pong! 343ms', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T10:56:52.125000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009379905667123', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:26:51,316 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:26:51,324 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 51, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:52.125000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009379905667123', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Pong! 343ms', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:51,324 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:51,325 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:26:58,024 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 52, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732877818, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:58,024 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:58,024 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:26:58,024 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:26:58,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 53, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:59.424000+00:00', 'pinned': False, 'nonce': '1312009404907782144', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009410520023102', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.quote', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:58,611 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:58,611 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:26:58,612 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:26:59,023 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":10181046,"type":"rich","description":"When to use iterative development? You should use iterative development only on projects that you want to succeed. \u2013 Martin Fowler","title":"Inspirational Quote"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:26:59,024 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'When to use iterative development? You should use iterative development only on projects that you want to succeed. Martin Fowler', 'color': 10181046, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:56:59.886000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009412457529374', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:26:59,024 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:26:59,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 54, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:59.886000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009412457529374', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'When to use iterative development? You should use iterative development only on projects that you want to succeed. Martin Fowler', 'content_scan_version': 0, 'color': 10181046}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:26:59,056 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:26:59,056 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:27:02,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 54. -2024-11-29 16:27:02,687 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:27:10,637 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 55, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:57:11.431000+00:00', 'pinned': False, 'nonce': '1312009455113601024', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009460881031188', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-11-29 16:27:10,637 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:27:10,638 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:27:10,638 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:27:11,039 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1285331307228037291/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:27:11,039 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1285331307228037291/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:57:11.866000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009462705557515', 'channel_id': '1285331307228037291', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:27:11,040 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:27:11,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 56, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:57:11.866000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009462705557515', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-11-29 16:27:11,066 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:27:11,067 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:27:43,595 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-29 16:27:43,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:28:24,862 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-29 16:28:25,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:29:06,126 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-29 16:29:06,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:29:47,387 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-29 16:29:47,741 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:30:28,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-29 16:30:28,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:31:09,909 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-29 16:31:10,273 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:31:51,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-29 16:31:51,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:32:32,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-29 16:32:32,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:33:13,688 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-29 16:33:14,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:33:54,951 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-29 16:33:55,298 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:34:14,859 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 57, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:04:15.678000+00:00', 'pinned': False, 'nonce': '1312011234597404672', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312011240301658112', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.serverinfo', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:34:14,859 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:34:14,859 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:34:14,859 - discord.client - DEBUG - Dispatching event command_error -2024-11-29 16:34:15,358 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"The command you tried to use does not exist. Please check the command and try again.","title":"Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:34:15,358 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T11:04:16.183000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312011242420043816', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:34:15,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 58, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:04:16.183000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312011242420043816', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:34:15,361 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:34:15,361 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:34:36,207 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 58. -2024-11-29 16:34:36,564 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:34:40,866 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:34:40,867 - discord.client - DEBUG - Dispatching event interaction -2024-11-29 16:34:41,389 - discord.webhook.async_ - DEBUG - Webhook ID 1312011348640530453 with POST https://discord.com/api/v10/interactions/1312011348640530453/aW50ZXJhY3Rpb246MTMxMjAxMTM0ODY0MDUzMDQ1MzppY0x4R0lteUhHVXJuVmVxZEp2MGoyelZ5THhBVmVpRXFGZHN1V3A4WXU5bDB2ODNXQ1dRTEpvYjlSS3k2ejNCdUlhcU54U0RmRWxVeVlyRzYycmxubzc0VXhYQTJ0eUczVFh0RmZPNThUaGVkRHNRaE1Zdkx4VnNwb1BvWUVoZg/callback has returned status code 204 -2024-11-29 16:34:41,390 - discord.client - DEBUG - Dispatching event app_command_completion -2024-11-29 16:34:41,401 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 60, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T11:04:42.144000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312011343020163072', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'ping', 'id': '1312011348640530453', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'ping', 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312011348640530453'}, 'id': '1312011351308111953', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Pong! 355ms', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670', 'guild_id': '1292805470117171231'}} -2024-11-29 16:34:41,402 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:34:41,402 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:35:17,462 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. -2024-11-29 16:35:17,808 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:35:58,727 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. -2024-11-29 16:35:59,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:36:39,983 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. -2024-11-29 16:36:40,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:37:21,244 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. -2024-11-29 16:37:21,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:38:02,502 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. -2024-11-29 16:38:02,866 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:38:43,756 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. -2024-11-29 16:38:44,108 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:39:25,015 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. -2024-11-29 16:39:25,361 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:40:06,275 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. -2024-11-29 16:40:06,620 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:40:47,540 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. -2024-11-29 16:40:47,981 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:41:28,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. -2024-11-29 16:41:29,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:42:10,062 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. -2024-11-29 16:42:10,419 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:42:18,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 61, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732878739, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-11-29 16:42:18,858 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:42:18,859 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:42:18,859 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:42:20,292 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 62, 'op': 0, 'd': {'type': 19, 'tts': False, 'timestamp': '2024-11-29T11:12:21.073000+00:00', 'referenced_message': {'type': 0, 'tts': False, 'timestamp': '2024-11-19T22:25:11.292000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1308558722511016006', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Tickets Commands', 'fields': [{'value': 'ticket - Create a ticket\nsetup_logs - Setup logging channels', 'name': 'Commands', 'inline': False}], 'description': 'Here are the commands available in the Tickets category:', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': '2024-11-19T22:25:14.102000+00:00', 'content': '', 'components': [{'type': 1, 'id': 1, 'components': [{'type': 3, 'placeholder': 'Choose a category...', 'options': [{'value': 'Programming', 'label': 'Programming', 'description': 'Commands related to programming help'}, {'value': 'Moderation', 'label': 'Moderation', 'description': 'Commands for server moderation'}, {'value': 'Fun', 'label': 'Fun', 'description': 'Fun commands'}, {'value': 'Admin', 'label': 'Admin', 'description': 'Administrative commands'}, {'value': 'Tickets', 'label': 'Tickets', 'description': 'Ticket management commands'}, {'value': 'AI-Developer Assistance', 'label': 'AI-Developer Assistance', 'description': 'AI-powered developer assistance commands'}], 'min_values': 1, 'max_values': 1, 'id': 2, 'custom_id': '9deef0e24f807d53094a65e66c7f68f6'}]}], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}, 'pinned': False, 'nonce': '1312013270164439040', 'message_reference': {'type': 0, 'message_id': '1308558722511016006', 'guild_id': '1292805470117171231', 'channel_id': '1292805471643766929'}, 'mentions': [{'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'member': {'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013276195979294', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '<@752797478394527835>', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:42:20,293 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:42:20,293 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:42:48,859 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 63, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732878769, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-11-29 16:42:48,860 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:42:48,860 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:42:48,860 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:42:49,346 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 64, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:12:50.155000+00:00', 'pinned': False, 'nonce': '1312013392675864576', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013398174859315', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:42:49,346 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:42:49,347 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:42:49,347 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:42:49,895 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-29 16:42:49,895 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:12:50.713000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013400515022980', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:42:49,896 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:42:49,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 65, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:12:50.713000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013400515022980', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:42:49,904 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:42:49,905 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:42:51,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 65. -2024-11-29 16:42:51,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:42:59,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 66, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:00.669000+00:00', 'pinned': False, 'nonce': '1312013307908980736', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013442273644586', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:42:59,918 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:42:59,919 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:42:59,919 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:43:00,371 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 67, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:01.179000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013444412604457', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:43:00,371 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:00,371 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:43:00,385 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-29 16:43:00,386 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:13:01.179000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013444412604457', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:43:00,387 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:43:07,456 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 68, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:08.264000+00:00', 'pinned': False, 'nonce': '1312013339601141760', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013474129248297', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.quote', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:43:07,457 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:07,457 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:43:07,457 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:43:07,880 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":10181046,"type":"rich","description":"Optimism is an occupational hazard of programming: feedback is the treatment. \u2013 Kent Beck","title":"Inspirational Quote"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:43:07,880 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'Optimism is an occupational hazard of programming: feedback is the treatment. Kent Beck', 'color': 10181046, 'content_scan_version': 0}], 'timestamp': '2024-11-29T11:13:08.711000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013476004106243', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:43:07,881 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:43:07,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 69, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:08.711000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013476004106243', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'Optimism is an occupational hazard of programming: feedback is the treatment. Kent Beck', 'content_scan_version': 0, 'color': 10181046}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:43:07,897 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:07,897 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:43:19,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 70, 'op': 0, 'd': {'user_id': '752797478394527835', 'timestamp': 1732878800, 'member': {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-11-29 16:43:19,345 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:19,346 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:43:19,346 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:43:19,708 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 71, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:20.509000+00:00', 'pinned': False, 'nonce': '1312013390960394240', 'mentions': [{'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013525488766986', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ban <@950609706760691752>', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:43:19,708 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:19,709 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:43:19,709 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:43:19,709 - discord.client - DEBUG - Dispatching event command_error -2024-11-29 16:43:20,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 72, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:21.037000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013527703224321', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Missing Permissions', 'description': 'You do not have the required permissions to use this command.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 16:43:20,284 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:20,284 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:43:20,296 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"You do not have the required permissions to use this command.","title":"Missing Permissions"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:43:20,296 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Missing Permissions', 'description': 'You do not have the required permissions to use this command.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T11:13:21.037000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013527703224321', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:43:25,882 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 73, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732878806, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-11-29 16:43:25,884 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:25,884 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:43:25,884 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:43:32,596 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. -2024-11-29 16:43:32,951 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:43:44,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 74, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:44.800000+00:00', 'pinned': False, 'nonce': '1312013620825030656', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013627372601435', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': []}} -2024-11-29 16:43:44,056 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:44,056 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:43:44,057 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:43:44,791 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-29 16:43:44,791 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-11-29T11:13:45.435000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013630035722273', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:43:44,791 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:43:44,814 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 75, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:45.435000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013630035722273', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-29 16:43:44,814 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:44,815 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:43:45,225 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 -2024-11-29 16:43:45,225 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:13:45.993000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013632376279112', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:43:45,241 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 76, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:45.993000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013632376279112', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-29 16:43:45,241 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:45,242 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:43:49,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 77, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732878830, 'channel_id': '1307917783308308480'}} -2024-11-29 16:43:49,461 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:49,461 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:43:49,462 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:43:50,061 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 78, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:50.827000+00:00', 'pinned': False, 'nonce': '1312013647144288256', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013652651671552', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'how are you doing', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': []}} -2024-11-29 16:43:50,062 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:50,062 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:43:51,628 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 -2024-11-29 16:43:51,629 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:13:52.373000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013659136069637', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:43:51,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 79, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:52.373000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013659136069637', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-29 16:43:51,666 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:51,666 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:43:56,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 80, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732878836, 'channel_id': '1307917783308308480'}} -2024-11-29 16:43:56,035 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:56,035 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:43:56,035 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:43:56,870 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 81, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:57.441000+00:00', 'pinned': False, 'nonce': '1312013674893803520', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013680392798220', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'can you help me out', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': []}} -2024-11-29 16:43:56,871 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:56,871 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:43:57,336 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 -2024-11-29 16:43:57,337 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:13:58.174000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013683467227207', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:43:57,367 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 82, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:58.174000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013683467227207', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-29 16:43:57,368 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:43:57,368 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:13,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 83, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:14.381000+00:00', 'pinned': False, 'nonce': '1312013612545474560', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013751444045865', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'nigga', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': []}} -2024-11-29 16:44:13,632 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:13,632 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:13,861 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 83. -2024-11-29 16:44:14,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:44:14,234 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 -2024-11-29 16:44:14,234 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:14.985000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013753977667606', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:44:14,251 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 84, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:14.985000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013753977667606', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-29 16:44:14,252 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:14,252 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:19,212 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 85, 'op': 0, 'd': {'user_id': '752797478394527835', 'timestamp': 1732878860, 'channel_id': '1312013735191253032'}} -2024-11-29 16:44:19,212 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:19,213 - discord.client - DEBUG - Dispatching event typing -2024-11-29 16:44:19,213 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-29 16:44:19,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 86, 'op': 0, 'd': {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-29 16:44:19,848 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:19,848 - discord.client - DEBUG - Dispatching event member_update -2024-11-29 16:44:19,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 87, 'op': 0, 'd': {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168249317203640550', '1062343535535325235', '1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-03-02T09:43:32.035000+00:00', 'guild_id': '922005348670406667', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-29 16:44:19,853 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:19,854 - discord.client - DEBUG - Dispatching event member_update -2024-11-29 16:44:20,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 88, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:20.782000+00:00', 'pinned': False, 'nonce': '1312013643654627328', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013778291789884', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'why are u gay', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': []}} -2024-11-29 16:44:20,037 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:20,038 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:20,504 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 -2024-11-29 16:44:20,505 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:21.328000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013780582006815', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:44:20,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 89, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:21.328000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013780582006815', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-29 16:44:20,526 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:20,526 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:26,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 90, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:27.238000+00:00', 'pinned': False, 'nonce': '1312013671316062208', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013805370478686', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'nahi kar', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': []}} -2024-11-29 16:44:26,584 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:26,584 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:27,057 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 -2024-11-29 16:44:27,058 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:27.878000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013808054829181', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:44:27,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 91, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:27.878000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013808054829181', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-29 16:44:27,083 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:27,083 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:34,883 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 92, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:35.543000+00:00', 'pinned': False, 'nonce': '1312013705315090432', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013840204173353', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '!help', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': []}} -2024-11-29 16:44:34,884 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:34,884 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:35,331 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 -2024-11-29 16:44:35,332 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:36.129000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013842661769269', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:44:35,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 93, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:36.129000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013842661769269', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-29 16:44:35,384 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:35,385 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:37,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 94, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:37.762000+00:00', 'pinned': False, 'nonce': '1312013714827771904', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013849511071744', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': []}} -2024-11-29 16:44:37,005 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:37,005 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:37,005 - discord.client - DEBUG - Dispatching event command -2024-11-29 16:44:37,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 95, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:38.278000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013851675463682', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-29 16:44:37,510 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:37,510 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:37,520 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-29 16:44:37,520 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:38.278000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013851675463682', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:44:37,520 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 16:44:37,594 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 -2024-11-29 16:44:37,594 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:38.380000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013852103278612', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 16:44:37,636 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 96, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:38.380000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013852103278612', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-29 16:44:37,636 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:37,636 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:52,554 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INTERACTION_CREATE', 's': 97, 'op': 0, 'd': {'version': 1, 'user': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'type': 2, 'token': 'aW50ZXJhY3Rpb246MTMxMjAxMzkxNDk1OTEyMjQzMjo1YzBNYkdVVlV0T2RHQTd2VTIweE9ieXJCeUV4WnJMdnoySDEzeHZhYWVTMk1CTEU3MjRtWEpxYTdTM09lYmJ2bXpyVnFGNm56YjI0d01qWUNJYTdxMTJnMm5reFZvUjI0T3JwS1FkQ0QzTXRSdG92dHRtcjNyMGdwcjNVNlUwbA', 'locale': 'en-GB', 'id': '1312013914959122432', 'entitlements': [], 'data': {'type': 1, 'options': [{'value': 'bot', 'type': 3, 'name': 'question'}], 'name': 'ask', 'id': '1312008731227062346'}, 'context': 1, 'channel_id': '1312013735191253032', 'channel': {'type': 1, 'recipients': [{'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}], 'recipient_flags': 0, 'last_message_id': '1312013852103278612', 'id': '1312013735191253032', 'flags': 0}, 'authorizing_integration_owners': {'0': '0'}, 'application_id': '1304755116255088670', 'app_permissions': '562949953863680'}} -2024-11-29 16:44:52,554 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:52,555 - discord.client - DEBUG - Dispatching event interaction -2024-11-29 16:44:53,045 - discord.webhook.async_ - DEBUG - Webhook ID 1312013914959122432 with POST https://discord.com/api/v10/interactions/1312013914959122432/aW50ZXJhY3Rpb246MTMxMjAxMzkxNDk1OTEyMjQzMjo1YzBNYkdVVlV0T2RHQTd2VTIweE9ieXJCeUV4WnJMdnoySDEzeHZhYWVTMk1CTEU3MjRtWEpxYTdTM09lYmJ2bXpyVnFGNm56YjI0d01qWUNJYTdxMTJnMm5reFZvUjI0T3JwS1FkQ0QzTXRSdG92dHRtcjNyMGdwcjNVNlUwbA/callback has returned status code 204 -2024-11-29 16:44:53,062 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 98, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T11:14:53.770000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312013780225359872', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'interaction_metadata': {'user': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'type': 2, 'name': 'ask', 'id': '1312013914959122432', 'command_type': 1, 'authorizing_integration_owners': {'0': '0'}}, 'interaction': {'user': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'type': 2, 'name': 'ask', 'id': '1312013914959122432'}, 'id': '1312013916653748248', 'flags': 128, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670'}} -2024-11-29 16:44:53,063 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:53,063 - discord.client - DEBUG - Dispatching event message -2024-11-29 16:44:53,508 - discord.webhook.async_ - DEBUG - Webhook ID 1304755116255088670 with POST https://discord.com/api/v10/webhooks/1304755116255088670/aW50ZXJhY3Rpb246MTMxMjAxMzkxNDk1OTEyMjQzMjo1YzBNYkdVVlV0T2RHQTd2VTIweE9ieXJCeUV4WnJMdnoySDEzeHZhYWVTMk1CTEU3MjRtWEpxYTdTM09lYmJ2bXpyVnFGNm56YjI0d01qWUNJYTdxMTJnMm5reFZvUjI0T3JwS1FkQ0QzTXRSdG92dHRtcjNyMGdwcjNVNlUwbA has returned status code 200 -2024-11-29 16:44:53,509 - discord.client - DEBUG - Dispatching event app_command_completion -2024-11-29 16:44:53,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 99, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T11:14:53.770000+00:00', 'position': 0, 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'interaction_metadata': {'user': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'type': 2, 'name': 'ask', 'id': '1312013914959122432', 'command_type': 1, 'authorizing_integration_owners': {'0': '0'}}, 'interaction': {'user': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'type': 2, 'name': 'ask', 'id': '1312013914959122432'}, 'id': '1312013916653748248', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'AI Assistant Response', 'timestamp': '2024-11-29T11:14:53.046396+00:00', 'footer': {'text': 'Requested by adroll | Model: gpt-3.5-turbo'}, 'description': 'OpenAI Error: \n\nYou tried to access openai.ChatCompletion, but this is no longer supported in openai>=1.0.0 - see the README at https://github.com/openai/openai-python for the API.\n\nYou can run `openai migrate` to automatically upgrade your codebase to use the 1.0.0 interface. \n\nAlternatively, you can pin your installation to the old version, e.g. `pip install openai==0.28`\n\nA detailed migration guide is available here: https://github.com/openai/openai-python/discussions/742', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670'}} -2024-11-29 16:44:53,546 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:44:53,546 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-29 16:44:53,547 - discord.client - DEBUG - Dispatching event message_edit -2024-11-29 16:44:55,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 99. -2024-11-29 16:44:55,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:45:36,384 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 99. -2024-11-29 16:45:36,732 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:46:17,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 99. -2024-11-29 16:46:18,000 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:46:58,589 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-11-29 16:46:58,589 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-11-29 16:46:58,934 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-11-29 16:46:58,934 - discord.client - DEBUG - Dispatching event disconnect -2024-11-29 16:46:59,402 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-d.discord.gg -2024-11-29 16:46:59,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-cnkr",{"micros":0.0}]']}} -2024-11-29 16:46:59,403 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-11-29 16:46:59,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:46:59,752 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 100, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-d-cnkr",{"micros":19015,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":1117,"calls":[]},"session_lookup_finished",{"micros":14,"calls":[]},"discord-sessions-prd-1-279",{"micros":27}]}]']}} -2024-11-29 16:46:59,753 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 16:46:59,753 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 5597777538f910b79b5ab5f775611df8. -2024-11-29 16:46:59,753 - discord.client - DEBUG - Dispatching event resumed -2024-11-29 16:47:40,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 100. -2024-11-29 16:47:41,001 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:48:21,916 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 100. -2024-11-29 16:48:22,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:49:03,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 100. -2024-11-29 16:49:03,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 16:49:44,436 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 100. -2024-11-29 16:49:44,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 23:37:01,389 - discord.client - DEBUG - on_error has successfully been registered as an event -2024-11-29 23:37:01,390 - asyncio - DEBUG - Using proactor: IocpProactor -2024-11-29 23:37:01,391 - IndieGOBot - INFO - Starting bot... -2024-11-29 23:37:01,392 - discord.client - INFO - logging in using static token -2024-11-29 23:37:01,914 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 -2024-11-29 23:37:01,914 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). -2024-11-29 23:37:01,915 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} -2024-11-29 23:37:02,455 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 -2024-11-29 23:37:02,456 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). -2024-11-29 23:37:02,456 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Programming', 'Community', 'Moderation', 'fun', 'productivity'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} -2024-11-29 23:37:02,456 - IndieGOBot - INFO - Starting bot setup... -2024-11-29 23:37:02,456 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general -2024-11-29 23:37:02,459 - IndieGOBot - INFO - Successfully loaded extension: cogs.general -2024-11-29 23:37:02,459 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation -2024-11-29 23:37:02,461 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation -2024-11-29 23:37:02,461 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun -2024-11-29 23:37:02,463 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun -2024-11-29 23:37:02,463 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin -2024-11-29 23:37:02,464 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin -2024-11-29 23:37:02,465 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets -2024-11-29 23:37:02,466 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets -2024-11-29 23:37:02,466 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging -2024-11-29 23:37:02,468 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging -2024-11-29 23:37:02,468 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant -2024-11-29 23:37:05,446 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False -2024-11-29 23:37:05,446 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' -2024-11-29 23:37:05,765 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant -2024-11-29 23:37:05,765 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help -2024-11-29 23:37:09,888 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help -2024-11-29 23:37:09,888 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help -2024-11-29 23:37:09,891 - IndieGOBot - ERROR - Failed to load extension cogs.help -2024-11-29 23:37:09,891 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-29 23:37:09,891 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. -2024-11-29 23:37:09,891 - IndieGOBot - ERROR - Traceback: -2024-11-29 23:37:09,893 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup - await bot.add_cog(Help(bot)) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog - cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject - raise e - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject - bot.add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command - super().add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command - raise CommandRegistrationError(command.name) -discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. - -2024-11-29 23:37:09,894 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base -2024-11-29 23:37:09,895 - IndieGOBot - INFO - Successfully loaded extension: cogs.base -2024-11-29 23:37:09,895 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors -2024-11-29 23:37:09,896 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors -2024-11-29 23:37:09,896 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod -2024-11-29 23:37:09,897 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod -2024-11-29 23:37:09,897 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction -2024-11-29 23:37:09,899 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction -2024-11-29 23:37:09,899 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel -2024-11-29 23:37:09,900 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel -2024-11-29 23:37:09,900 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr -2024-11-29 23:37:09,906 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr -2024-11-29 23:37:09,906 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit -2024-11-29 23:37:10,020 - IndieGOBot - ERROR - Failed to load extension cogs.reddit -2024-11-29 23:37:10,020 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-29 23:37:10,020 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. -2024-11-29 23:37:10,020 - IndieGOBot - ERROR - Traceback: -2024-11-29 23:37:10,022 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup - await bot.add_cog(Reddit(bot)) - ^^^^^^^^^^^ - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ - self.reddit = praw.Reddit( - ^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped - return func(**dict(zip(_old_args, args)), **kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ - raise MissingRequiredAttributeException( -praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -2024-11-29 23:37:10,023 - IndieGOBot - INFO - Syncing command tree... -2024-11-29 23:37:10,651 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"help","description":"Show bot help and commands","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 -2024-11-29 23:37:10,652 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). -2024-11-29 23:37:10,652 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1308554160815476778', 'application_id': '1304755116255088670', 'version': '1311998121030586388', 'default_member_permissions': None, 'type': 1, 'name': 'help', 'name_localizations': None, 'description': 'Show bot help and commands', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] -2024-11-29 23:37:10,656 - IndieGOBot - INFO - Command tree synced successfully -2024-11-29 23:37:11,100 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ -2024-11-29 23:37:11,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-c-rfsr",{"micros":0.0}]']}} -2024-11-29 23:37:11,101 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. -2024-11-29 23:37:11,430 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 23:37:11,495 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': 'b39e548fa39bb437eb6662611fa61bf0', 'resume_gateway_url': 'wss://gateway-us-east1-c.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-c-rfsr",{"micros":58161,"calls":["id_created",{"micros":1248,"calls":[]},"session_lookup_time",{"micros":321,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-119",{"micros":56205,"calls":["start_session",{"micros":37118,"calls":["discord-api-rpc-6cf69f8f4b-25w9h",{"micros":33830,"calls":["get_user",{"micros":5369},"get_guilds",{"micros":3573},"send_scheduled_deletion_message",{"micros":7},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":6}]}]},"starting_guild_connect",{"micros":36,"calls":[]},"presence_started",{"micros":10800,"calls":[]},"guilds_started",{"micros":139,"calls":[]},"guilds_connect",{"micros":1,"calls":[]},"presence_connect",{"micros":8073,"calls":[]},"connect_finished",{"micros":8080,"calls":[]},"build_ready",{"micros":28,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":0,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} -2024-11-29 23:37:11,496 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:11,496 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: b39e548fa39bb437eb6662611fa61bf0). -2024-11-29 23:37:11,496 - discord.client - DEBUG - Dispatching event connect -2024-11-29 23:37:11,755 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:11,897 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:11,902 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:12,009 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:12,013 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:12,052 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:12,086 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:12,090 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '27be2099d665c34fa3a62698eebcd5c4', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:37:12,090 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:12,091 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. -2024-11-29 23:37:13,188 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:13,195 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:37:13,370 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:13,376 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:37:13,495 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:13,501 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:37:13,619 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:13,625 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:37:13,734 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:13,739 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:37:13,754 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:13,755 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. -2024-11-29 23:37:13,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 16, 'op': 0, 'd': {'nonce': 'ac2a4fd09ae8b2421255d01fa854e198', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:37:13,756 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:13,756 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. -2024-11-29 23:37:13,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': '61bed007c7344b1aebb8aab437743956', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:37:13,757 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:13,757 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. -2024-11-29 23:37:14,099 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:37:14,099 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:37:14,099 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:37:14,100 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:37:14,109 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': '69fcc06fbc81d61a93cba59732c29aed', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:37:14,109 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:14,109 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. -2024-11-29 23:37:14,110 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:37:14,601 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': '5d650b74bef096d3e59ff1f3d7658222', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:37:14,601 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:14,602 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. -2024-11-29 23:37:14,602 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:37:15,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '648cf5f73b95d9544ae9c53208524ab8', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:37:15,106 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:15,106 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. -2024-11-29 23:37:15,107 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:37:15,107 - discord.client - DEBUG - Dispatching event ready -2024-11-29 23:37:15,107 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! -2024-11-29 23:37:15,107 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status -2024-11-29 23:37:27,458 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:27,458 - discord.client - DEBUG - Dispatching event interaction -2024-11-29 23:37:27,964 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T18:21:17.024000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312117738948263936', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'id': '1312121218488471562', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312121218488471562'}, 'id': '1312121220598333460', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'IndieGO Bot Help', 'description': 'Here are my available commands:', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670', 'guild_id': '1292805470117171231'}} -2024-11-29 23:37:27,965 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:27,965 - discord.client - DEBUG - Dispatching event message -2024-11-29 23:37:28,003 - discord.webhook.async_ - DEBUG - Webhook ID 1312121218488471562 with POST https://discord.com/api/v10/interactions/1312121218488471562/aW50ZXJhY3Rpb246MTMxMjEyMTIxODQ4ODQ3MTU2Mjo2a3g2RkZ4dzE1eE1YTUl1NTlhbWhweTl1ZTdFYlA1UHltS2xNMzRQZVl3YUl1d1FONkd5VzAzV0U3dnBoWm1xdHJsWG0yNzRVcHFLZ0tKa0FwbmFueWI0SFphWHdpTEJXM05mRUpVR1JmaFdReEo2Q2J0SHdlOTNsY3E4enRpVw/callback has returned status code 204 -2024-11-29 23:37:28,003 - discord.client - DEBUG - Dispatching event app_command_completion -2024-11-29 23:37:35,645 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 23, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:21:24.716000+00:00', 'pinned': False, 'nonce': '1312117773589020672', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312121252860661810', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 23:37:35,645 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:35,645 - discord.client - DEBUG - Dispatching event message -2024-11-29 23:37:35,646 - discord.client - DEBUG - Dispatching event command -2024-11-29 23:37:36,107 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 24, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:21:25.172000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312121254773526578', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 23:37:36,108 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:37:36,108 - discord.client - DEBUG - Dispatching event message -2024-11-29 23:37:36,113 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-29 23:37:36,114 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). -2024-11-29 23:37:36,114 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:21:25.172000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312121254773526578', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 23:37:36,114 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 23:37:52,360 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. -2024-11-29 23:37:52,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 23:38:33,618 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. -2024-11-29 23:38:33,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 23:39:14,876 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. -2024-11-29 23:39:15,205 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 23:39:56,131 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. -2024-11-29 23:39:56,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 23:40:54,884 - discord.client - DEBUG - on_error has successfully been registered as an event -2024-11-29 23:40:54,885 - asyncio - DEBUG - Using proactor: IocpProactor -2024-11-29 23:40:54,886 - IndieGOBot - INFO - Starting bot... -2024-11-29 23:40:54,886 - discord.client - INFO - logging in using static token -2024-11-29 23:40:55,314 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 -2024-11-29 23:40:55,315 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). -2024-11-29 23:40:55,315 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} -2024-11-29 23:40:55,987 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 -2024-11-29 23:40:55,987 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). -2024-11-29 23:40:55,987 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Community', 'Programming', 'Moderation', 'fun', 'productivity'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} -2024-11-29 23:40:55,988 - IndieGOBot - INFO - Starting bot setup... -2024-11-29 23:40:55,988 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general -2024-11-29 23:40:55,990 - IndieGOBot - INFO - Successfully loaded extension: cogs.general -2024-11-29 23:40:55,990 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation -2024-11-29 23:40:55,992 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation -2024-11-29 23:40:55,992 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun -2024-11-29 23:40:55,993 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun -2024-11-29 23:40:55,993 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin -2024-11-29 23:40:55,994 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin -2024-11-29 23:40:55,994 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets -2024-11-29 23:40:55,995 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets -2024-11-29 23:40:55,995 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging -2024-11-29 23:40:55,996 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging -2024-11-29 23:40:55,996 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant -2024-11-29 23:40:58,005 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False -2024-11-29 23:40:58,006 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' -2024-11-29 23:40:58,304 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant -2024-11-29 23:40:58,304 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help -2024-11-29 23:41:01,371 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help -2024-11-29 23:41:01,372 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help -2024-11-29 23:41:01,374 - IndieGOBot - ERROR - Failed to load extension cogs.help -2024-11-29 23:41:01,374 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-29 23:41:01,374 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. -2024-11-29 23:41:01,374 - IndieGOBot - ERROR - Traceback: -2024-11-29 23:41:01,377 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup - await bot.add_cog(Help(bot)) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog - cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject - raise e - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject - bot.add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command - super().add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command - raise CommandRegistrationError(command.name) -discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. - -2024-11-29 23:41:01,377 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base -2024-11-29 23:41:01,379 - IndieGOBot - INFO - Successfully loaded extension: cogs.base -2024-11-29 23:41:01,379 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors -2024-11-29 23:41:01,379 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors -2024-11-29 23:41:01,380 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod -2024-11-29 23:41:01,381 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod -2024-11-29 23:41:01,381 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction -2024-11-29 23:41:01,382 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction -2024-11-29 23:41:01,382 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel -2024-11-29 23:41:01,383 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel -2024-11-29 23:41:01,383 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr -2024-11-29 23:41:01,387 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr -2024-11-29 23:41:01,388 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit -2024-11-29 23:41:01,481 - IndieGOBot - ERROR - Failed to load extension cogs.reddit -2024-11-29 23:41:01,481 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-29 23:41:01,481 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. -2024-11-29 23:41:01,481 - IndieGOBot - ERROR - Traceback: -2024-11-29 23:41:01,483 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup - await bot.add_cog(Reddit(bot)) - ^^^^^^^^^^^ - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ - self.reddit = praw.Reddit( - ^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped - return func(**dict(zip(_old_args, args)), **kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ - raise MissingRequiredAttributeException( -praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -2024-11-29 23:41:01,483 - IndieGOBot - INFO - Syncing command tree... -2024-11-29 23:41:02,228 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"help","description":"Show bot help and commands","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 -2024-11-29 23:41:02,229 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). -2024-11-29 23:41:02,229 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1308554160815476778', 'application_id': '1304755116255088670', 'version': '1311998121030586388', 'default_member_permissions': None, 'type': 1, 'name': 'help', 'name_localizations': None, 'description': 'Show bot help and commands', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] -2024-11-29 23:41:02,230 - IndieGOBot - INFO - Command tree synced successfully -2024-11-29 23:41:02,663 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ -2024-11-29 23:41:02,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-sr77",{"micros":0.0}]']}} -2024-11-29 23:41:02,665 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. -2024-11-29 23:41:02,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 23:41:03,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '0d8b6ef03a5c588352ddb5791abbd212', 'resume_gateway_url': 'wss://gateway-us-east1-d.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-d-sr77",{"micros":53928,"calls":["id_created",{"micros":1433,"calls":[]},"session_lookup_time",{"micros":1553,"calls":[]},"session_lookup_finished",{"micros":16,"calls":[]},"discord-sessions-prd-1-72",{"micros":50625,"calls":["start_session",{"micros":36755,"calls":["discord-api-rpc-6cf69f8f4b-kdr62",{"micros":32916,"calls":["get_user",{"micros":5219},"get_guilds",{"micros":2555},"send_scheduled_deletion_message",{"micros":5},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":7}]}]},"starting_guild_connect",{"micros":30,"calls":[]},"presence_started",{"micros":7596,"calls":[]},"guilds_started",{"micros":150,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":6063,"calls":[]},"connect_finished",{"micros":6069,"calls":[]},"build_ready",{"micros":21,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":0,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} -2024-11-29 23:41:03,038 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:03,038 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 0d8b6ef03a5c588352ddb5791abbd212). -2024-11-29 23:41:03,039 - discord.client - DEBUG - Dispatching event connect -2024-11-29 23:41:03,072 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:03,085 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:03,115 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:03,120 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:03,137 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:03,152 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:03,155 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:03,423 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '4d68c2be4b4e9272ba770e78a1a34c23', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:41:03,424 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:03,424 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. -2024-11-29 23:41:03,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 10, 'op': 0, 'd': {'nonce': 'd560bc49ba7779fbdfe565ce73841803', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:41:03,904 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:03,904 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. -2024-11-29 23:41:04,854 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:04,863 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:41:04,981 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:04,986 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:41:05,090 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:05,096 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:41:05,203 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:05,211 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:41:05,328 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:05,334 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:41:05,353 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:05,354 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. -2024-11-29 23:41:05,354 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': 'b2b74e4ddc0eea8cdb5022f5d8058c76', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:41:05,354 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:05,354 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. -2024-11-29 23:41:05,356 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:41:05,356 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:41:05,356 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:41:05,356 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:41:05,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': '44916a8fbdc749d4468db392bebe7e4f', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:41:05,400 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:05,400 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. -2024-11-29 23:41:05,401 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:41:05,909 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': 'daf35d42f7b83ec18f1496839039d07e', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:41:05,911 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:05,912 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. -2024-11-29 23:41:05,912 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:41:06,411 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '30f5f987153a13b9c97a7e4dd461afba', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:41:06,411 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:06,411 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. -2024-11-29 23:41:06,412 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:41:06,412 - discord.client - DEBUG - Dispatching event ready -2024-11-29 23:41:06,412 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! -2024-11-29 23:41:06,412 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status -2024-11-29 23:41:33,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 21, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:25:22.604000+00:00', 'pinned': False, 'nonce': '1312118771539771392', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312122250635382845', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 23:41:33,665 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:33,665 - discord.client - DEBUG - Dispatching event message -2024-11-29 23:41:33,666 - discord.client - DEBUG - Dispatching event command -2024-11-29 23:41:34,121 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:25:23.193000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312122253105696830', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-29 23:41:34,122 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:34,122 - discord.client - DEBUG - Dispatching event message -2024-11-29 23:41:34,132 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-29 23:41:34,133 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). -2024-11-29 23:41:34,133 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:25:23.193000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312122253105696830', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-29 23:41:34,133 - discord.client - DEBUG - Dispatching event command_completion -2024-11-29 23:41:38,021 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:38,021 - discord.client - DEBUG - Dispatching event interaction -2024-11-29 23:41:38,492 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 24, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T18:25:27.474000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312118789927600128', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'id': '1312122269421797406', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312122269421797406'}, 'id': '1312122271061643348', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'IndieGO Bot Help', 'description': 'Here are my available commands:', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670', 'guild_id': '1292805470117171231'}} -2024-11-29 23:41:38,493 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:41:38,493 - discord.client - DEBUG - Dispatching event message -2024-11-29 23:41:38,515 - discord.webhook.async_ - DEBUG - Webhook ID 1312122269421797406 with POST https://discord.com/api/v10/interactions/1312122269421797406/aW50ZXJhY3Rpb246MTMxMjEyMjI2OTQyMTc5NzQwNjo0ZTNWbm8xU1daUXc1M2ptNlVLeERvV0JNODdUOFROOE1XNk90QUF3THNSeG5sa25sampxZkhielM2Ynk5WTVxemdCT05IN1FTMEhDTEZ3bmNkbjFLaHlpUHdUd1dKeVhVazVSS09FTUtYWXhCS2pWRVZtd1Y4UDFXUlJBTE9OUA/callback has returned status code 204 -2024-11-29 23:41:38,515 - discord.client - DEBUG - Dispatching event app_command_completion -2024-11-29 23:41:43,930 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. -2024-11-29 23:41:44,249 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 23:59:22,171 - discord.client - DEBUG - on_error has successfully been registered as an event -2024-11-29 23:59:22,171 - asyncio - DEBUG - Using proactor: IocpProactor -2024-11-29 23:59:22,172 - IndieGOBot - INFO - Starting bot... -2024-11-29 23:59:22,173 - discord.client - INFO - logging in using static token -2024-11-29 23:59:22,703 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 -2024-11-29 23:59:22,703 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). -2024-11-29 23:59:22,703 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} -2024-11-29 23:59:23,341 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 -2024-11-29 23:59:23,341 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). -2024-11-29 23:59:23,341 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Moderation', 'Community', 'fun', 'productivity', 'Programming'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} -2024-11-29 23:59:23,342 - IndieGOBot - INFO - Starting bot setup... -2024-11-29 23:59:23,342 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general -2024-11-29 23:59:23,345 - IndieGOBot - INFO - Successfully loaded extension: cogs.general -2024-11-29 23:59:23,346 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation -2024-11-29 23:59:23,348 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation -2024-11-29 23:59:23,348 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun -2024-11-29 23:59:23,351 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun -2024-11-29 23:59:23,351 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin -2024-11-29 23:59:23,353 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin -2024-11-29 23:59:23,353 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets -2024-11-29 23:59:23,355 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets -2024-11-29 23:59:23,356 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging -2024-11-29 23:59:23,357 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging -2024-11-29 23:59:23,357 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant -2024-11-29 23:59:26,357 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False -2024-11-29 23:59:26,358 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' -2024-11-29 23:59:26,660 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant -2024-11-29 23:59:26,661 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help -2024-11-29 23:59:29,952 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help -2024-11-29 23:59:29,953 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help -2024-11-29 23:59:29,955 - IndieGOBot - ERROR - Failed to load extension cogs.help -2024-11-29 23:59:29,955 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-29 23:59:29,955 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. -2024-11-29 23:59:29,955 - IndieGOBot - ERROR - Traceback: -2024-11-29 23:59:29,958 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup - await bot.add_cog(Help(bot)) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog - cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject - raise e - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject - bot.add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command - super().add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command - raise CommandRegistrationError(command.name) -discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. - -2024-11-29 23:59:29,958 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base -2024-11-29 23:59:29,959 - IndieGOBot - INFO - Successfully loaded extension: cogs.base -2024-11-29 23:59:29,959 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors -2024-11-29 23:59:29,960 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors -2024-11-29 23:59:29,961 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod -2024-11-29 23:59:29,961 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod -2024-11-29 23:59:29,962 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction -2024-11-29 23:59:29,963 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction -2024-11-29 23:59:29,963 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel -2024-11-29 23:59:29,964 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel -2024-11-29 23:59:29,964 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr -2024-11-29 23:59:29,971 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr -2024-11-29 23:59:29,971 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit -2024-11-29 23:59:30,081 - IndieGOBot - ERROR - Failed to load extension cogs.reddit -2024-11-29 23:59:30,081 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-29 23:59:30,081 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. -2024-11-29 23:59:30,081 - IndieGOBot - ERROR - Traceback: -2024-11-29 23:59:30,083 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup - await bot.add_cog(Reddit(bot)) - ^^^^^^^^^^^ - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ - self.reddit = praw.Reddit( - ^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped - return func(**dict(zip(_old_args, args)), **kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ - raise MissingRequiredAttributeException( -praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -2024-11-29 23:59:30,084 - IndieGOBot - INFO - Syncing command tree... -2024-11-29 23:59:30,692 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"help","description":"Show bot help and commands","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 -2024-11-29 23:59:30,693 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). -2024-11-29 23:59:30,693 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1308554160815476778', 'application_id': '1304755116255088670', 'version': '1311998121030586388', 'default_member_permissions': None, 'type': 1, 'name': 'help', 'name_localizations': None, 'description': 'Show bot help and commands', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] -2024-11-29 23:59:30,694 - IndieGOBot - INFO - Command tree synced successfully -2024-11-29 23:59:31,131 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ -2024-11-29 23:59:31,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-llbq",{"micros":0.0}]']}} -2024-11-29 23:59:31,132 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. -2024-11-29 23:59:31,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-29 23:59:31,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '89f0dbeb27e8c89fad886e544bac387b', 'resume_gateway_url': 'wss://gateway-us-east1-d.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-d-llbq",{"micros":78338,"calls":["id_created",{"micros":867,"calls":[]},"session_lookup_time",{"micros":2690,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-264",{"micros":74489,"calls":["start_session",{"micros":44942,"calls":["discord-api-rpc-6cf69f8f4b-gqs7b",{"micros":41113,"calls":["get_user",{"micros":6464},"get_guilds",{"micros":3391},"send_scheduled_deletion_message",{"micros":7},"guild_join_requests",{"micros":734},"authorized_ip_coro",{"micros":6}]}]},"starting_guild_connect",{"micros":39,"calls":[]},"presence_started",{"micros":337,"calls":[]},"guilds_started",{"micros":118,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":29004,"calls":[]},"connect_finished",{"micros":29009,"calls":[]},"build_ready",{"micros":19,"calls":[]},"clean_ready",{"micros":0,"calls":[]},"optimize_ready",{"micros":1,"calls":[]},"split_ready",{"micros":23,"calls":[]}]}]}]']}} -2024-11-29 23:59:31,527 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:31,528 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 89f0dbeb27e8c89fad886e544bac387b). -2024-11-29 23:59:31,528 - discord.client - DEBUG - Dispatching event connect -2024-11-29 23:59:31,758 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:31,889 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:31,894 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:32,027 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:32,034 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:32,076 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:32,093 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:32,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': 'df550a2c8065f01075f5f8117181fd65', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:59:32,098 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:32,098 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. -2024-11-29 23:59:33,252 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:33,257 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:59:33,471 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:33,478 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:59:33,668 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:33,675 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:59:33,854 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:33,860 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:59:34,053 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:34,060 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-29 23:59:34,082 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:34,083 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. -2024-11-29 23:59:34,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 16, 'op': 0, 'd': {'nonce': '98f5a91a1c83a3bdcc1a99252cffd0db', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:59:34,084 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:34,084 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. -2024-11-29 23:59:34,084 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': '3d27b3008bc3ed90924c7fa1e369a720', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:59:34,084 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:34,084 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. -2024-11-29 23:59:34,085 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:59:34,085 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:59:34,085 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:59:34,085 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:59:34,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': '619f73684a7b5c7c1cd6c21614692943', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:59:34,095 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:34,095 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. -2024-11-29 23:59:34,096 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:59:34,597 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': 'c020828dfed5fc93d54b954fa36110ca', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:59:34,599 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:34,599 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. -2024-11-29 23:59:34,599 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:59:35,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '11b28e8088f7f46aac99145198d5cd77', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-29 23:59:35,087 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-29 23:59:35,087 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. -2024-11-29 23:59:35,087 - discord.client - DEBUG - Dispatching event guild_available -2024-11-29 23:59:35,087 - discord.client - DEBUG - Dispatching event ready -2024-11-29 23:59:35,087 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! -2024-11-29 23:59:35,088 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status -2024-11-30 00:00:12,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 00:00:12,707 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 00:00:51,856 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 21, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:44:40.885000+00:00', 'pinned': False, 'nonce': '1312123629537853440', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127108818010154', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:00:51,856 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:00:51,858 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:00:51,858 - discord.client - DEBUG - Dispatching event command -2024-11-30 00:00:52,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:44:41.373000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127110864965632', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:00:52,332 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:00:52,332 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:00:52,352 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-30 00:00:52,352 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). -2024-11-30 00:00:52,353 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:44:41.373000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312127110864965632', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-30 00:00:52,353 - discord.client - DEBUG - Dispatching event command_completion -2024-11-30 00:00:53,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 22. -2024-11-30 00:00:53,971 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 00:00:59,667 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:00:59,667 - discord.client - DEBUG - Dispatching event interaction -2024-11-30 00:01:00,155 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 24, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T18:44:49.177000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312123661934657536', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'id': '1312127141592432671', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127141592432671'}, 'id': '1312127143597183106', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'IndieGO Bot Help', 'description': 'Here are my available commands:', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670', 'guild_id': '1292805470117171231'}} -2024-11-30 00:01:00,156 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:01:00,156 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:01:00,207 - discord.webhook.async_ - DEBUG - Webhook ID 1312127141592432671 with POST https://discord.com/api/v10/interactions/1312127141592432671/aW50ZXJhY3Rpb246MTMxMjEyNzE0MTU5MjQzMjY3MTpLbVBqcG92VUc3Z1pnOVNOOXphNkJHYWdDMk1kTW9heXc0SzNBdTM5VWpraVdxUHV4ZERmQ0ViRk4yZktnbDhCZXZKZFZsYWFoT2Z2RDhqVzNpTjdLdG9KanNPdm43ajM0dzhrMkRYVVU3QlkwVXBva0x0N3B4am9FWEVJdkdXWQ/callback has returned status code 204 -2024-11-30 00:01:00,208 - discord.client - DEBUG - Dispatching event app_command_completion -2024-11-30 00:01:34,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. -2024-11-30 00:01:35,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 00:01:42,622 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 25, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:45:31.618000+00:00', 'pinned': False, 'nonce': '1312123842558164992', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127321607766100', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:01:42,623 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:01:42,623 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:01:42,623 - discord.client - DEBUG - Dispatching event command -2024-11-30 00:01:43,166 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 26, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:45:32.184000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127323981746216', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:01:43,167 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:01:43,167 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:01:44,474 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-30 00:01:44,474 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:45:32.184000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312127323981746216', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-30 00:01:44,475 - discord.client - DEBUG - Dispatching event command_completion -2024-11-30 00:01:47,625 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:01:47,625 - discord.client - DEBUG - Dispatching event interaction -2024-11-30 00:01:48,103 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 28, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T18:45:37.065000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312123863529684992', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'id': '1312127342742605884', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127342742605884'}, 'id': '1312127344454144031', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'IndieGO Bot Help', 'description': 'Here are my available commands:', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670', 'guild_id': '1292805470117171231'}} -2024-11-30 00:01:48,103 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:01:48,103 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:01:48,134 - discord.webhook.async_ - DEBUG - Webhook ID 1312127342742605884 with POST https://discord.com/api/v10/interactions/1312127342742605884/aW50ZXJhY3Rpb246MTMxMjEyNzM0Mjc0MjYwNTg4NDpNMUVkSlZUNmpTTmdKaVp1SUZPVm0zUFRWc0ZQQ2NjUEd2ME5kWDdkc2JoUk9QNmdBR3lUa280ZGZETlZsWVNnN2dNN0p1c05VUUxEOXNZaWNmS2xDNzlvblQ4N3p3N1pScXVQWkpINDVIUzhDOHdQb1lRV3J4Q1JiVzlwVFNqVg/callback has returned status code 204 -2024-11-30 00:01:48,134 - discord.client - DEBUG - Dispatching event app_command_completion -2024-11-30 00:01:51,145 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 29, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:45:40.131000+00:00', 'pinned': False, 'nonce': '1312123878155223040', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127357313749013', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:01:51,147 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:01:51,147 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:01:51,147 - discord.client - DEBUG - Dispatching event command -2024-11-30 00:01:51,580 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do programmers hate nature? It has too many bugs.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 -2024-11-30 00:01:51,581 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers hate nature? It has too many bugs.', 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-11-29T18:45:40.620000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312127359364894811', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-30 00:01:51,581 - discord.client - DEBUG - Dispatching event command_completion -2024-11-30 00:01:51,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 30, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:45:40.620000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127359364894811', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers hate nature? It has too many bugs.', 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:01:51,585 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:01:51,585 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:02:12,841 - discord.client - DEBUG - on_error has successfully been registered as an event -2024-11-30 00:02:12,842 - asyncio - DEBUG - Using proactor: IocpProactor -2024-11-30 00:02:12,843 - IndieGOBot - INFO - Starting bot... -2024-11-30 00:02:12,844 - discord.client - INFO - logging in using static token -2024-11-30 00:02:13,380 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 -2024-11-30 00:02:13,380 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). -2024-11-30 00:02:13,380 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} -2024-11-30 00:02:13,945 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 -2024-11-30 00:02:13,946 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). -2024-11-30 00:02:13,946 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['bot', 'applications.commands'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['bot', 'applications.commands'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Moderation', 'Community', 'productivity', 'fun', 'Programming'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} -2024-11-30 00:02:13,946 - IndieGOBot - INFO - Starting bot setup... -2024-11-30 00:02:13,946 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general -2024-11-30 00:02:13,948 - IndieGOBot - INFO - Successfully loaded extension: cogs.general -2024-11-30 00:02:13,948 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation -2024-11-30 00:02:13,950 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation -2024-11-30 00:02:13,950 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun -2024-11-30 00:02:13,952 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun -2024-11-30 00:02:13,952 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin -2024-11-30 00:02:13,953 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin -2024-11-30 00:02:13,953 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets -2024-11-30 00:02:13,954 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets -2024-11-30 00:02:13,954 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging -2024-11-30 00:02:13,955 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging -2024-11-30 00:02:13,955 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant -2024-11-30 00:02:16,237 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False -2024-11-30 00:02:16,237 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' -2024-11-30 00:02:16,535 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant -2024-11-30 00:02:16,535 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help -2024-11-30 00:02:19,805 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help -2024-11-30 00:02:19,805 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help -2024-11-30 00:02:19,807 - IndieGOBot - ERROR - Failed to load extension cogs.help -2024-11-30 00:02:19,808 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-30 00:02:19,808 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. -2024-11-30 00:02:19,808 - IndieGOBot - ERROR - Traceback: -2024-11-30 00:02:19,809 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup - await bot.add_cog(Help(bot)) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog - cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject - raise e - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject - bot.add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command - super().add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command - raise CommandRegistrationError(command.name) -discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. - -2024-11-30 00:02:19,810 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base -2024-11-30 00:02:19,811 - IndieGOBot - INFO - Successfully loaded extension: cogs.base -2024-11-30 00:02:19,811 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors -2024-11-30 00:02:19,813 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors -2024-11-30 00:02:19,813 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod -2024-11-30 00:02:19,814 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod -2024-11-30 00:02:19,814 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction -2024-11-30 00:02:19,815 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction -2024-11-30 00:02:19,815 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel -2024-11-30 00:02:19,816 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel -2024-11-30 00:02:19,817 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr -2024-11-30 00:02:19,822 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr -2024-11-30 00:02:19,822 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit -2024-11-30 00:02:19,900 - IndieGOBot - ERROR - Failed to load extension cogs.reddit -2024-11-30 00:02:19,900 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-30 00:02:19,901 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. -2024-11-30 00:02:19,901 - IndieGOBot - ERROR - Traceback: -2024-11-30 00:02:19,902 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup - await bot.add_cog(Reddit(bot)) - ^^^^^^^^^^^ - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ - self.reddit = praw.Reddit( - ^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped - return func(**dict(zip(_old_args, args)), **kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ - raise MissingRequiredAttributeException( -praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -2024-11-30 00:02:19,902 - IndieGOBot - INFO - Syncing command tree... -2024-11-30 00:02:20,587 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 -2024-11-30 00:02:20,588 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). -2024-11-30 00:02:20,588 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] -2024-11-30 00:02:20,589 - IndieGOBot - INFO - Command tree synced successfully -2024-11-30 00:02:21,009 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ -2024-11-30 00:02:21,011 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-tbgd",{"micros":0.0}]']}} -2024-11-30 00:02:21,014 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. -2024-11-30 00:02:21,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 00:02:21,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '75fe96230c08e696ce1a6791ccd23a9f', 'resume_gateway_url': 'wss://gateway-us-east1-b.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-b-tbgd",{"micros":162682,"calls":["id_created",{"micros":1056,"calls":[]},"session_lookup_time",{"micros":1047,"calls":[]},"session_lookup_finished",{"micros":18,"calls":[]},"discord-sessions-prd-1-133",{"micros":160307,"calls":["start_session",{"micros":156771,"calls":["discord-api-rpc-6cf69f8f4b-lf6pb",{"micros":150477,"calls":["get_user",{"micros":10340},"get_guilds",{"micros":9971},"send_scheduled_deletion_message",{"micros":8},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":8}]}]},"starting_guild_connect",{"micros":39,"calls":[]},"presence_started",{"micros":3031,"calls":[]},"guilds_started",{"micros":132,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":278,"calls":[]},"connect_finished",{"micros":284,"calls":[]},"build_ready",{"micros":20,"calls":[]},"clean_ready",{"micros":0,"calls":[]},"optimize_ready",{"micros":27,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} -2024-11-30 00:02:21,493 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:21,494 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 75fe96230c08e696ce1a6791ccd23a9f). -2024-11-30 00:02:21,494 - discord.client - DEBUG - Dispatching event connect -2024-11-30 00:02:21,524 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:21,530 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:21,589 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:21,624 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:21,637 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:21,656 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:21,672 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:21,873 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': 'ee8e641670f7c45e79c3926ac8c3f128', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:02:21,873 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:21,874 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. -2024-11-30 00:02:22,359 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 10, 'op': 0, 'd': {'nonce': '49ead65563277e023f65a97b9d48380d', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:02:22,359 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:22,360 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. -2024-11-30 00:02:23,374 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:23,379 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:02:23,562 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:23,573 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:02:23,770 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:23,778 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:02:23,984 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:23,990 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:02:24,158 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:24,167 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:02:24,186 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:24,188 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. -2024-11-30 00:02:24,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': '70f53177c580370a6ed01aeccda07fde', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:02:24,188 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:24,189 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. -2024-11-30 00:02:24,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': '82e57ef85d54e5a19f2a9a85f85f7eb2', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:02:24,189 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:24,189 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. -2024-11-30 00:02:24,189 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:02:24,190 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:02:24,190 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:02:24,190 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:02:24,190 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:02:24,354 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': '44f25936e021142c4b27c067542485e8', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:02:24,356 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:24,356 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. -2024-11-30 00:02:24,357 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:02:24,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '775cd3ee1a74e2e97df5578343caf8ec', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:02:24,864 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:24,864 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. -2024-11-30 00:02:24,864 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:02:24,865 - discord.client - DEBUG - Dispatching event ready -2024-11-30 00:02:24,865 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! -2024-11-30 00:02:24,865 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status -2024-11-30 00:02:26,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 21, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:46:15.219000+00:00', 'pinned': False, 'nonce': '1312124025736003584', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127504483356705', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:02:26,266 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:26,266 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:02:26,266 - discord.client - DEBUG - Dispatching event command -2024-11-30 00:02:26,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:46:15.742000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127506677108839', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:02:26,733 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:02:26,734 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:02:26,748 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-30 00:02:26,749 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). -2024-11-30 00:02:26,750 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:46:15.742000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312127506677108839', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-30 00:02:26,750 - discord.client - DEBUG - Dispatching event command_completion -2024-11-30 00:05:40,580 - discord.client - DEBUG - on_error has successfully been registered as an event -2024-11-30 00:05:40,580 - asyncio - DEBUG - Using proactor: IocpProactor -2024-11-30 00:05:40,582 - IndieGOBot - INFO - Starting bot... -2024-11-30 00:05:40,582 - discord.client - INFO - logging in using static token -2024-11-30 00:05:41,022 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 -2024-11-30 00:05:41,022 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). -2024-11-30 00:05:41,022 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} -2024-11-30 00:05:41,653 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 -2024-11-30 00:05:41,653 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). -2024-11-30 00:05:41,653 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Community', 'fun', 'Moderation', 'productivity', 'Programming'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} -2024-11-30 00:05:41,653 - IndieGOBot - INFO - Starting bot setup... -2024-11-30 00:05:41,654 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general -2024-11-30 00:05:41,656 - IndieGOBot - INFO - Successfully loaded extension: cogs.general -2024-11-30 00:05:41,656 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation -2024-11-30 00:05:41,657 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation -2024-11-30 00:05:41,657 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun -2024-11-30 00:05:41,659 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun -2024-11-30 00:05:41,659 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin -2024-11-30 00:05:41,660 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin -2024-11-30 00:05:41,660 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets -2024-11-30 00:05:41,661 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets -2024-11-30 00:05:41,661 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging -2024-11-30 00:05:41,663 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging -2024-11-30 00:05:41,663 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant -2024-11-30 00:05:43,923 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False -2024-11-30 00:05:43,923 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' -2024-11-30 00:05:44,241 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant -2024-11-30 00:05:44,241 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help -2024-11-30 00:05:47,428 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help -2024-11-30 00:05:47,428 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help -2024-11-30 00:05:47,438 - IndieGOBot - ERROR - Failed to load extension cogs.help -2024-11-30 00:05:47,438 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-30 00:05:47,438 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. -2024-11-30 00:05:47,438 - IndieGOBot - ERROR - Traceback: -2024-11-30 00:05:47,440 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 183, in setup - await bot.add_cog(Help(bot)) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog - cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject - raise e - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject - bot.add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command - super().add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command - raise CommandRegistrationError(command.name) -discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. - -2024-11-30 00:05:47,440 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base -2024-11-30 00:05:47,441 - IndieGOBot - INFO - Successfully loaded extension: cogs.base -2024-11-30 00:05:47,441 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors -2024-11-30 00:05:47,442 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors -2024-11-30 00:05:47,442 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod -2024-11-30 00:05:47,442 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod -2024-11-30 00:05:47,442 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction -2024-11-30 00:05:47,445 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction -2024-11-30 00:05:47,445 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel -2024-11-30 00:05:47,446 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel -2024-11-30 00:05:47,446 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr -2024-11-30 00:05:47,450 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr -2024-11-30 00:05:47,450 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit -2024-11-30 00:05:47,521 - IndieGOBot - ERROR - Failed to load extension cogs.reddit -2024-11-30 00:05:47,522 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-30 00:05:47,522 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. -2024-11-30 00:05:47,522 - IndieGOBot - ERROR - Traceback: -2024-11-30 00:05:47,524 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup - await bot.add_cog(Reddit(bot)) - ^^^^^^^^^^^ - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ - self.reddit = praw.Reddit( - ^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped - return func(**dict(zip(_old_args, args)), **kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ - raise MissingRequiredAttributeException( -praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -2024-11-30 00:05:47,524 - IndieGOBot - INFO - Syncing command tree... -2024-11-30 00:05:48,046 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 -2024-11-30 00:05:48,046 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). -2024-11-30 00:05:48,046 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] -2024-11-30 00:05:48,047 - IndieGOBot - INFO - Command tree synced successfully -2024-11-30 00:05:48,448 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ -2024-11-30 00:05:48,449 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-c-7k1t",{"micros":0.0}]']}} -2024-11-30 00:05:48,450 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. -2024-11-30 00:05:48,763 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 00:05:48,826 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '0dfe56f4c4a885adaa528c87e297e7ef', 'resume_gateway_url': 'wss://gateway-us-east1-c.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-c-7k1t",{"micros":60696,"calls":["id_created",{"micros":955,"calls":[]},"session_lookup_time",{"micros":980,"calls":[]},"session_lookup_finished",{"micros":17,"calls":[]},"discord-sessions-prd-1-290",{"micros":58293,"calls":["start_session",{"micros":34243,"calls":["discord-api-rpc-6cf69f8f4b-f79qm",{"micros":30521,"calls":["get_user",{"micros":4807},"get_guilds",{"micros":2993},"send_scheduled_deletion_message",{"micros":6},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":6}]}]},"starting_guild_connect",{"micros":45,"calls":[]},"presence_started",{"micros":13748,"calls":[]},"guilds_started",{"micros":183,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":10044,"calls":[]},"connect_finished",{"micros":10050,"calls":[]},"build_ready",{"micros":21,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":0,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} -2024-11-30 00:05:48,827 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:48,828 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 0dfe56f4c4a885adaa528c87e297e7ef). -2024-11-30 00:05:48,828 - discord.client - DEBUG - Dispatching event connect -2024-11-30 00:05:48,834 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:48,840 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:48,902 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:48,947 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:49,057 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:49,241 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:49,265 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:49,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '479429bbd40eb58c1c54949ca0ef1d11', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:05:49,267 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:49,267 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. -2024-11-30 00:05:49,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 10, 'op': 0, 'd': {'nonce': '8eac38b9a7cae184d7badebe1a9195df', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:05:49,664 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:49,664 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. -2024-11-30 00:05:50,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 11, 'op': 0, 'd': {'nonce': 'd372669fdd6a6666531e45a0c2e4a2f1', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:05:50,154 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:50,154 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. -2024-11-30 00:05:50,673 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 12, 'op': 0, 'd': {'nonce': '790e076eb4fd75cb836f511ce9a6cca1', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:05:50,673 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:50,673 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. -2024-11-30 00:05:51,154 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 13, 'op': 0, 'd': {'nonce': '9ff4bcbc0ea4e0d9257f0f0075106549', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:05:51,155 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:51,156 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. -2024-11-30 00:05:51,276 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:05:51,276 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:05:51,276 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:05:51,276 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:05:51,277 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:05:52,304 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:52,309 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:05:52,515 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:52,522 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:05:52,715 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:52,726 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:05:52,948 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:52,953 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:05:53,135 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:53,143 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:05:53,173 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:53,175 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. -2024-11-30 00:05:53,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': 'fb522439412222c74fe3da705b7603fb', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:05:53,176 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:05:53,178 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. -2024-11-30 00:05:53,178 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:05:53,179 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:05:53,179 - discord.client - DEBUG - Dispatching event ready -2024-11-30 00:05:53,179 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! -2024-11-30 00:05:53,180 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status -2024-11-30 00:06:26,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 21, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:50:15.031000+00:00', 'pinned': False, 'nonce': '1312125030859014144', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312128510327918602', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:06:26,019 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:06:26,019 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:06:26,020 - discord.client - DEBUG - Dispatching event command -2024-11-30 00:06:26,598 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:50:15.617000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312128512785776650', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:06:26,598 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:06:26,599 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:06:26,639 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-30 00:06:26,639 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). -2024-11-30 00:06:26,639 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:50:15.617000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312128512785776650', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-30 00:06:26,640 - discord.client - DEBUG - Dispatching event command_completion -2024-11-30 00:06:29,714 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 22. -2024-11-30 00:06:30,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 00:07:10,971 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 22. -2024-11-30 00:07:11,292 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 00:07:38,282 - discord.client - DEBUG - on_error has successfully been registered as an event -2024-11-30 00:07:38,283 - asyncio - DEBUG - Using proactor: IocpProactor -2024-11-30 00:07:38,285 - IndieGOBot - INFO - Starting bot... -2024-11-30 00:07:38,285 - discord.client - INFO - logging in using static token -2024-11-30 00:07:38,764 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 -2024-11-30 00:07:38,764 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). -2024-11-30 00:07:38,764 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} -2024-11-30 00:07:39,298 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 -2024-11-30 00:07:39,298 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). -2024-11-30 00:07:39,298 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['bot', 'applications.commands'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['bot', 'applications.commands'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Community', 'Programming', 'productivity', 'Moderation', 'fun'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} -2024-11-30 00:07:39,299 - IndieGOBot - INFO - Starting bot setup... -2024-11-30 00:07:39,299 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general -2024-11-30 00:07:39,301 - IndieGOBot - INFO - Successfully loaded extension: cogs.general -2024-11-30 00:07:39,301 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation -2024-11-30 00:07:39,303 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation -2024-11-30 00:07:39,303 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun -2024-11-30 00:07:39,304 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun -2024-11-30 00:07:39,305 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin -2024-11-30 00:07:39,306 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin -2024-11-30 00:07:39,306 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets -2024-11-30 00:07:39,307 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets -2024-11-30 00:07:39,307 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging -2024-11-30 00:07:39,308 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging -2024-11-30 00:07:39,308 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant -2024-11-30 00:07:41,345 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False -2024-11-30 00:07:41,346 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' -2024-11-30 00:07:41,641 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant -2024-11-30 00:07:41,641 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help -2024-11-30 00:07:44,666 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help -2024-11-30 00:07:44,667 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help -2024-11-30 00:07:44,675 - IndieGOBot - ERROR - Failed to load extension cogs.help -2024-11-30 00:07:44,675 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-30 00:07:44,675 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. -2024-11-30 00:07:44,676 - IndieGOBot - ERROR - Traceback: -2024-11-30 00:07:44,677 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup - await bot.add_cog(Help(bot)) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog - cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject - raise e - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject - bot.add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command - super().add_command(command) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command - raise CommandRegistrationError(command.name) -discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. - -2024-11-30 00:07:44,678 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base -2024-11-30 00:07:44,679 - IndieGOBot - INFO - Successfully loaded extension: cogs.base -2024-11-30 00:07:44,680 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors -2024-11-30 00:07:44,680 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors -2024-11-30 00:07:44,681 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod -2024-11-30 00:07:44,681 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod -2024-11-30 00:07:44,682 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction -2024-11-30 00:07:44,683 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction -2024-11-30 00:07:44,683 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel -2024-11-30 00:07:44,684 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel -2024-11-30 00:07:44,684 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr -2024-11-30 00:07:44,687 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr -2024-11-30 00:07:44,687 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit -2024-11-30 00:07:44,754 - IndieGOBot - ERROR - Failed to load extension cogs.reddit -2024-11-30 00:07:44,755 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-30 00:07:44,755 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. -2024-11-30 00:07:44,755 - IndieGOBot - ERROR - Traceback: -2024-11-30 00:07:44,756 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup - await bot.add_cog(Reddit(bot)) - ^^^^^^^^^^^ - File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ - self.reddit = praw.Reddit( - ^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped - return func(**dict(zip(_old_args, args)), **kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ - raise MissingRequiredAttributeException( -praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -2024-11-30 00:07:44,757 - IndieGOBot - INFO - Syncing command tree... -2024-11-30 00:07:45,265 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 -2024-11-30 00:07:45,266 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). -2024-11-30 00:07:45,266 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] -2024-11-30 00:07:45,267 - IndieGOBot - INFO - Command tree synced successfully -2024-11-30 00:07:45,699 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ -2024-11-30 00:07:45,702 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-47g4",{"micros":0.0}]']}} -2024-11-30 00:07:45,703 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. -2024-11-30 00:07:46,026 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 00:07:46,067 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': 'e02496055108bedcb1dd92dfa1eb8709', 'resume_gateway_url': 'wss://gateway-us-east1-d.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-d-47g4",{"micros":49257,"calls":["id_created",{"micros":969,"calls":[]},"session_lookup_time",{"micros":483,"calls":[]},"session_lookup_finished",{"micros":18,"calls":[]},"discord-sessions-prd-1-177",{"micros":46766,"calls":["start_session",{"micros":33754,"calls":["discord-api-rpc-6cf69f8f4b-rrn29",{"micros":30127,"calls":["get_user",{"micros":4488},"get_guilds",{"micros":2974},"send_scheduled_deletion_message",{"micros":7},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":8}]}]},"starting_guild_connect",{"micros":46,"calls":[]},"presence_started",{"micros":11808,"calls":[]},"guilds_started",{"micros":140,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":967,"calls":[]},"connect_finished",{"micros":974,"calls":[]},"build_ready",{"micros":20,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":21,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} -2024-11-30 00:07:46,067 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:46,069 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: e02496055108bedcb1dd92dfa1eb8709). -2024-11-30 00:07:46,069 - discord.client - DEBUG - Dispatching event connect -2024-11-30 00:07:46,077 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:46,436 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:46,468 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:46,590 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:46,597 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:46,622 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:46,691 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:46,692 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '205cb4d1a38997d6a6931ff7a7b7b9bd', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:07:46,692 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:46,692 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. -2024-11-30 00:07:47,565 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:47,571 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:07:47,797 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:47,803 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:07:47,982 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:47,991 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:07:48,154 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:48,162 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:07:48,368 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:48,377 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 00:07:48,398 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:48,399 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. -2024-11-30 00:07:48,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 16, 'op': 0, 'd': {'nonce': '33a73b757577980ceacab36946b403c5', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:07:48,400 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:48,401 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. -2024-11-30 00:07:48,401 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': '5cf018f8b5309451f2602e0e69020e4a', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:07:48,401 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:48,402 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. -2024-11-30 00:07:48,435 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': 'c240f90480c0ca277f775de9d3172f01', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:07:48,436 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:48,436 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. -2024-11-30 00:07:48,701 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:07:48,701 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:07:48,701 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:07:48,701 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:07:48,701 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:07:48,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': 'd190773b26152c264255f0d7eeab427e', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:07:48,906 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:48,906 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. -2024-11-30 00:07:48,907 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:07:49,412 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': 'd91a3f768c2c090b15bddaf5f047cdc4', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 00:07:49,412 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:49,412 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. -2024-11-30 00:07:49,412 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 00:07:49,412 - discord.client - DEBUG - Dispatching event ready -2024-11-30 00:07:49,413 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! -2024-11-30 00:07:49,413 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status -2024-11-30 00:07:55,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 21, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732906304, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-11-30 00:07:55,517 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:55,517 - discord.client - DEBUG - Dispatching event typing -2024-11-30 00:07:55,517 - discord.client - DEBUG - Dispatching event raw_typing -2024-11-30 00:07:55,775 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:51:44.763000+00:00', 'pinned': False, 'nonce': '1312125407213912064', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312128886691205160', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:07:55,776 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:55,776 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:07:55,776 - discord.client - DEBUG - Dispatching event command -2024-11-30 00:07:56,202 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 23, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:51:45.239000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312128888687558686', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-11-30 00:07:56,203 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 00:07:56,203 - discord.client - DEBUG - Dispatching event message -2024-11-30 00:07:56,209 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-30 00:07:56,209 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). -2024-11-30 00:07:56,209 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:51:45.239000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312128888687558686', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-30 00:07:56,209 - discord.client - DEBUG - Dispatching event command_completion -2024-11-30 13:33:27,355 - discord.client - DEBUG - on_error has successfully been registered as an event -2024-11-30 13:33:27,355 - asyncio - DEBUG - Using proactor: IocpProactor -2024-11-30 13:33:27,355 - IndieGOBot - INFO - Starting bot... -2024-11-30 13:33:27,355 - discord.client - INFO - logging in using static token -2024-11-30 13:33:27,894 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 -2024-11-30 13:33:27,894 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). -2024-11-30 13:33:27,894 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} -2024-11-30 13:33:28,554 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 -2024-11-30 13:33:28,554 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). -2024-11-30 13:33:28,556 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Moderation', 'productivity', 'Programming', 'Community', 'fun'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} -2024-11-30 13:33:28,556 - IndieGOBot - INFO - Starting bot setup... -2024-11-30 13:33:28,556 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general -2024-11-30 13:33:28,566 - IndieGOBot - INFO - Successfully loaded extension: cogs.general -2024-11-30 13:33:28,566 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation -2024-11-30 13:33:28,589 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation -2024-11-30 13:33:28,589 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun -2024-11-30 13:33:28,608 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun -2024-11-30 13:33:28,608 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin -2024-11-30 13:33:28,624 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin -2024-11-30 13:33:28,624 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets -2024-11-30 13:33:28,640 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets -2024-11-30 13:33:28,640 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging -2024-11-30 13:33:28,655 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging -2024-11-30 13:33:28,655 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant -2024-11-30 13:33:43,141 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant -2024-11-30 13:33:43,141 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help -2024-11-30 13:34:10,333 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help -2024-11-30 13:34:10,333 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help -2024-11-30 13:34:10,351 - IndieGOBot - ERROR - Failed to load extension cogs.help -2024-11-30 13:34:10,351 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-30 13:34:10,352 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. -2024-11-30 13:34:10,352 - IndieGOBot - ERROR - Traceback: -2024-11-30 13:34:10,384 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\help.py", line 221, in setup - await bot.add_cog(Help(bot)) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 799, in add_cog - cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\cog.py", line 725, in _inject - raise e - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\cog.py", line 716, in _inject - bot.add_command(command) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 253, in add_command - super().add_command(command) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\core.py", line 1356, in add_command - raise CommandRegistrationError(command.name) -discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\mante\OneDrive\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. - -2024-11-30 13:34:10,384 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base -2024-11-30 13:34:10,407 - IndieGOBot - INFO - Successfully loaded extension: cogs.base -2024-11-30 13:34:10,407 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors -2024-11-30 13:34:10,420 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors -2024-11-30 13:34:10,420 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod -2024-11-30 13:34:10,438 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod -2024-11-30 13:34:10,438 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction -2024-11-30 13:34:10,451 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction -2024-11-30 13:34:10,451 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel -2024-11-30 13:34:10,467 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel -2024-11-30 13:34:10,467 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr -2024-11-30 13:34:10,494 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr -2024-11-30 13:34:10,494 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit -2024-11-30 13:34:11,479 - IndieGOBot - ERROR - Failed to load extension cogs.reddit -2024-11-30 13:34:11,479 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-11-30 13:34:11,481 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. -2024-11-30 13:34:11,481 - IndieGOBot - ERROR - Traceback: -2024-11-30 13:34:11,505 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\reddit.py", line 29, in setup - await bot.add_cog(Reddit(bot)) - ^^^^^^^^^^^ - File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ - self.reddit = praw.Reddit( - ^^^^^^^^^^^^ - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\praw\util\deprecate_args.py", line 46, in wrapped - return func(**dict(zip(_old_args, args)), **kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\praw\reddit.py", line 259, in __init__ - raise MissingRequiredAttributeException( -praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\mante\OneDrive\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -2024-11-30 13:34:11,505 - IndieGOBot - INFO - Syncing command tree... -2024-11-30 13:34:12,130 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 -2024-11-30 13:34:12,132 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). -2024-11-30 13:34:12,132 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] -2024-11-30 13:34:12,134 - IndieGOBot - INFO - Command tree synced successfully -2024-11-30 13:34:12,588 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ -2024-11-30 13:34:12,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-jkv0",{"micros":0.0}]']}} -2024-11-30 13:34:12,590 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. -2024-11-30 13:34:12,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:34:13,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '954f72c90c0683473eae22136d5d8fb0', 'resume_gateway_url': 'wss://gateway-us-east1-b.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-b-jkv0",{"micros":118939,"calls":["id_created",{"micros":563,"calls":[]},"session_lookup_time",{"micros":310,"calls":[]},"session_lookup_finished",{"micros":19,"calls":[]},"discord-sessions-prd-1-199",{"micros":117679,"calls":["start_session",{"micros":85578,"calls":["discord-api-rpc-6cf69f8f4b-g46pw",{"micros":81038,"calls":["get_user",{"micros":52083},"get_guilds",{"micros":3773},"send_scheduled_deletion_message",{"micros":6},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":8}]}]},"starting_guild_connect",{"micros":63,"calls":[]},"presence_started",{"micros":8102,"calls":[]},"guilds_started",{"micros":139,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":23753,"calls":[]},"connect_finished",{"micros":23759,"calls":[]},"build_ready",{"micros":34,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":0,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} -2024-11-30 13:34:13,030 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:13,030 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 954f72c90c0683473eae22136d5d8fb0). -2024-11-30 13:34:13,030 - discord.client - DEBUG - Dispatching event connect -2024-11-30 13:34:13,395 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:13,427 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:13,443 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:13,443 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:13,522 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:13,586 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:13,599 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:14,336 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:14,351 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 13:34:14,541 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:14,541 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 13:34:14,700 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:14,716 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 13:34:14,858 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:14,874 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 13:34:15,032 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:15,045 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-11-30 13:34:15,063 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:15,063 - discord.state - DEBUG - Processed a chunk for 142 members in guild ID 922005348670406667. -2024-11-30 13:34:15,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 15, 'op': 0, 'd': {'nonce': '58f93fa6388316641885112bde1e3a42', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': None, 'identity_guild_id': '1177040176531378256', 'identity_enabled': None, 'badge': None}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '6c7020c8ad8970495e943afffb350776'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 13:34:15,063 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:15,063 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. -2024-11-30 13:34:15,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 16, 'op': 0, 'd': {'nonce': '66efd4b98b96724a2da67867c7acc8fc', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 13:34:15,063 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:15,063 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. -2024-11-30 13:34:15,255 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': '831ce572353168e1006440a57d85b171', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 13:34:15,255 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:15,255 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. -2024-11-30 13:34:15,620 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 13:34:15,620 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 13:34:15,620 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 13:34:15,620 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 13:34:15,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': '270d4d7a572f9195b6eea180f1bc4375', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 13:34:15,764 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:15,764 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. -2024-11-30 13:34:15,764 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 13:34:16,255 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': '3f05ab44dfd82441ce693c06a86c3e9c', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 13:34:16,255 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:16,255 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. -2024-11-30 13:34:16,255 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 13:34:16,763 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '18850957ade88976dea6f0b125c32cbb', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} -2024-11-30 13:34:16,763 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:34:16,763 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. -2024-11-30 13:34:16,763 - discord.client - DEBUG - Dispatching event guild_available -2024-11-30 13:34:16,763 - discord.client - DEBUG - Dispatching event ready -2024-11-30 13:34:16,763 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! -2024-11-30 13:34:16,763 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status -2024-11-30 13:34:53,840 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:34:54,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:35:35,104 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:35:35,431 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:36:16,364 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:36:16,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:36:57,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:36:57,948 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:37:38,879 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:37:39,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:38:20,134 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:38:20,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:39:01,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:39:01,706 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:39:42,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:39:42,993 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:40:23,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:40:24,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:41:05,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:41:05,503 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:41:46,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:41:46,740 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:42:27,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:42:28,001 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:43:08,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:43:09,232 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:43:50,173 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:43:50,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:44:31,429 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:44:31,759 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:45:12,693 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:45:13,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:45:53,948 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:45:54,279 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:46:35,198 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:46:35,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:47:16,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:47:16,781 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:47:57,712 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:47:58,047 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:48:38,977 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:48:39,311 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:49:20,244 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:49:20,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:50:01,505 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:50:01,843 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:50:42,766 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:50:43,088 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:51:24,017 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:51:24,334 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:52:05,282 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:52:05,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:52:46,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:52:46,870 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:53:27,800 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:53:28,116 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:54:09,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:54:09,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:54:50,326 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:54:50,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:55:31,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:55:31,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:56:12,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:56:13,152 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:56:54,099 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:56:54,415 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:57:35,363 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:57:35,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:58:16,615 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. -2024-11-30 13:58:16,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:58:49,995 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 21, 'op': 0, 'd': {'user': {'username': 'realsamaira.', 'public_flags': 128, 'id': '1087484384870928394', 'global_name': 'Tessa', 'display_name': 'Tessa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'bddea3ea5494a56da5379b9e7bdc4d91'}, 'roles': ['1166279735983230976', '1170543488555810816', '1079820398490820708', '1088037634695241768', '1168311263412113448', '1062322383303749672', '1062249717427355698', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-17T11:52:05.277000+00:00', 'guild_id': '922005348670406667', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 13:58:49,995 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:58:49,995 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 13:58:49,995 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 13:58:55,371 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T13:58:55.378000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312417583215153213', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T13:58:50.093005+00:00', 'thumbnail': {'width': 524, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/XhqBS03T2Dm4UdKhC_sC6sI29R2YapIf729vF7I6LvY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png', 'height': 524, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/XhqBS03T2Dm4UdKhC_sC6sI29R2YapIf729vF7I6LvY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 13:58:55,371 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:58:55,371 - discord.client - DEBUG - Dispatching event message -2024-11-30 13:58:55,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 23, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T13:58:55.378000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312417583215153213', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T13:58:50.093000+00:00', 'thumbnail': {'width': 524, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/XhqBS03T2Dm4UdKhC_sC6sI29R2YapIf729vF7I6LvY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png', 'height': 524, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/XhqBS03T2Dm4UdKhC_sC6sI29R2YapIf729vF7I6LvY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 13:58:55,439 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 13:58:55,439 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 13:58:55,439 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 13:58:57,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. -2024-11-30 13:58:58,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 13:59:39,122 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. -2024-11-30 13:59:39,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:00:20,375 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. -2024-11-30 14:00:20,709 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:01:01,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. -2024-11-30 14:01:01,950 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:01:42,891 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. -2024-11-30 14:01:43,223 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:02:24,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. -2024-11-30 14:02:24,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:03:05,406 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. -2024-11-30 14:03:05,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:03:23,663 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 24, 'op': 0, 'd': {'user': {'username': 'realsamaira.', 'public_flags': 128, 'id': '1087484384870928394', 'global_name': 'Tessa', 'display_name': 'Tessa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '746a37d3681edb298f4b01d69bc7f91d'}, 'roles': ['1166279735983230976', '1170543488555810816', '1079820398490820708', '1088037634695241768', '1168311263412113448', '1062322383303749672', '1062249717427355698', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-17T11:52:05.277000+00:00', 'guild_id': '922005348670406667', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 14:03:23,663 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 14:03:23,663 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 14:03:23,663 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 14:03:25,310 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 25, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:03:25.263000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312418715194621965', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:03:23.755652+00:00', 'thumbnail': {'width': 735, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/o8lEdkKbikyIVNxugFDWCzh69Di3BLBURNdUh_U0Si8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png', 'height': 735, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/o8lEdkKbikyIVNxugFDWCzh69Di3BLBURNdUh_U0Si8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 14:03:25,310 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 14:03:25,310 - discord.client - DEBUG - Dispatching event message -2024-11-30 14:03:25,389 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 26, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:03:25.263000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312418715194621965', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:03:23.755000+00:00', 'thumbnail': {'width': 735, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/o8lEdkKbikyIVNxugFDWCzh69Di3BLBURNdUh_U0Si8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png', 'height': 735, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/o8lEdkKbikyIVNxugFDWCzh69Di3BLBURNdUh_U0Si8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 14:03:25,393 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 14:03:25,393 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 14:03:25,393 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 14:03:46,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. -2024-11-30 14:03:46,996 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:04:27,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. -2024-11-30 14:04:28,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:05:09,192 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. -2024-11-30 14:05:09,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:05:50,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. -2024-11-30 14:05:50,796 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:06:31,703 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. -2024-11-30 14:06:32,020 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:07:12,964 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. -2024-11-30 14:07:13,282 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:07:54,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. -2024-11-30 14:07:54,536 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:08:35,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. -2024-11-30 14:08:35,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:09:16,740 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. -2024-11-30 14:09:17,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:09:44,477 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 27, 'op': 0, 'd': {'user': {'username': 'realsamaira.', 'public_flags': 128, 'id': '1087484384870928394', 'global_name': 'Tessa', 'display_name': 'Tessa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5e9d176173c357d39609ed2ccc0430b5'}, 'roles': ['1166279735983230976', '1170543488555810816', '1079820398490820708', '1088037634695241768', '1168311263412113448', '1062322383303749672', '1062249717427355698', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-17T11:52:05.277000+00:00', 'guild_id': '922005348670406667', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 14:09:44,477 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 14:09:44,479 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 14:09:44,479 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 14:09:46,070 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 28, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:09:46.094000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312420312515743805', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:09:44.599821+00:00', 'thumbnail': {'width': 736, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/O-5vUxhDcTSK0gsipICY1GdX03GxFMWEYNG5xEjGxFs/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png', 'height': 736, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/O-5vUxhDcTSK0gsipICY1GdX03GxFMWEYNG5xEjGxFs/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 14:09:46,072 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 14:09:46,072 - discord.client - DEBUG - Dispatching event message -2024-11-30 14:09:46,143 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 29, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:09:46.094000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312420312515743805', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:09:44.599000+00:00', 'thumbnail': {'width': 736, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/O-5vUxhDcTSK0gsipICY1GdX03GxFMWEYNG5xEjGxFs/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png', 'height': 736, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/O-5vUxhDcTSK0gsipICY1GdX03GxFMWEYNG5xEjGxFs/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 14:09:46,143 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 14:09:46,146 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 14:09:46,146 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 14:09:58,005 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:09:58,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:10:39,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:10:39,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:11:20,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:11:20,870 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:12:01,778 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:12:02,099 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:12:43,031 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:12:43,394 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:13:24,294 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:13:24,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:14:05,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:14:05,883 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:14:46,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:14:47,132 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:15:28,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:15:28,395 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:16:09,332 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:16:09,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:16:50,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:16:50,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:17:31,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:17:32,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:18:13,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:18:13,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:18:54,370 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:18:54,695 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:19:35,622 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:19:35,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:20:16,886 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:20:17,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:20:58,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:20:58,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:21:39,407 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:21:39,724 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:22:20,658 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:22:20,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:23:01,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:23:02,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:23:43,179 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:23:43,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:24:24,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. -2024-11-30 14:24:24,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:24:47,311 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 30, 'op': 0, 'd': {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '58f02fae979f179fb8091ba440347122'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 14:24:47,311 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 14:24:47,311 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 14:24:47,311 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 14:25:05,709 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. -2024-11-30 14:25:06,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:25:46,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. -2024-11-30 14:25:47,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:26:28,229 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. -2024-11-30 14:26:28,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:27:09,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. -2024-11-30 14:27:09,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:27:50,746 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. -2024-11-30 14:27:51,078 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:28:32,007 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. -2024-11-30 14:28:32,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:29:13,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. -2024-11-30 14:29:13,595 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:29:54,525 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. -2024-11-30 14:29:54,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:30:12,339 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 31, 'op': 0, 'd': {'user': {'username': 'roronoa_doraemon', 'public_flags': 64, 'id': '852888084098056242', 'global_name': 'v', 'display_name': 'v', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '2a5bfaea2ea2594244bff5aaab1ee81c'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 14:30:12,339 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 14:30:12,339 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 14:30:12,339 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 14:30:15,241 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 32, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:30:15.347000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312425468376649811', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:30:12.491151+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/5UYFfW-n5ZmEtpVNbbu5_pDFhY6SlYPjm1EFrqehbUY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/5UYFfW-n5ZmEtpVNbbu5_pDFhY6SlYPjm1EFrqehbUY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 14:30:15,241 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 14:30:15,241 - discord.client - DEBUG - Dispatching event message -2024-11-30 14:30:15,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 33, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:30:15.347000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312425468376649811', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:30:12.491000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/5UYFfW-n5ZmEtpVNbbu5_pDFhY6SlYPjm1EFrqehbUY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/5UYFfW-n5ZmEtpVNbbu5_pDFhY6SlYPjm1EFrqehbUY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 14:30:15,321 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 14:30:15,321 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 14:30:15,321 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 14:30:35,789 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:30:36,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:31:17,046 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:31:17,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:31:58,302 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:31:58,626 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:32:39,565 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:32:39,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:33:20,827 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:33:21,150 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:34:02,092 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:34:02,415 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:34:43,346 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:34:43,670 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:35:24,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:35:24,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:36:05,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:36:06,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:36:47,105 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:36:47,427 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:37:28,366 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:37:28,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:38:09,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:38:09,958 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:38:50,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:38:51,214 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:39:32,139 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:39:32,468 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:40:13,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:40:13,712 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:40:54,655 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:40:54,993 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:41:35,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:41:36,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:42:17,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:42:17,507 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:42:58,438 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:42:58,760 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:43:39,764 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:43:40,096 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:44:21,016 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:44:21,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:45:02,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:45:02,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:45:43,528 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:45:43,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:46:24,789 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:46:25,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:47:06,050 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:47:06,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:47:47,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:47:47,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:48:28,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:48:28,886 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:49:09,818 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:49:10,140 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:49:51,069 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:49:51,408 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:50:32,333 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:50:32,657 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:51:13,594 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:51:13,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:51:54,845 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:51:55,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:52:36,096 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:52:36,435 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:53:17,349 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:53:17,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:53:58,612 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:53:58,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:54:39,865 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:54:40,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:55:21,119 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:55:21,458 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:56:02,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:56:02,712 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:56:43,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:56:43,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:57:24,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:57:25,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:58:06,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:58:06,490 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:58:47,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:58:47,763 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 14:59:28,693 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 14:59:29,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:00:09,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 15:00:10,287 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:00:51,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 15:00:51,543 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:01:32,481 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 15:01:32,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:02:13,732 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 15:02:14,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:02:54,985 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 15:02:55,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:03:36,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 15:03:36,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:04:17,501 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 15:04:17,824 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:04:58,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 15:04:59,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:05:40,031 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 15:05:40,362 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:06:21,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. -2024-11-30 15:06:21,621 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:06:47,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 34, 'op': 0, 'd': {'user': {'username': 'stalkedbycreeps', 'public_flags': 64, 'id': '813021090972041246', 'global_name': 'nightmare', 'display_name': 'nightmare', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1220513989729976411', 'expires_at': None, 'asset': 'a_a87e3efa4de2956331831681231ce63b'}, 'avatar': 'ab24b33ca7ce44e57d71bd2c419389e7'}, 'roles': ['1166279735983230976', '1170543488555810816', '1079820398490820708', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-20T18:15:53.437000+00:00', 'guild_id': '922005348670406667', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 15:06:47,888 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 15:06:47,888 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 15:06:47,888 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 15:07:02,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:07:02,868 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:07:43,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:07:44,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:08:25,062 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:08:25,389 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:09:06,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:09:06,670 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:09:47,583 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:09:47,910 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:10:28,840 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:10:29,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:11:10,097 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:11:10,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:11:51,354 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:11:51,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:12:32,612 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:12:32,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:13:13,873 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:13:14,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:13:55,126 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:13:55,448 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:14:36,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:14:36,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:15:17,655 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:15:17,990 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:15:58,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:15:59,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:16:40,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:16:40,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:17:21,434 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:17:21,768 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:18:02,691 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:18:03,014 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:18:43,944 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:18:44,576 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:19:25,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:19:25,543 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:20:06,474 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:20:06,798 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:20:47,730 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:20:48,068 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:21:28,986 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:21:29,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:22:10,251 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:22:10,598 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:22:51,515 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:22:51,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:23:32,769 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:23:33,108 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:24:14,026 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:24:14,348 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:24:55,287 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. -2024-11-30 15:24:55,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:25:13,125 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 35, 'op': 0, 'd': {'user': {'username': 'tejas01', 'public_flags': 64, 'id': '742431818233544747', 'global_name': '` Tejas', 'display_name': '` Tejas', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '9fe9a5bbbfc76155e1132104235547ce'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-02-21T16:03:14.352000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 15:25:13,125 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 15:25:13,125 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 15:25:13,133 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 15:25:36,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:25:36,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:26:17,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:26:18,133 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:26:59,062 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:26:59,385 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:27:40,316 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:27:40,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:28:21,575 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:28:21,898 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:29:02,838 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:29:03,161 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:29:44,098 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:29:44,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:30:25,357 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:30:25,689 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:31:06,615 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:31:06,953 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:31:47,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:31:48,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:32:29,129 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:32:29,467 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:33:10,395 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:33:10,751 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:33:51,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:33:51,995 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:34:32,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:34:33,251 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:35:14,174 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:35:14,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:35:55,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:35:55,771 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:36:36,695 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:36:37,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:37:17,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:37:18,262 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:37:59,223 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:37:59,547 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:38:40,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:38:40,796 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:39:21,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:39:22,040 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:40:02,999 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:40:03,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:40:44,251 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:40:44,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:41:25,505 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:41:25,828 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:42:06,756 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:42:07,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:42:48,022 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:42:48,330 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:43:29,285 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:43:29,592 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:44:10,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:44:10,862 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:44:51,803 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:44:52,118 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:45:33,058 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. -2024-11-30 15:45:33,383 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:45:41,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 36, 'op': 0, 'd': {'user': {'username': 'heminx', 'public_flags': 0, 'id': '808170668608061461', 'global_name': 'heminx', 'display_name': 'heminx', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '6638834687a34525e3dbec60a6ddf3d9'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-04-13T13:26:55.381000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 15:45:41,448 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 15:45:41,448 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 15:45:41,448 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 15:46:14,316 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:46:14,638 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:46:55,572 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:46:55,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:47:36,824 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:47:37,146 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:48:18,081 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:48:18,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:48:59,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:48:59,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:49:40,595 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:49:40,902 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:50:21,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:50:22,169 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:51:03,108 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:51:03,430 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:51:44,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:51:44,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:52:25,629 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:52:25,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:53:06,893 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:53:07,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:53:48,160 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:53:48,483 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:54:29,410 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:54:29,732 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:55:10,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:55:10,969 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:55:51,925 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:55:52,255 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:56:33,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:56:33,488 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:57:14,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:57:14,765 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:57:55,702 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:57:56,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:58:36,967 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:58:37,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:59:18,222 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:59:18,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 15:59:59,478 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 15:59:59,786 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:00:40,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:00:41,051 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:01:21,997 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:01:22,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:02:03,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:02:03,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:02:44,530 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:02:44,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:03:25,793 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:03:26,108 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:04:07,045 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:04:07,353 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:04:48,296 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:04:48,601 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:05:29,558 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:05:29,884 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:06:10,810 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:06:11,137 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:06:52,065 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:06:52,371 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:07:33,328 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:07:33,633 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:08:14,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:08:14,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:08:55,837 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:08:56,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:09:37,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:09:37,425 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:10:18,352 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:10:18,678 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:10:59,611 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:10:59,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:11:40,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:11:41,186 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:12:22,122 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:12:22,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:13:03,375 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:13:03,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:13:44,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:13:44,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:14:25,893 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:14:26,215 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:15:07,159 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:15:07,467 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:15:48,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:15:48,745 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:16:29,686 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:16:29,992 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:17:10,938 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:17:11,244 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:17:52,190 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:17:52,497 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:18:33,446 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:18:33,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:19:14,700 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:19:15,006 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:19:55,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:19:56,293 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:20:37,231 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:20:37,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:21:18,490 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:21:18,820 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:21:59,752 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:22:00,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:22:41,012 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:22:41,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:23:22,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:23:22,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:24:03,525 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:24:03,851 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:24:44,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:24:45,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:25:26,051 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:25:26,383 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:26:07,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:26:07,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:26:48,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:26:48,869 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:27:29,816 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-11-30 16:27:30,141 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:28:00,276 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-11-30 16:28:00,276 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-11-30 16:28:00,657 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-11-30 16:28:00,657 - discord.client - DEBUG - Dispatching event disconnect -2024-11-30 16:28:01,139 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-11-30 16:28:01,139 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-b62v",{"micros":0.0}]']}} -2024-11-30 16:28:01,154 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-11-30 16:28:01,485 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:28:01,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 37, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-b62v",{"micros":2789,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":2042,"calls":[]},"session_lookup_finished",{"micros":17,"calls":[]},"discord-sessions-prd-1-199",{"micros":48}]}]']}} -2024-11-30 16:28:01,491 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:28:01,491 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-11-30 16:28:01,504 - discord.client - DEBUG - Dispatching event resumed -2024-11-30 16:28:42,411 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. -2024-11-30 16:28:42,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:29:23,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. -2024-11-30 16:29:23,972 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:30:04,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. -2024-11-30 16:30:05,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:30:46,176 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. -2024-11-30 16:30:46,483 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:31:27,441 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. -2024-11-30 16:31:27,748 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:32:08,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. -2024-11-30 16:32:09,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:32:49,952 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. -2024-11-30 16:32:50,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:33:31,208 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. -2024-11-30 16:33:31,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:34:12,467 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. -2024-11-30 16:34:12,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:34:53,718 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. -2024-11-30 16:34:54,040 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:35:02,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 38, 'op': 0, 'd': {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'hazelcast2', 'display_name': 'hazelcast2', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9e1bcc1a10399b53289971f3f9e6b105'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 16:35:02,192 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:35:02,192 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 16:35:02,192 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 16:35:34,983 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 38. -2024-11-30 16:35:35,307 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:35:54,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 39, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 16:35:54,718 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:35:54,738 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 16:35:58,343 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 40, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 16:35:58,343 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:35:58,343 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 16:35:58,748 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:35:58,748 - discord.client - DEBUG - Dispatching event message -2024-11-30 16:35:58,844 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:35:58,844 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 16:35:58,844 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 16:36:16,241 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 42. -2024-11-30 16:36:16,567 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:36:57,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 42. -2024-11-30 16:36:57,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:37:38,755 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 42. -2024-11-30 16:37:39,072 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:38:20,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 42. -2024-11-30 16:38:20,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:38:27,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 43, 'op': 0, 'd': {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e3fc9f81235eab66f41bd1f30754e886'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 16:38:27,733 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:38:27,735 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 16:38:27,735 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 16:39:01,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. -2024-11-30 16:39:01,600 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:39:42,532 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. -2024-11-30 16:39:42,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:40:23,788 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. -2024-11-30 16:40:24,096 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:41:05,055 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. -2024-11-30 16:41:05,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:41:46,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. -2024-11-30 16:41:46,624 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:42:27,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. -2024-11-30 16:42:27,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:42:40,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 44, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 16:42:40,631 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:42:40,631 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 16:42:43,753 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:42:43,753 - discord.client - DEBUG - Dispatching event message -2024-11-30 16:42:43,865 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:42:43,865 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 16:42:43,865 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 16:43:08,828 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 46. -2024-11-30 16:43:09,136 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:43:50,081 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 46. -2024-11-30 16:43:50,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:44:31,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 46. -2024-11-30 16:44:31,643 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:44:58,885 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 47, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 16:44:58,885 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:44:58,885 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 16:45:12,594 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:45:12,912 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:45:53,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:45:54,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:46:35,112 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:46:35,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:47:16,376 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:47:16,700 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:47:57,630 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:47:57,937 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:48:38,886 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:48:39,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:49:20,149 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:49:20,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:50:01,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:50:01,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:50:42,665 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:50:42,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:51:23,921 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:51:24,260 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:52:05,178 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:52:05,507 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:52:46,436 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:52:46,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:53:27,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:53:28,024 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:54:08,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:54:09,279 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:54:50,222 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:54:50,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:55:31,478 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:55:31,800 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:56:12,734 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:56:13,039 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:56:53,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:56:54,311 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:57:35,240 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:57:35,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:58:16,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:58:16,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:58:57,754 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. -2024-11-30 16:58:58,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 16:59:04,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 48, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '2bee10eeace7a673ea73683be6cdfb22', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 16:59:04,217 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:59:04,217 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 16:59:08,864 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:59:08,864 - discord.client - DEBUG - Dispatching event message -2024-11-30 16:59:08,942 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 16:59:08,942 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 16:59:08,942 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 16:59:39,015 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 16:59:39,338 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:00:20,279 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:00:20,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:01:01,531 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:01:01,902 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:01:42,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:01:43,112 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:02:24,046 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:02:24,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:03:05,296 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:03:05,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:03:46,559 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:03:46,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:04:27,810 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:04:28,118 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:05:09,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:05:09,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:05:50,341 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:05:50,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:06:31,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:06:31,943 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:07:12,866 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:07:13,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:07:54,126 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:07:54,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:08:35,387 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:08:35,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:09:16,641 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:09:16,950 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:09:57,900 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:09:58,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:10:39,164 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:10:39,488 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:11:20,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:11:20,734 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:12:01,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. -2024-11-30 17:12:01,986 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:12:29,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 51, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 17:12:29,961 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:12:29,961 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:12:42,934 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 51. -2024-11-30 17:12:43,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:13:24,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 51. -2024-11-30 17:13:24,504 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:14:05,457 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 51. -2024-11-30 17:14:05,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:14:46,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 51. -2024-11-30 17:14:47,035 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:14:53,228 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-11-30 17:14:53,228 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-11-30 17:14:53,553 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-11-30 17:14:53,553 - discord.client - DEBUG - Dispatching event disconnect -2024-11-30 17:14:53,984 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-11-30 17:14:54,000 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-9m0d",{"micros":0.0}]']}} -2024-11-30 17:14:54,000 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-11-30 17:14:54,323 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:14:54,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 52, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-9m0d",{"micros":6154,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":3677,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-199",{"micros":29}]}]']}} -2024-11-30 17:14:54,345 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:14:54,345 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-11-30 17:14:54,345 - discord.client - DEBUG - Dispatching event resumed -2024-11-30 17:15:35,265 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 52. -2024-11-30 17:15:35,589 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:16:16,530 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 52. -2024-11-30 17:16:16,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:16:48,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 53, 'op': 0, 'd': {'user': {'username': 'haruki_xd', 'public_flags': 128, 'id': '772328603537899550', 'global_name': 'Maze_xD', 'display_name': 'Maze_xD', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9248c4e10316226e224c4161cd49c69b'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Haruki', 'mute': False, 'joined_at': '2022-06-27T15:32:00.441000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 17:16:48,316 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:16:48,316 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 17:16:48,316 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 17:16:48,945 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 54, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T17:16:49.464000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312467386741428286', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T17:16:48.900836+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/lKiuWmNrF-tjVlztk86W3HLnpMQwImLgvI69Vq0zAeM/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 772328603537899550'}, 'description': '<@772328603537899550>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/lKiuWmNrF-tjVlztk86W3HLnpMQwImLgvI69Vq0zAeM/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png', 'name': 'haruki_xd', 'icon_url': 'https://cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 17:16:48,945 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:16:48,945 - discord.client - DEBUG - Dispatching event message -2024-11-30 17:16:49,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 55, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T17:16:49.464000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312467386741428286', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T17:16:48.900000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/lKiuWmNrF-tjVlztk86W3HLnpMQwImLgvI69Vq0zAeM/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 772328603537899550'}, 'description': '<@772328603537899550>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/lKiuWmNrF-tjVlztk86W3HLnpMQwImLgvI69Vq0zAeM/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png', 'name': 'haruki_xd', 'icon_url': 'https://cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 17:16:49,028 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:16:49,028 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 17:16:49,028 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 17:16:57,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:16:58,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:17:39,047 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:17:39,376 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:18:20,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:18:20,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:19:01,559 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:19:01,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:19:42,821 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:19:43,127 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:20:24,078 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:20:24,401 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:21:05,329 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:21:05,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:21:46,583 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:21:46,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:22:27,848 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:22:28,171 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:23:09,113 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:23:09,434 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:23:50,369 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:23:50,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:24:31,624 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. -2024-11-30 17:24:31,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:24:38,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 56, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 17:24:38,170 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:24:38,170 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:25:12,879 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-30 17:25:13,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:25:54,133 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-30 17:25:54,456 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:26:35,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. -2024-11-30 17:26:35,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:27:03,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 57, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 17:27:03,153 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:27:03,155 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:27:16,661 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 57. -2024-11-30 17:27:16,983 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:27:57,925 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 57. -2024-11-30 17:27:58,251 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:28:01,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 58, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 17:28:01,326 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:28:01,326 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:28:11,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 59, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-11-30 17:28:11,874 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:28:11,874 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:28:14,040 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:28:14,040 - discord.client - DEBUG - Dispatching event message -2024-11-30 17:28:14,154 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:28:14,154 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 17:28:14,154 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 17:28:39,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:28:39,507 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:29:20,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:29:20,784 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:30:01,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:30:02,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:30:42,976 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:30:43,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:31:24,227 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:31:24,550 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:32:05,480 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:32:05,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:32:46,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:32:47,065 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:33:28,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:33:28,346 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:34:09,258 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:34:09,581 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:34:50,512 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:34:50,854 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:35:31,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:35:32,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:36:13,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. -2024-11-30 17:36:13,348 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:36:36,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 62, 'op': 0, 'd': {'user': {'username': 'roronoa_doraemon', 'public_flags': 64, 'id': '852888084098056242', 'global_name': 'v', 'display_name': 'v', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-11-30 17:36:36,594 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:36:36,594 - discord.client - DEBUG - Dispatching event user_update -2024-11-30 17:36:36,594 - discord.client - DEBUG - Dispatching event member_update -2024-11-30 17:36:39,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 63, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T17:36:39.687000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312472378898382998', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T17:36:37.268990+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/5.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 17:36:39,083 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:36:39,083 - discord.client - DEBUG - Dispatching event message -2024-11-30 17:36:40,156 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 64, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T17:36:39.687000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312472378898382998', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T17:36:37.268000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/5.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-11-30 17:36:40,165 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:36:40,165 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 17:36:40,165 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 17:36:54,292 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 64. -2024-11-30 17:36:54,638 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:37:35,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 64. -2024-11-30 17:37:35,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:38:10,744 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 65, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 17:38:10,744 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:38:10,744 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:38:11,681 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:38:11,681 - discord.client - DEBUG - Dispatching event message -2024-11-30 17:38:11,721 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:38:11,721 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 17:38:11,721 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 17:38:16,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 67. -2024-11-30 17:38:17,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:38:58,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 67. -2024-11-30 17:38:58,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:39:21,965 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 68, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-11-30 17:39:21,965 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:39:21,965 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:39:24,615 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:39:24,615 - discord.client - DEBUG - Dispatching event message -2024-11-30 17:39:24,695 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:39:24,695 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 17:39:24,695 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 17:39:39,329 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. -2024-11-30 17:39:39,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:40:20,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. -2024-11-30 17:40:20,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:41:01,857 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. -2024-11-30 17:41:02,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:41:43,118 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. -2024-11-30 17:41:43,426 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:42:24,381 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. -2024-11-30 17:42:24,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:43:05,636 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. -2024-11-30 17:43:05,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:43:38,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 71, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 17:43:38,313 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:43:38,315 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:43:39,676 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:43:39,676 - discord.client - DEBUG - Dispatching event message -2024-11-30 17:43:39,729 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:43:39,729 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 17:43:39,729 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 17:43:46,896 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. -2024-11-30 17:43:47,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:44:28,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. -2024-11-30 17:44:28,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:45:09,417 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. -2024-11-30 17:45:09,741 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:45:50,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. -2024-11-30 17:45:50,992 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:46:31,927 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. -2024-11-30 17:46:32,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:47:13,184 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. -2024-11-30 17:47:13,507 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:47:54,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. -2024-11-30 17:47:54,628 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 74, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-11-30 17:47:54,628 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:47:54,628 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:47:54,757 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:47:59,657 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:47:59,657 - discord.client - DEBUG - Dispatching event message -2024-11-30 17:47:59,705 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:47:59,705 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 17:47:59,705 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 17:48:04,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 77, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329550670172231'}} -2024-11-30 17:48:04,178 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:48:04,178 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:48:04,740 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:48:04,740 - discord.client - DEBUG - Dispatching event message -2024-11-30 17:48:04,800 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:48:04,800 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 17:48:04,800 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 17:48:19,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 80, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '2bee10eeace7a673ea73683be6cdfb22', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329550670172231'}} -2024-11-30 17:48:19,210 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:48:19,210 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:48:19,820 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:48:19,820 - discord.client - DEBUG - Dispatching event message -2024-11-30 17:48:19,916 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:48:19,916 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 17:48:19,916 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 17:48:20,011 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 83, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 17:48:20,012 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:48:20,012 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:48:22,264 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 84, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329550670172231'}} -2024-11-30 17:48:22,265 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:48:22,265 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 17:48:24,650 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:48:24,650 - discord.client - DEBUG - Dispatching event message -2024-11-30 17:48:24,698 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 17:48:24,698 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 17:48:24,698 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 17:48:35,712 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:48:36,036 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:49:16,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:49:17,281 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:49:58,223 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:49:58,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:50:39,477 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:50:39,801 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:51:20,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:51:21,074 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:52:01,984 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:52:02,323 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:52:43,270 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:52:43,591 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:53:24,535 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:53:24,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:54:05,791 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:54:06,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:54:47,045 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:54:47,368 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:55:28,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:55:28,629 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:56:09,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:56:09,886 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:56:50,829 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:56:51,158 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:57:32,093 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:57:32,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:58:13,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:58:13,652 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:58:54,600 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:58:54,927 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 17:59:35,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 17:59:36,186 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:00:17,125 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 18:00:17,466 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:00:58,387 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 18:00:58,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:01:39,639 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 18:01:39,979 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:02:20,891 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 18:02:21,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:03:02,145 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 18:03:02,485 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:03:43,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 18:03:43,722 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:04:24,649 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 18:04:24,985 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:05:05,902 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 18:05:06,250 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:05:47,162 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. -2024-11-30 18:05:47,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:06:20,212 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 87, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '2bee10eeace7a673ea73683be6cdfb22', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 18:06:20,212 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 18:06:20,213 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 18:06:24,749 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 18:06:24,749 - discord.client - DEBUG - Dispatching event message -2024-11-30 18:06:24,820 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 18:06:24,821 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 18:06:24,821 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 18:06:28,429 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 89. -2024-11-30 18:06:28,776 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:06:36,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 90, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 18:06:36,880 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 18:06:36,881 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 18:06:36,882 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 91, 'op': 0, 'd': {'status': None, 'id': '1285329550670172231', 'guild_id': '922005348670406667'}} -2024-11-30 18:06:36,882 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 18:06:36,882 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. -2024-11-30 18:06:39,845 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 18:06:39,846 - discord.client - DEBUG - Dispatching event message -2024-11-30 18:06:39,948 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 18:06:39,948 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 18:06:39,948 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 18:07:09,693 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 93. -2024-11-30 18:07:10,024 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:07:44,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 94, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 18:07:44,044 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 18:07:44,044 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 18:07:50,951 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 18:07:51,282 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:08:32,208 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 18:08:32,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:09:13,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 18:09:13,796 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:09:54,728 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 18:09:55,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:10:35,984 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 18:10:36,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:11:17,240 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 18:11:17,570 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:11:58,492 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 18:11:58,815 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:12:39,751 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 18:12:40,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:13:21,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 18:13:21,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 18:14:02,271 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 18:14:02,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:44:44,410 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 23:44:44,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:45:25,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 23:45:25,991 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:46:06,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 23:46:07,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:46:48,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 23:46:48,513 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:47:29,437 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. -2024-11-30 23:47:29,598 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 95, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'e04348471c06d4cd0e510392a9184ad7', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 23:47:29,598 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:47:29,598 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 23:47:29,775 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:47:30,810 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:47:30,810 - discord.client - DEBUG - Dispatching event message -2024-11-30 23:47:30,874 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:47:30,874 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 23:47:30,874 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 23:47:36,567 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 98, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'e04348471c06d4cd0e510392a9184ad7', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 23:47:36,567 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:47:36,567 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 23:48:10,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 98. -2024-11-30 23:48:11,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:48:51,964 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 98. -2024-11-30 23:48:52,302 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:49:33,218 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 98. -2024-11-30 23:49:33,540 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:50:10,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 99, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'e04348471c06d4cd0e510392a9184ad7', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-11-30 23:50:10,303 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:50:10,303 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 23:50:11,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 100, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'e04348471c06d4cd0e510392a9184ad7', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-11-30 23:50:11,157 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:50:11,157 - discord.client - DEBUG - Dispatching event voice_state_update -2024-11-30 23:50:11,964 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:50:11,964 - discord.client - DEBUG - Dispatching event message -2024-11-30 23:50:12,040 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:50:12,040 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 23:50:12,040 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 23:50:14,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 102. -2024-11-30 23:50:14,801 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:50:15,820 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:50:15,820 - discord.client - DEBUG - Dispatching event message -2024-11-30 23:50:15,868 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:50:15,868 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-11-30 23:50:15,868 - discord.client - DEBUG - Dispatching event message_edit -2024-11-30 23:50:55,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 104. -2024-11-30 23:50:56,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:51:36,994 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 104. -2024-11-30 23:51:37,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:52:18,251 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 104. -2024-11-30 23:52:18,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:52:59,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 104. -2024-11-30 23:52:59,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:53:40,768 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 104. -2024-11-30 23:53:41,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:54:13,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 105, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-30T18:24:13.616000+00:00', 'pinned': False, 'nonce': '1312484345969115136', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312484349144338554', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': []}} -2024-11-30 23:54:13,780 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:54:13,800 - discord.client - DEBUG - Dispatching event message -2024-11-30 23:54:13,800 - discord.client - DEBUG - Dispatching event command -2024-11-30 23:54:14,300 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 106, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-30T18:24:14.134000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312484351317114950', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-30 23:54:14,300 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:54:14,300 - discord.client - DEBUG - Dispatching event message -2024-11-30 23:54:14,336 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-11-30 23:54:14,336 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). -2024-11-30 23:54:14,336 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-30T18:24:14.134000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312484351317114950', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-30 23:54:14,340 - discord.client - DEBUG - Dispatching event command_completion -2024-11-30 23:54:14,774 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 -2024-11-30 23:54:14,774 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-30T18:24:14.616000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312484353338638376', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-11-30 23:54:14,790 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 107, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-30T18:24:14.616000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312484353338638376', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-11-30 23:54:14,791 - discord.client - DEBUG - Dispatching event socket_event_type -2024-11-30 23:54:14,792 - discord.client - DEBUG - Dispatching event message -2024-11-30 23:54:22,032 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-11-30 23:54:22,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:55:03,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-11-30 23:55:03,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:55:44,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-11-30 23:55:44,884 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:56:25,804 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-11-30 23:56:26,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:57:07,066 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-11-30 23:57:07,435 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:57:48,325 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-11-30 23:57:48,646 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:58:29,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-11-30 23:58:29,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:59:10,832 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-11-30 23:59:11,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-11-30 23:59:52,095 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-11-30 23:59:52,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:00:33,350 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:00:33,672 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:01:14,608 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:01:15,029 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:01:55,874 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:01:56,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:02:37,137 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:02:37,543 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:03:18,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:03:18,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:03:59,647 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:04:00,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:04:40,907 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:04:41,280 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:05:22,163 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:05:22,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:06:03,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:06:03,817 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:06:44,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:06:45,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:07:25,933 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:07:26,336 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:08:07,195 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:08:07,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:08:48,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:08:48,772 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:09:29,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:09:30,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:10:10,970 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:10:11,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:10:52,227 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:10:52,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:11:33,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:11:33,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:12:14,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:12:15,130 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:12:56,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:12:56,406 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:13:37,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:13:37,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:14:18,520 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:14:18,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:14:59,775 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:15:00,161 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:15:41,029 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:15:41,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:16:22,281 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:16:22,679 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:17:03,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:17:03,944 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:17:44,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:17:45,197 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:18:26,047 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:18:26,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:19:07,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:19:07,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:19:48,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:19:48,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:20:29,823 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:20:30,230 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:21:11,080 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:21:11,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:21:52,333 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:21:53,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:22:33,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:22:33,922 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:23:14,856 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:23:15,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:23:56,110 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. -2024-12-01 00:23:56,516 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:24:06,299 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 108, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:24:06,299 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:24:06,315 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:24:37,364 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 108. -2024-12-01 00:24:37,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:25:13,722 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 109, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:25:13,722 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:25:13,722 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:25:18,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 110, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 00:25:18,046 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:25:18,046 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:25:18,336 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:25:18,336 - discord.client - DEBUG - Dispatching event message -2024-12-01 00:25:18,401 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:25:18,401 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 00:25:18,401 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 00:25:18,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 112. -2024-12-01 00:25:19,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:25:59,879 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 112. -2024-12-01 00:26:00,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:26:04,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 113, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 00:26:04,694 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:26:04,694 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:26:08,216 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:26:08,216 - discord.client - DEBUG - Dispatching event message -2024-12-01 00:26:08,264 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:26:08,264 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 00:26:08,264 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 00:26:41,137 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 115. -2024-12-01 00:26:41,525 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:26:55,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 116, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:26:55,878 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:26:55,878 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:26:58,094 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:26:58,094 - discord.client - DEBUG - Dispatching event message -2024-12-01 00:26:58,165 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:26:58,165 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 00:26:58,165 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 00:27:20,529 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 119, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:27:20,529 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:27:20,529 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:27:21,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 120, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:27:21,982 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:27:21,982 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:27:22,399 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 120. -2024-12-01 00:27:22,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:27:24,043 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:27:24,043 - discord.client - DEBUG - Dispatching event message -2024-12-01 00:27:24,189 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:27:24,189 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 00:27:24,189 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 00:28:03,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 122. -2024-12-01 00:28:03,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:28:44,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 122. -2024-12-01 00:28:45,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:28:59,540 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 123, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'e04348471c06d4cd0e510392a9184ad7', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 00:28:59,556 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:28:59,556 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:29:03,120 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:29:03,120 - discord.client - DEBUG - Dispatching event message -2024-12-01 00:29:03,155 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:29:03,155 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 00:29:03,155 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 00:29:26,171 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 125. -2024-12-01 00:29:26,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:29:54,074 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 126, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:29:54,074 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:29:54,074 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:29:58,133 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:29:58,133 - discord.client - DEBUG - Dispatching event message -2024-12-01 00:29:58,181 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:29:58,181 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 00:29:58,181 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 00:30:01,348 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 129, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 00:30:01,348 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:30:01,348 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:30:02,270 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 130, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:30:02,270 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:30:02,270 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:30:03,255 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:30:03,255 - discord.client - DEBUG - Dispatching event message -2024-12-01 00:30:03,334 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:30:03,334 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 00:30:03,334 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 00:30:07,423 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 132. -2024-12-01 00:30:07,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:30:48,685 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 132. -2024-12-01 00:30:49,008 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:31:29,936 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 132. -2024-12-01 00:31:30,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:31:47,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 133, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 00:31:47,830 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:31:47,830 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:31:48,119 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:31:48,119 - discord.client - DEBUG - Dispatching event message -2024-12-01 00:31:48,233 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:31:48,233 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 00:31:48,233 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 00:31:57,421 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 136, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:31:57,421 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:31:57,421 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:31:58,163 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:31:58,163 - discord.client - DEBUG - Dispatching event message -2024-12-01 00:31:58,212 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:31:58,212 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 00:31:58,212 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 00:32:03,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 139, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:32:03,735 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:32:03,735 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:32:10,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 140, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:32:10,908 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:32:10,908 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:32:11,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 140. -2024-12-01 00:32:11,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:32:13,112 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:32:13,112 - discord.client - DEBUG - Dispatching event message -2024-12-01 00:32:13,160 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:32:13,160 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 00:32:13,160 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 00:32:52,457 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. -2024-12-01 00:32:52,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:33:33,718 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. -2024-12-01 00:33:34,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:34:14,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. -2024-12-01 00:34:15,301 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:34:56,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. -2024-12-01 00:34:56,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:35:37,497 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. -2024-12-01 00:35:37,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:36:18,750 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. -2024-12-01 00:36:19,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:36:40,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 143, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:36:40,888 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:36:40,888 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:37:00,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. -2024-12-01 00:37:00,343 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:37:41,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. -2024-12-01 00:37:41,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:38:22,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. -2024-12-01 00:38:22,875 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:39:03,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. -2024-12-01 00:39:04,100 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:39:45,042 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. -2024-12-01 00:39:45,349 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:40:26,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. -2024-12-01 00:40:26,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:40:43,358 - discord.gateway - DEBUG - Received WSMessage(type=, data=None, extra=None) -2024-12-01 00:40:43,374 - discord.gateway - DEBUG - Websocket closed with 1006, attempting a reconnect. -2024-12-01 00:40:43,374 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 00:40:43,374 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 00:40:43,826 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 00:40:43,826 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-j7b7",{"micros":0.0}]']}} -2024-12-01 00:40:43,826 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 00:40:44,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:40:44,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 144, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-j7b7",{"micros":1179,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":946,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-199",{"micros":25}]}]']}} -2024-12-01 00:40:44,153 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:40:44,153 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 00:40:44,153 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 00:41:25,079 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 144. -2024-12-01 00:41:25,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:42:06,341 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 144. -2024-12-01 00:42:06,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:42:47,594 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 144. -2024-12-01 00:42:47,916 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:42:50,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 145, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 00:42:50,538 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:42:50,538 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:42:51,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 146, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 00:42:51,736 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:42:51,736 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 00:42:53,251 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:42:53,251 - discord.client - DEBUG - Dispatching event message -2024-12-01 00:42:53,412 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 00:42:53,412 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 00:42:53,412 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 00:43:28,846 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:43:29,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:44:10,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:44:10,424 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:44:51,355 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:44:51,668 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:45:32,622 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:45:32,945 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:46:13,881 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:46:14,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:46:55,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:46:55,470 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:47:36,402 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:47:36,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:48:17,661 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:48:17,976 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:48:58,927 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:48:59,251 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:49:40,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:49:40,514 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:50:21,442 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:50:21,751 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:51:02,703 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:51:03,041 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:51:43,964 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:51:44,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:52:25,221 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:52:25,550 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:53:06,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:53:06,802 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:53:47,736 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:53:48,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:54:28,991 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:54:29,318 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:55:10,258 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:55:10,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:55:51,514 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:55:51,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:56:32,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:56:33,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:57:14,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:57:14,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:57:55,290 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:57:55,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:58:36,554 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:58:36,862 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:59:17,814 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:59:18,125 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 00:59:59,075 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 00:59:59,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:00:40,328 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:00:40,633 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:01:21,586 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:01:21,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:02:02,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:02:03,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:02:44,107 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:02:44,428 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:03:25,372 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:03:25,678 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:04:06,638 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:04:06,945 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:04:47,902 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:04:48,215 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:05:29,165 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:05:29,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:06:10,417 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:06:10,724 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:06:51,674 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:06:51,980 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:07:32,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:07:33,232 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:08:14,186 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:08:14,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:08:55,448 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:08:55,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:09:36,706 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:09:37,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:10:17,969 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:10:18,291 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:10:59,221 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. -2024-12-01 01:10:59,317 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 149, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:10:59,317 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:10:59,317 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:10:59,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:10:59,768 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 150, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:10:59,768 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:10:59,768 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:11:00,127 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:11:00,127 - discord.client - DEBUG - Dispatching event message -2024-12-01 01:11:00,204 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:11:00,204 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 01:11:00,204 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 01:11:40,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 152. -2024-12-01 01:11:40,792 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:12:21,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 152. -2024-12-01 01:12:22,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:12:59,629 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 153, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:12:59,629 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:12:59,629 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:13:02,988 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 153. -2024-12-01 01:13:03,311 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:13:44,239 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 153. -2024-12-01 01:13:44,547 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:13:49,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 154, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:13:49,392 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:13:49,392 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:14:25,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 154. -2024-12-01 01:14:25,810 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:15:06,760 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 154. -2024-12-01 01:15:07,090 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:15:14,525 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 155, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:15:14,525 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:15:14,525 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:15:48,012 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 155. -2024-12-01 01:15:48,339 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:15:54,992 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 156, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:15:54,992 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:15:54,992 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:16:29,274 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 156. -2024-12-01 01:16:29,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:17:07,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 157, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:17:07,908 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:17:07,908 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:17:10,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 157. -2024-12-01 01:17:10,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 158, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:17:10,846 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:17:10,846 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:17:10,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:17:26,000 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 159, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:17:26,004 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:17:26,004 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:17:31,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 160, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:17:31,904 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:17:31,904 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:17:33,663 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 161, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:17:33,663 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:17:33,663 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:17:51,804 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 161. -2024-12-01 01:17:52,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:18:18,116 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 162, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:18:18,116 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:18:18,116 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:18:33,058 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 162. -2024-12-01 01:18:33,250 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 163, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:18:33,250 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:18:33,250 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:18:33,380 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:18:35,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 164, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '2bee10eeace7a673ea73683be6cdfb22', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 01:18:35,192 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:18:35,192 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:18:39,181 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:18:39,181 - discord.client - DEBUG - Dispatching event message -2024-12-01 01:18:39,256 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:18:39,256 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 01:18:39,256 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 01:18:49,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 167, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:18:49,648 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:18:49,648 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:19:03,927 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 168, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:19:03,927 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:19:03,927 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:19:07,931 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 169, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:19:07,931 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:19:07,931 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:19:14,314 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 169. -2024-12-01 01:19:14,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:19:23,382 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 170, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:19:23,382 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:19:23,382 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:19:29,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 171, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:19:29,112 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:19:29,112 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:19:48,353 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 172, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:19:48,353 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:19:48,353 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:19:49,353 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 173, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:19:49,353 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:19:49,353 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:19:55,498 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 174, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:19:55,498 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:19:55,498 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:19:55,577 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 174. -2024-12-01 01:19:55,932 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:20:23,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 175, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 01:20:23,399 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:20:23,399 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:20:24,286 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:20:24,286 - discord.client - DEBUG - Dispatching event message -2024-12-01 01:20:24,366 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:20:24,366 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 01:20:24,366 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 01:20:36,885 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 177. -2024-12-01 01:20:37,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:20:53,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 178, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:20:53,734 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:20:53,734 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:21:18,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-01 01:21:18,469 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:21:56,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 179, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:21:56,404 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:21:56,404 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:21:59,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 179. -2024-12-01 01:21:59,714 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:22:07,776 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 180, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:22:07,776 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:22:07,776 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:22:31,851 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 181, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:22:31,857 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:22:31,857 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:22:40,667 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-01 01:22:40,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:23:21,922 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-01 01:23:22,246 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:24:03,188 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-01 01:24:03,495 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:24:44,441 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-01 01:24:44,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:24:52,618 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 182, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-30T19:54:52.668000+00:00', 'pinned': False, 'nonce': '1312507167001018368', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312507162181898241', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'https://tenor.com/view/shunsui-anime-gif-9421128', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-01 01:24:52,634 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:24:52,634 - discord.client - DEBUG - Dispatching event message -2024-12-01 01:24:52,800 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 183, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-30T19:54:52.668000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312507162181898241', 'flags': 0, 'embeds': [{'video': {'width': 528, 'url': 'https://media.tenor.com/-Kq-WxiFPosAAAPo/shunsui-anime.mp4', 'proxy_url': 'https://images-ext-1.discordapp.net/external/QMXJgiuxikzRoDc5C8OyCwjMVs3p3K-I6LYdNGG1JgE/https/media.tenor.com/-Kq-WxiFPosAAAPo/shunsui-anime.mp4', 'placeholder_version': 1, 'placeholder': 'UigSDYQIaGhzd4uIiJd4dgh2qRB2', 'height': 354, 'flags': 0}, 'url': 'https://tenor.com/view/shunsui-anime-gif-9421128', 'type': 'gifv', 'thumbnail': {'width': 528, 'url': 'https://media.tenor.com/-Kq-WxiFPosAAAAe/shunsui-anime.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/R-sOpL1zULqwAygrc-RwCjXzo8z8t765dBsusmcL7eY/https/media.tenor.com/-Kq-WxiFPosAAAAe/shunsui-anime.png', 'placeholder_version': 1, 'placeholder': 'UigSDYQIaGhzd4uIiJd4dgh2qRB2', 'height': 354, 'flags': 0}, 'provider': {'url': 'https://tenor.co', 'name': 'Tenor'}, 'content_scan_version': 1}], 'edited_timestamp': None, 'content': 'https://tenor.com/view/shunsui-anime-gif-9421128', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-01 01:24:52,800 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:24:52,800 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 01:24:52,800 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 01:25:25,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 183. -2024-12-01 01:25:26,009 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:26:06,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 183. -2024-12-01 01:26:07,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:26:48,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 183. -2024-12-01 01:26:48,524 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:26:55,228 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 184, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:26:55,228 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:26:55,228 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:27:29,478 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-01 01:27:29,802 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:27:47,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 185, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 01:27:47,313 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:27:47,313 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:27:49,219 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:27:49,219 - discord.client - DEBUG - Dispatching event message -2024-12-01 01:27:49,250 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:27:49,250 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 01:27:49,250 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 01:28:10,734 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:28:11,041 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:28:51,990 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:28:52,301 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:29:33,254 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:29:33,558 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:30:14,508 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:30:14,813 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:30:55,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:30:56,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:31:37,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:31:37,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:32:18,281 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:32:18,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:32:59,537 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:32:59,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:33:40,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:33:41,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:34:22,059 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:34:22,367 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:35:03,319 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:35:03,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:35:44,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:35:44,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:36:25,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:36:26,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:37:07,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:37:07,432 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:37:48,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:37:48,680 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:38:29,611 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:38:29,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:39:10,875 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:39:11,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:39:52,131 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:39:52,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:40:33,392 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:40:33,717 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:41:14,652 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:41:14,958 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:41:55,905 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:41:56,229 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:42:37,170 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:42:37,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:43:18,435 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:43:18,741 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:43:59,700 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:44:00,010 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:44:40,963 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:44:41,293 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:45:22,228 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:45:22,551 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:46:03,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-01 01:46:03,808 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:46:29,494 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 188, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:46:29,494 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:46:29,494 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:46:37,909 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 189, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:46:37,925 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:46:37,925 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:46:38,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 190, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '3c139ee2615c904f70fbc426a17729fa', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:46:38,405 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:46:38,405 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:46:41,718 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:46:41,718 - discord.client - DEBUG - Dispatching event message -2024-12-01 01:46:42,716 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:46:42,716 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 01:46:42,716 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 01:46:44,353 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 193, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '3c139ee2615c904f70fbc426a17729fa', 'self_video': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:46:44,353 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:46:44,353 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:46:44,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 193. -2024-12-01 01:46:45,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:47:26,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 193. -2024-12-01 01:47:26,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:47:43,489 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 194, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '3c139ee2615c904f70fbc426a17729fa', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:47:43,489 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:47:43,489 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:48:01,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 195, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '3c139ee2615c904f70fbc426a17729fa', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 01:48:01,392 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:48:01,392 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:48:01,716 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:48:01,716 - discord.client - DEBUG - Dispatching event message -2024-12-01 01:48:01,764 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:48:01,764 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 01:48:01,764 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 01:48:07,261 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 197. -2024-12-01 01:48:07,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:48:48,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 197. -2024-12-01 01:48:48,843 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:49:29,781 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 197. -2024-12-01 01:49:30,088 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:49:58,791 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 198, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:49:58,791 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:49:58,791 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:50:09,127 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 199, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:50:09,127 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:50:09,127 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:50:11,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. -2024-12-01 01:50:11,356 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:50:52,293 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. -2024-12-01 01:50:52,600 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:51:33,554 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. -2024-12-01 01:51:33,862 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:52:14,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. -2024-12-01 01:52:15,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:52:56,064 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. -2024-12-01 01:52:56,374 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:53:37,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. -2024-12-01 01:53:37,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:54:18,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. -2024-12-01 01:54:18,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:54:59,853 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. -2024-12-01 01:55:00,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:55:24,177 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 200, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:55:24,177 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:55:24,177 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:55:37,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 201, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:55:37,904 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:55:37,904 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:55:40,279 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 202, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:55:40,279 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:55:40,279 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:55:41,117 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 202. -2024-12-01 01:55:41,431 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:56:11,159 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 203, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 01:56:11,163 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 01:56:11,163 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 01:56:22,372 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. -2024-12-01 01:56:22,676 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:57:03,629 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. -2024-12-01 01:57:03,955 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:57:44,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. -2024-12-01 01:57:45,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:58:26,150 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. -2024-12-01 01:58:26,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:59:07,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. -2024-12-01 01:59:07,708 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 01:59:48,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. -2024-12-01 01:59:48,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:00:26,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 204, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 02:00:26,587 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:00:26,587 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:00:29,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:00:30,230 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:01:11,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:01:11,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:01:52,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:01:52,727 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:02:33,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:02:34,040 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:03:14,980 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:03:15,302 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:03:56,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:03:56,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:04:37,495 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:04:37,833 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:05:18,747 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:05:19,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:06:00,013 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:06:00,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:06:41,266 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:06:41,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:07:22,527 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:07:22,840 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:08:03,782 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:08:04,169 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:08:45,046 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:08:45,401 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:09:26,300 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:09:26,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:10:07,557 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:10:07,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:10:48,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:10:49,200 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:11:30,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:11:30,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:12:11,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:12:11,637 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:12:52,581 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:12:52,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:13:33,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:13:34,440 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:14:15,100 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. -2024-12-01 02:14:15,478 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:14:33,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 205, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 02:14:33,175 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:14:33,175 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:14:36,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 206, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 02:14:36,906 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:14:36,906 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:14:40,326 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:14:40,326 - discord.client - DEBUG - Dispatching event message -2024-12-01 02:14:40,427 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:14:40,427 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 02:14:40,427 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 02:14:56,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:14:56,765 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:15:37,621 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:15:38,024 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:16:18,881 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:16:19,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:17:00,138 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:17:00,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:17:41,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:17:42,029 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:18:22,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:18:22,981 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:19:03,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:19:04,237 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:19:45,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:19:45,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:20:26,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:20:26,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:21:07,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:21:08,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:21:48,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:21:49,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:22:30,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:22:30,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:23:11,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:23:11,799 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:23:52,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:23:53,132 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:24:33,994 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:24:34,306 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:25:15,247 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:25:15,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:25:56,502 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:25:56,810 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:26:37,762 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:26:38,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:27:19,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:27:19,336 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:28:00,287 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:28:00,674 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:28:41,550 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:28:41,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:29:22,814 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:29:23,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:30:04,076 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:30:04,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:30:45,336 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:30:45,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:31:26,588 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:31:26,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:32:07,850 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. -2024-12-01 02:32:08,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:32:38,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 209, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 02:32:38,131 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:32:38,131 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:32:40,551 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 210, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 02:32:40,551 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:32:40,551 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:32:41,232 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 211, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 02:32:41,232 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:32:41,232 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:32:43,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 212, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 02:32:43,563 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:32:43,563 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:32:49,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:32:49,505 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:33:30,370 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:33:30,771 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:34:11,626 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:34:11,996 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:34:52,890 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:34:53,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:35:34,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:35:34,466 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:36:15,394 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:36:15,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:36:56,648 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:36:56,987 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:37:37,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:37:38,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:38:19,154 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:38:19,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:39:00,420 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:39:00,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:39:41,675 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:39:42,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:40:22,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:40:23,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:41:04,190 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:41:04,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:41:45,456 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:41:45,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:42:26,721 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:42:27,061 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:43:07,982 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:43:08,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:43:49,236 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:43:49,621 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:44:30,501 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:44:30,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:45:11,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:45:12,088 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:45:53,031 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:45:53,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:46:34,285 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:46:34,689 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:47:15,551 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:47:15,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:47:56,810 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:47:57,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:48:38,073 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:48:38,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:49:19,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:49:19,652 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:50:00,592 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:50:00,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:50:41,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:50:42,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:51:23,118 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:51:23,424 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:52:04,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:52:04,675 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:52:45,625 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:52:45,931 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:53:26,882 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:53:27,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:54:08,145 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:54:08,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:54:49,406 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:54:49,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:55:30,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:55:30,970 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:56:11,921 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:56:12,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:56:53,172 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:56:53,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:57:34,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. -2024-12-01 02:57:34,731 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:57:51,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 213, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 02:57:51,189 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:57:51,189 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:58:05,440 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 214, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 02:58:05,440 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:58:05,440 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:58:08,283 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:58:08,283 - discord.client - DEBUG - Dispatching event message -2024-12-01 02:58:08,363 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:58:08,379 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 02:58:08,379 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 02:58:15,689 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 216. -2024-12-01 02:58:16,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:58:56,949 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 216. -2024-12-01 02:58:57,261 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 02:59:18,281 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 217, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 02:59:18,283 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:59:18,283 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:59:20,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 218, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 02:59:20,746 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:59:20,746 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:59:21,018 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 219, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 02:59:21,018 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:59:21,018 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 02:59:21,018 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 220, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} -2024-12-01 02:59:21,018 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:59:21,018 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. -2024-12-01 02:59:23,230 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:59:23,230 - discord.client - DEBUG - Dispatching event message -2024-12-01 02:59:23,278 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 02:59:23,278 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 02:59:23,278 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 02:59:38,203 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 02:59:38,529 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:00:19,464 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:00:19,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:01:00,719 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:01:01,047 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:01:41,978 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:01:42,301 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:02:23,233 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:02:23,555 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:03:04,497 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:03:04,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:03:45,749 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:03:46,072 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:04:27,012 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:04:27,319 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:05:08,266 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:05:08,570 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:05:49,532 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:05:49,854 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:06:30,791 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:06:31,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:07:12,043 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:07:12,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:07:53,307 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:07:53,614 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:08:34,559 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:08:34,865 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:09:15,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:09:16,121 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:09:57,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:09:57,372 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:10:38,333 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:10:38,657 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:11:19,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:11:19,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:12:00,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:12:01,154 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:12:42,101 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:12:42,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:13:23,356 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:13:23,677 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:14:04,616 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:14:04,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:14:45,873 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:14:46,195 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:15:27,129 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:15:27,437 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:16:08,380 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:16:08,703 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:16:49,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:16:49,944 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:17:30,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:17:31,206 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:18:12,148 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:18:12,456 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:18:53,402 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:18:53,729 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:19:34,664 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:19:34,971 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:20:15,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:20:16,254 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:20:57,188 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:20:57,494 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:21:38,442 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:21:38,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:22:19,695 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:22:20,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:23:00,950 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:23:01,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:23:42,212 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:23:42,534 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:24:23,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:24:23,795 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:25:04,730 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:25:05,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:25:45,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:25:46,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:26:27,256 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:26:27,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:27:08,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:27:08,835 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:27:49,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:27:50,082 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:28:31,042 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:28:31,357 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:29:12,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:29:12,614 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:29:53,565 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:29:53,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:30:34,819 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:30:35,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:31:16,080 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:31:16,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:31:57,332 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:31:57,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:32:38,585 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:32:38,892 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:33:19,848 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:33:20,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:34:01,098 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:34:01,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:34:42,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:34:42,683 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:35:23,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:35:23,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:36:04,894 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:36:05,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:36:46,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:36:46,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:37:27,399 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:37:27,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:38:08,650 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:38:08,956 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:38:49,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:38:50,223 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:39:31,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:39:31,488 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:40:12,435 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:40:12,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:40:53,694 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:40:54,001 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:41:34,948 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:41:35,255 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:42:16,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:42:16,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:42:57,464 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:42:57,788 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:43:38,721 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:43:39,027 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:44:19,984 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:44:20,323 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:45:01,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:45:01,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:45:42,492 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:45:42,798 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:46:23,752 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:46:24,057 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:47:05,016 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:47:05,324 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:47:46,270 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:47:46,577 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:48:27,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. -2024-12-01 03:48:27,841 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:49:01,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 03:49:01,392 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 03:49:01,706 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 03:49:01,706 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 03:49:02,198 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 03:49:02,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-t8hc",{"micros":0.0}]']}} -2024-12-01 03:49:02,198 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 03:49:02,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:49:02,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 223, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-t8hc",{"micros":2193,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":1875,"calls":[]},"session_lookup_finished",{"micros":12,"calls":[]},"discord-sessions-prd-1-199",{"micros":42}]}]']}} -2024-12-01 03:49:02,528 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 03:49:02,528 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 03:49:02,528 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 03:49:43,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:49:43,789 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:50:24,731 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:50:25,039 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:51:05,995 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:51:06,302 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:51:47,249 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:51:47,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:52:28,513 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:52:28,821 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:53:09,780 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:53:10,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:53:51,039 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:53:51,363 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:54:32,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:54:32,610 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:55:13,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:55:13,885 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:55:54,816 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:55:55,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:56:36,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:56:36,390 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:57:17,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:57:17,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:57:58,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:57:58,901 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:58:39,830 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:58:40,152 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 03:59:21,080 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 03:59:21,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:00:02,335 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:00:02,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:00:43,586 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:00:43,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:01:24,853 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:01:25,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:02:06,119 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:02:06,441 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:02:47,382 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:02:47,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:03:28,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:03:28,955 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:04:09,890 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:04:10,215 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:04:51,144 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:04:51,466 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:05:32,398 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:05:32,724 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:06:13,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:06:13,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:06:54,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:06:55,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:07:36,179 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:07:36,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:08:17,440 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:08:17,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:08:58,693 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:08:59,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:09:39,946 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:09:40,284 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:10:21,206 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:10:21,529 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:11:02,472 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:11:02,811 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:11:43,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:11:44,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:12:24,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:12:25,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:13:06,261 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:13:06,576 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:13:47,512 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:13:47,841 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:14:28,774 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:14:29,090 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:15:10,032 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:15:10,359 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:15:51,284 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:15:51,591 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:16:32,544 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:16:32,866 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:17:13,806 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:17:14,129 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:17:55,064 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:17:55,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:18:36,322 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:18:36,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:19:17,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:19:17,900 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:19:58,839 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:19:59,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:20:40,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:20:40,408 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:21:21,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:21:21,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:22:02,627 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:22:02,934 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:22:43,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:22:44,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:23:25,136 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:23:25,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:24:06,398 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:24:06,721 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:24:47,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:24:47,958 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:25:28,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:25:29,232 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:26:10,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:26:10,486 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:26:51,419 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:26:51,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:27:32,674 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:27:32,980 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:28:13,938 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:28:14,245 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:28:55,203 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:28:55,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:29:36,461 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:29:36,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:30:17,727 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:30:18,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:30:58,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:30:59,305 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:31:40,235 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:31:40,548 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:32:21,491 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:32:21,813 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:33:02,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:33:03,075 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:33:44,011 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:33:44,334 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:34:25,275 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:34:25,581 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:35:06,531 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:35:06,839 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:35:47,786 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:35:48,091 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:36:29,040 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:36:29,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:37:10,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:37:10,628 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:37:51,555 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:37:51,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:38:32,807 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:38:33,114 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:39:14,071 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:39:14,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:39:55,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:39:55,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:40:36,588 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:40:36,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:41:17,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:41:18,167 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:41:59,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:41:59,436 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:42:40,364 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:42:40,672 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:43:21,617 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:43:21,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:44:02,870 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. -2024-12-01 04:44:03,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:44:21,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 04:44:21,418 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 04:44:21,730 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 04:44:21,730 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 04:44:22,144 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 04:44:22,144 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-h123",{"micros":0.0}]']}} -2024-12-01 04:44:22,144 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 04:44:22,467 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:44:22,467 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 224, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-h123",{"micros":3234,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":2984,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-199",{"micros":31}]}]']}} -2024-12-01 04:44:22,467 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 04:44:22,467 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 04:44:22,467 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 04:45:03,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:45:03,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:45:44,688 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:45:44,996 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:46:25,950 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:46:26,273 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:47:07,210 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:47:07,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:47:48,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:47:48,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:48:29,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:48:30,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:49:10,994 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:49:11,316 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:49:52,252 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:49:52,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:50:33,513 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:50:33,826 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:51:14,764 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:51:15,084 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:51:56,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:51:56,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:52:37,288 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:52:37,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:53:18,544 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:53:18,849 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:53:59,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:54:00,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:54:41,072 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:54:41,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:55:22,336 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:55:22,642 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:56:03,591 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:56:03,914 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:56:44,855 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:56:45,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:57:26,111 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:57:26,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:58:07,365 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:58:07,670 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:58:48,618 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:58:48,930 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 04:59:29,870 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 04:59:30,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:00:11,123 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:00:11,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:00:52,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:00:52,697 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:01:33,645 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:01:33,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:02:14,907 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:02:15,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:02:56,166 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:02:56,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:03:37,431 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:03:37,740 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:04:18,683 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:04:18,990 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:04:59,948 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:05:00,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:05:41,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:05:41,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:06:22,465 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:06:22,772 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:07:03,723 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:07:04,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:07:44,989 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:07:45,297 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:08:26,240 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:08:26,547 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:09:07,493 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:09:07,799 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:09:48,746 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:09:49,068 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:10:30,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:10:30,334 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:11:11,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:11:11,591 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:11:52,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:11:52,824 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:12:33,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:12:34,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:13:15,028 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:13:15,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:13:56,286 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:13:56,609 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:14:37,542 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. -2024-12-01 05:14:37,848 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:14:45,482 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 05:14:45,482 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 05:14:45,804 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 05:14:45,804 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 05:14:46,208 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 05:14:46,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-vf82",{"micros":0.0}]']}} -2024-12-01 05:14:46,208 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 05:14:46,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:14:46,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 225, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-vf82",{"micros":1094,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":789,"calls":[]},"session_lookup_finished",{"micros":14,"calls":[]},"discord-sessions-prd-1-199",{"micros":25}]}]']}} -2024-12-01 05:14:46,531 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 05:14:46,531 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 05:14:46,531 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 05:15:27,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:15:27,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:16:08,742 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:16:09,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:16:50,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:16:50,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:17:31,256 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:17:31,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:18:12,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:18:12,843 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:18:53,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:18:54,084 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:19:35,046 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:19:35,353 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:20:16,313 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:20:16,620 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:20:57,567 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:20:57,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:21:38,821 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:21:39,127 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:22:20,087 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:22:20,394 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:23:01,342 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:23:01,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:23:42,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:23:42,910 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:24:23,857 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:24:24,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:25:05,118 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:25:05,431 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:25:46,375 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:25:46,687 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:26:27,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:26:27,939 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:27:08,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:27:09,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:27:50,136 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:27:50,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:28:31,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:28:31,695 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:29:12,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:29:12,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:29:53,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:29:54,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:30:35,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:30:35,500 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:31:16,429 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:31:16,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:31:57,692 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:31:58,014 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:32:38,957 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:32:39,296 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:33:20,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:33:20,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:34:01,470 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:34:01,800 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:34:42,725 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:34:43,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:35:23,976 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:35:24,300 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:36:05,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:36:05,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:36:46,502 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:36:46,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:37:27,763 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:37:28,071 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:38:09,015 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:38:09,324 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:38:50,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:38:50,574 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:39:31,527 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:39:31,852 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:40:12,778 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:40:13,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:40:54,035 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:40:54,359 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:41:35,298 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:41:35,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:42:16,561 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:42:16,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:42:57,826 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:42:58,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:43:39,084 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:43:39,423 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:44:20,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:44:20,668 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:45:01,604 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:45:01,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:45:42,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:45:43,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:46:24,123 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:46:24,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:47:05,384 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:47:05,707 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:47:46,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:47:46,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:48:27,912 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:48:28,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:49:09,176 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:49:09,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:49:50,435 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:49:50,758 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:50:31,692 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:50:31,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:51:12,946 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:51:13,268 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:51:54,213 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:51:54,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:52:35,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:52:35,790 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:53:16,718 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:53:17,040 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:53:57,984 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:53:58,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:54:39,249 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:54:39,565 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:55:20,508 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:55:20,815 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:56:01,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:56:02,087 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:56:43,028 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:56:43,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:57:24,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:57:24,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:58:05,552 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:58:05,873 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:58:46,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:58:47,136 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 05:59:28,068 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 05:59:28,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:00:09,326 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:00:09,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:00:50,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:00:50,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:01:31,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:01:32,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:02:13,104 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:02:13,427 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:02:54,363 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:02:54,687 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:03:35,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:03:35,936 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:04:16,894 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:04:17,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:04:58,145 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:04:58,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:05:39,398 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:05:39,720 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:06:20,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:06:20,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:07:01,912 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:07:02,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:07:43,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:07:43,490 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:08:24,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:08:24,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:09:05,685 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:09:06,013 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:09:46,948 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:09:47,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:10:28,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:10:28,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:11:09,467 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:11:09,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:11:50,729 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:11:51,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:12:31,983 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:12:32,290 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:13:13,247 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:13:13,570 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:13:54,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:13:54,805 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:14:35,756 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:14:36,079 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:15:17,020 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:15:17,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:15:58,283 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:15:58,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:16:39,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:16:39,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:17:20,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:17:21,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:18:02,063 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:18:02,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:18:43,328 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:18:43,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:19:24,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:19:24,899 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:20:05,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:20:06,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:20:47,125 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:20:47,447 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:21:28,387 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:21:28,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:22:09,652 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:22:09,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:22:50,909 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:22:51,233 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:23:32,173 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:23:32,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:24:13,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:24:13,763 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:24:54,702 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:24:55,025 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:25:35,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:25:36,270 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:26:17,225 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:26:17,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:26:58,481 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:26:58,805 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:27:39,748 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:27:40,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:28:21,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:28:21,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:29:02,272 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:29:02,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:29:43,531 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:29:43,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:30:24,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:30:25,112 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:31:06,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:31:06,381 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:31:47,325 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:31:47,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:32:28,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:32:28,885 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:33:09,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:33:10,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:33:51,098 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:33:51,421 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:34:32,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:34:32,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:35:13,622 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. -2024-12-01 06:35:13,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:35:40,406 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 06:35:40,406 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 06:35:40,729 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 06:35:40,729 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 06:35:41,133 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 06:35:41,133 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-tbgd",{"micros":0.0}]']}} -2024-12-01 06:35:41,133 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 06:35:41,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:35:41,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 226, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-tbgd",{"micros":3020,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":1572,"calls":[]},"session_lookup_finished",{"micros":10,"calls":[]},"discord-sessions-prd-1-199",{"micros":27}]}]']}} -2024-12-01 06:35:41,455 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 06:35:41,455 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 06:35:41,455 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 06:36:22,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:36:22,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:37:03,657 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:37:03,980 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:37:44,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:37:45,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:38:26,178 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:38:26,501 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:39:07,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:39:07,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:39:48,695 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:39:49,005 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:40:29,948 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:40:30,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:41:11,213 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:41:11,520 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:41:52,476 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:41:52,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:42:33,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:42:34,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:43:15,004 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:43:15,310 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:43:56,270 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:43:56,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:44:37,524 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:44:37,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:45:18,787 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:45:19,093 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:46:00,038 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:46:00,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:46:41,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:46:41,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:47:22,555 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:47:22,865 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:48:03,815 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:48:04,122 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:48:45,070 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:48:45,376 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:49:26,324 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:49:26,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:50:07,585 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:50:07,892 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:50:48,846 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:50:49,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:51:30,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:51:30,414 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:52:11,367 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:52:11,678 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:52:52,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:52:52,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:53:33,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:53:34,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:54:15,157 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:54:15,464 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:54:56,419 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:54:56,754 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:55:37,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:55:37,985 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:56:18,945 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:56:19,252 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:57:00,196 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:57:00,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:57:41,448 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:57:41,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:58:22,712 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:58:23,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:59:03,976 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:59:04,282 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 06:59:45,232 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 06:59:45,571 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:00:26,488 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:00:26,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:01:07,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:01:08,080 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:01:48,994 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:01:49,317 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:02:30,260 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:02:30,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:03:11,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:03:11,833 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:03:52,778 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:03:53,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:04:34,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:04:34,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:05:15,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:05:15,598 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:05:56,551 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:05:56,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:06:37,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:06:38,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:07:19,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:07:19,368 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:08:00,322 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:08:00,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:08:41,582 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:08:41,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:09:22,846 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:09:23,154 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:10:04,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:10:04,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:10:45,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:10:45,675 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:11:26,621 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:11:26,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:12:07,883 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:12:08,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:12:49,137 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:12:49,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:13:30,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:13:30,716 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:14:11,641 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:14:11,947 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:14:52,904 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:14:53,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:15:34,165 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:15:34,477 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:16:15,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:16:15,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:16:56,694 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:16:57,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:17:37,945 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:17:38,264 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:18:19,198 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:18:19,511 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:19:00,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:19:00,755 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:19:41,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:19:42,020 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:20:22,967 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:20:23,276 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:21:04,232 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:21:04,539 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:21:45,495 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:21:45,805 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:22:26,747 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:22:27,053 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:23:08,007 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:23:08,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:23:49,266 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:23:49,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:24:30,523 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:24:30,829 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:25:11,780 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:25:12,085 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:25:53,039 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:25:53,365 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:26:34,300 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:26:34,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:27:15,554 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:27:15,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:27:56,816 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:27:57,132 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:28:38,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:28:38,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:29:19,340 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:29:19,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:30:00,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:30:00,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:30:41,862 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:30:42,179 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:31:23,126 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:31:23,448 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:32:04,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:32:04,698 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:32:45,643 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:32:45,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:33:26,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:33:27,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:34:08,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:34:08,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:34:49,420 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:34:49,741 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:35:30,678 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:35:30,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:36:11,942 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:36:12,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:36:53,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:36:53,504 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:37:34,453 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:37:34,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:38:15,714 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:38:16,021 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:38:56,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:38:57,270 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:39:38,217 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:39:38,524 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:40:19,470 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:40:19,777 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:41:00,727 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:41:01,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:41:41,988 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:41:42,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:42:23,242 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:42:23,550 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:43:04,495 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:43:04,813 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:43:45,759 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:43:46,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:44:27,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:44:27,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:45:08,279 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:45:08,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:45:49,535 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:45:49,841 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:46:30,798 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:46:31,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:47:12,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:47:12,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:47:53,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:47:53,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:48:34,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:48:34,869 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:49:15,825 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:49:16,140 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:49:57,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:49:57,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:50:38,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:50:38,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:51:19,588 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:51:19,895 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:52:00,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:52:01,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:52:42,093 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:52:42,407 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:53:23,357 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:53:23,673 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:54:04,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:54:04,930 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:54:45,879 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:54:46,186 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:55:27,130 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:55:27,437 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:56:08,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:56:08,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:56:49,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:56:49,968 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:57:30,916 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:57:31,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:58:12,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:58:12,481 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:58:53,434 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:58:53,747 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 07:59:34,693 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 07:59:35,021 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:00:15,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:00:16,262 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:00:57,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:00:57,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:01:38,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:01:38,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:02:19,718 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:02:20,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:03:00,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:03:01,278 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:03:42,232 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:03:42,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:04:23,484 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:04:23,790 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:05:04,746 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:05:05,067 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:05:46,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:05:46,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:06:27,272 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:06:27,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:07:08,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:07:08,848 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:07:49,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:07:50,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:08:31,047 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:08:31,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:09:12,299 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:09:12,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:09:53,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:09:53,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:10:34,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:10:35,118 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:11:16,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:11:16,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:11:57,340 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:11:57,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:12:38,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:12:38,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:13:19,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:13:20,151 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:14:01,098 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:14:01,410 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:14:42,350 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:14:42,667 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:15:23,616 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:15:23,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:16:04,873 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:16:05,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:16:46,139 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:16:46,462 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:17:27,396 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:17:27,703 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:18:08,662 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:18:08,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:18:49,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:18:50,230 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:19:31,172 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:19:31,485 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:20:12,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:20:12,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:20:53,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:20:54,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:21:34,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:21:35,270 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:22:16,228 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:22:16,536 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:22:57,482 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:22:57,788 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:23:38,734 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:23:39,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:24:19,986 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:24:20,292 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:25:01,241 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:25:01,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:25:42,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:25:42,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:26:23,754 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:26:24,062 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:27:05,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:27:05,316 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:27:46,270 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:27:46,575 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:28:27,535 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:28:27,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:29:08,793 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:29:09,099 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:29:50,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. -2024-12-01 08:29:50,367 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:30:03,941 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 227, 'op': 0, 'd': {'user': {'username': 'duccheese', 'public_flags': 64, 'id': '796701370237059072', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '154497eff6b19da5b4e71189c70b187e'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T10:04:02.135000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 08:30:03,941 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 08:30:03,985 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 08:30:03,985 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 08:30:31,315 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:30:31,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:31:12,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:31:12,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:31:53,840 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:31:54,146 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:32:35,092 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:32:35,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:33:16,348 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:33:16,654 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:33:57,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:33:57,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:34:38,861 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:34:39,184 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:35:20,121 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:35:20,427 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:36:01,380 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:36:01,689 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:36:42,639 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:36:42,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:37:23,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:37:24,223 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:38:05,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:38:05,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:38:46,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:38:46,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:39:27,682 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:39:27,988 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:40:08,937 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:40:09,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:40:50,194 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:40:50,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:41:31,456 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:41:31,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:42:12,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:42:13,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:42:53,970 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:42:54,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:43:35,226 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:43:35,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:44:16,482 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:44:16,789 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:44:57,744 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:44:58,067 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:45:39,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:45:39,317 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:46:20,274 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:46:20,579 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:47:01,527 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:47:01,834 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:47:42,790 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:47:43,113 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:48:24,045 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:48:24,350 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:49:05,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:49:05,624 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:49:46,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:49:46,882 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:50:27,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:50:28,143 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:51:09,099 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:51:09,404 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:51:50,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:51:50,668 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:52:31,627 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:52:31,937 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:53:12,890 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:53:13,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:53:54,151 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:53:54,458 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:54:35,412 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:54:35,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:55:16,667 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:55:16,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:55:57,931 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:55:58,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:56:39,186 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:56:39,494 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:57:20,448 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:57:20,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:58:01,711 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:58:02,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:58:42,971 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:58:43,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 08:59:24,231 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 08:59:24,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:00:05,484 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:00:05,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:00:46,734 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:00:47,052 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:01:27,992 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:01:28,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:02:09,249 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:02:09,555 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:02:50,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:02:50,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:03:31,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:03:32,075 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:04:13,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:04:13,336 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:04:54,278 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:04:54,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:05:35,542 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:05:35,851 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:06:16,801 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:06:17,124 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:06:58,059 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:06:58,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:07:39,318 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:07:39,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:08:20,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:08:20,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:09:01,840 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:09:02,156 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:09:43,091 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:09:43,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:10:24,353 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:10:24,661 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:11:05,613 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:11:05,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:11:46,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:11:47,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:12:28,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:12:28,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:13:09,382 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:13:09,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:13:50,646 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:13:50,953 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:14:31,906 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:14:32,209 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:15:13,162 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:15:13,470 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:15:54,429 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:15:54,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:16:35,680 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:16:35,986 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:17:16,936 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:17:17,246 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:17:58,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:17:58,506 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:18:39,462 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:18:39,769 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:19:20,722 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:19:21,026 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:20:01,982 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:20:02,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:20:43,241 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:20:43,556 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:21:24,495 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:21:24,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:22:05,751 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:22:06,057 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:22:47,006 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:22:47,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:23:28,272 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:23:28,580 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:24:09,536 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:24:09,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:24:50,791 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:24:51,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:25:32,047 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:25:32,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:26:13,309 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:26:13,615 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:26:54,573 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:26:54,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:27:35,827 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:27:36,141 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:28:17,091 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:28:17,414 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:28:58,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:28:58,652 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:29:39,600 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:29:39,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:30:20,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:30:21,187 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:31:02,123 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:31:02,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:31:43,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:31:43,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:32:24,642 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:32:24,967 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:33:05,902 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:33:06,228 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:33:47,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:33:47,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:34:28,420 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:34:28,727 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:35:09,684 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:35:09,990 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:35:50,946 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:35:51,260 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:36:32,198 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:36:32,521 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:37:13,462 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:37:13,792 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:37:54,722 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:37:55,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:38:35,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:38:36,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:39:17,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:39:17,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:39:58,495 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:39:58,820 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:40:39,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:40:40,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:41:21,009 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:41:21,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:42:02,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:42:02,574 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:42:43,527 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:42:43,845 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:43:24,785 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:43:25,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:44:06,048 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:44:06,356 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:44:47,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:44:47,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:45:28,561 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:45:28,867 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:46:09,824 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:46:10,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:46:51,076 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:46:51,382 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:47:32,341 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:47:32,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:48:13,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:48:13,912 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:48:54,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:48:55,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:49:36,122 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:49:36,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:50:17,377 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:50:17,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:50:58,643 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:50:58,956 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:51:39,906 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:51:40,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:52:21,164 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:52:21,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:53:02,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:53:02,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:53:43,685 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:53:44,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:54:24,946 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:54:25,252 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:55:06,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:55:06,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:55:47,464 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:55:47,769 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:56:28,725 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:56:29,048 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:57:09,990 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:57:10,316 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:57:51,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:57:51,571 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:58:32,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:58:32,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:59:13,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:59:14,076 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 09:59:55,017 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 09:59:55,341 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:00:36,275 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 10:00:36,596 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:01:17,533 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 10:01:17,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:01:58,793 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 10:01:59,114 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:02:40,053 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. -2024-12-01 10:02:40,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:02:48,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 10:02:48,630 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 10:02:48,953 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 10:02:48,953 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 10:02:49,373 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 10:02:49,373 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-50mj",{"micros":0.0}]']}} -2024-12-01 10:02:49,373 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 10:02:49,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:02:49,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 228, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-50mj",{"micros":547,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":231,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-199",{"micros":27}]}]']}} -2024-12-01 10:02:49,696 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 10:02:49,696 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 10:02:49,696 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 10:03:30,633 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:03:30,956 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:04:11,898 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:04:12,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:04:53,163 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:04:53,476 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:05:34,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:05:34,748 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:06:15,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:06:16,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:06:56,934 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:06:57,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:07:38,201 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:07:38,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:08:19,455 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:08:19,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:09:00,714 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:09:01,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:09:41,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:09:42,285 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:10:23,242 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:10:23,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:11:04,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:11:04,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:11:45,761 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:11:46,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:12:27,026 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:12:27,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:13:08,283 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:13:08,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:13:49,546 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:13:49,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:14:30,800 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:14:31,107 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:15:12,055 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:15:12,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:15:53,318 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:15:53,626 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:16:34,577 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:16:34,884 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:17:15,830 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:17:16,152 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:17:57,097 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:17:57,404 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:18:38,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:18:38,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:19:19,614 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:19:19,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:20:00,876 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:20:01,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:20:42,132 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:20:42,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:21:23,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:21:23,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:22:04,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:22:04,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:22:45,908 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:22:46,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:23:27,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:23:27,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:24:08,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:24:08,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:24:49,678 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:24:50,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:25:30,936 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:25:31,257 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:26:12,192 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:26:12,504 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:26:53,455 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:26:53,771 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:27:34,711 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:27:35,036 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:28:15,975 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:28:16,300 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:28:57,226 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:28:57,550 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:29:38,484 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:29:38,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:30:19,743 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:30:20,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:31:01,001 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:31:01,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:31:42,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:31:42,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:32:23,528 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:32:23,852 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:33:04,780 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:33:05,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:33:46,043 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:33:46,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:34:27,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:34:27,643 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:35:08,573 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:35:08,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:35:49,825 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:35:50,164 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:36:31,078 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:36:31,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:37:12,329 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:37:12,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:37:53,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:37:53,901 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:38:34,835 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:38:35,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:39:16,094 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:39:16,407 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:39:57,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:39:57,680 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:40:38,618 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:40:38,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:41:19,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:41:20,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:42:01,122 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:42:01,427 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:42:42,385 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:42:42,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:43:23,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:43:23,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:44:04,905 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:44:05,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:44:46,165 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:44:46,477 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:45:27,418 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. -2024-12-01 10:45:27,742 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:45:47,100 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 10:45:47,100 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 10:45:47,416 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 10:45:47,416 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 10:45:47,851 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 10:45:47,851 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-mks2",{"micros":0.0}]']}} -2024-12-01 10:45:47,851 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 10:45:48,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:45:48,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 229, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-mks2",{"micros":479,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":254,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-199",{"micros":22}]}]']}} -2024-12-01 10:45:48,176 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 10:45:48,176 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 10:45:48,176 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 10:46:29,105 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:46:29,428 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:47:10,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:47:10,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:47:51,625 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:47:51,948 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:48:32,885 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:48:33,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:49:14,149 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:49:14,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:49:55,408 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:49:55,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:50:36,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:50:36,979 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:51:17,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:51:18,249 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:51:59,177 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:51:59,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:52:40,437 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:52:40,760 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:53:21,703 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:53:22,026 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:54:02,955 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:54:03,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:54:44,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:54:44,543 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:55:25,480 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:55:25,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:56:06,740 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:56:07,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:56:47,991 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:56:48,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:57:29,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:57:29,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:58:10,513 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:58:10,827 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:58:51,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:58:52,074 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 10:59:33,032 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 10:59:33,338 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:00:14,286 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 11:00:14,593 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:00:55,547 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 11:00:55,854 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:01:36,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 11:01:37,141 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:02:18,073 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 11:02:18,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:02:59,336 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 11:02:59,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:03:40,592 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 11:03:40,898 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:04:21,846 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 11:04:22,169 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:05:03,097 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. -2024-12-01 11:05:03,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:05:27,202 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 230, 'op': 0, 'd': {'type': 19, 'tts': False, 'timestamp': '2024-12-01T05:35:28.810000+00:00', 'sticker_items': [{'name': 'Omniman', 'id': '1219037230832685108', 'format_type': 1}], 'referenced_message': {'type': 19, 'tts': False, 'timestamp': '2024-11-24T18:21:22.730000+00:00', 'position': 0, 'pinned': False, 'message_reference': {'type': 0, 'message_id': '1310153494866559046', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}], 'mention_roles': [], 'mention_everyone': False, 'id': '1310309305202901002', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'ching chong', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': []}, 'pinned': False, 'nonce': '1312653273525649408', 'message_reference': {'type': 0, 'message_id': '1310309305202901002', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'id': '1312653275551498252', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-01 11:05:27,202 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 11:05:27,259 - discord.client - DEBUG - Dispatching event message -2024-12-01 11:05:44,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. -2024-12-01 11:05:44,683 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:06:25,626 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. -2024-12-01 11:06:25,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:07:06,885 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. -2024-12-01 11:07:07,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:07:48,149 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. -2024-12-01 11:07:48,475 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:08:29,407 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. -2024-12-01 11:08:29,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:09:10,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. -2024-12-01 11:09:10,986 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:09:51,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. -2024-12-01 11:09:52,249 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:10:14,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 231, 'op': 0, 'd': {'user': {'username': 'roronoa_doraemon', 'public_flags': 64, 'id': '852888084098056242', 'global_name': 'v', 'display_name': 'v', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '4a2cf36a271a4926e350188d3826f8a5'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 11:10:14,719 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 11:10:14,719 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 11:10:14,719 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 11:10:18,352 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 232, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:40:19.947000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312654496668581959', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T05:40:16.446871+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/K2b3-cx4ntGRTyEWQQZeeKHckGC3_1jLPaUPeBncqEA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/K2b3-cx4ntGRTyEWQQZeeKHckGC3_1jLPaUPeBncqEA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 11:10:18,352 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 11:10:18,352 - discord.client - DEBUG - Dispatching event message -2024-12-01 11:10:18,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 233, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:40:19.947000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312654496668581959', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T05:40:16.446000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/K2b3-cx4ntGRTyEWQQZeeKHckGC3_1jLPaUPeBncqEA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/K2b3-cx4ntGRTyEWQQZeeKHckGC3_1jLPaUPeBncqEA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 11:10:18,613 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 11:10:18,613 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 11:10:18,613 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 11:10:33,191 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. -2024-12-01 11:10:33,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:11:14,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. -2024-12-01 11:11:14,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:11:55,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. -2024-12-01 11:11:56,022 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:12:36,961 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. -2024-12-01 11:12:37,268 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:13:18,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. -2024-12-01 11:13:18,547 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:13:59,487 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. -2024-12-01 11:13:59,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:14:40,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. -2024-12-01 11:14:41,053 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:15:21,993 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. -2024-12-01 11:15:22,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:15:24,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 234, 'op': 0, 'd': {'user': {'username': 'roronoa_doraemon', 'public_flags': 64, 'id': '852888084098056242', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 11:15:24,590 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 11:15:24,590 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 11:15:24,590 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 11:15:28,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 235, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:45:30.085000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312655797481640027', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T05:45:26.308564+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/5.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 11:15:28,417 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 11:15:28,417 - discord.client - DEBUG - Dispatching event message -2024-12-01 11:15:28,476 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 236, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:45:30.085000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312655797481640027', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T05:45:26.308000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/5.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 11:15:28,476 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 11:15:28,476 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 11:15:28,476 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 11:16:03,245 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 236. -2024-12-01 11:16:03,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:16:44,504 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 236. -2024-12-01 11:16:44,826 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:16:51,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 237, 'op': 0, 'd': {'user': {'username': 'dissabed_user_gsu234u4', 'public_flags': 64, 'id': '852888084098056242', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 11:16:51,863 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 11:16:51,863 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 11:16:51,863 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 11:16:53,346 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 238, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:46:55.017000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312656153712263208', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Name change', 'timestamp': '2024-12-01T05:46:53.579468+00:00', 'footer': {'text': 'ID: 852888084098056242'}, 'description': '**Before:** roronoa_doraemon\n**+After:** dissabed_user_gsu234u4', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'dissabed_user_gsu234u4', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 11:16:53,346 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 11:16:53,346 - discord.client - DEBUG - Dispatching event message -2024-12-01 11:16:53,389 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 239, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:46:55.017000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312656153712263208', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Name change', 'timestamp': '2024-12-01T05:46:53.579000+00:00', 'footer': {'text': 'ID: 852888084098056242'}, 'description': '**Before:** roronoa_doraemon\n**+After:** dissabed_user_gsu234u4', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'dissabed_user_gsu234u4', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 11:16:53,389 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 11:16:53,389 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 11:16:53,389 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 11:17:25,769 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:17:26,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:18:07,031 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:18:07,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:18:48,282 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:18:48,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:19:29,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:19:29,873 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:20:10,815 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:20:11,139 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:20:52,078 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:20:52,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:21:33,339 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:21:33,663 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:22:14,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:22:14,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:22:55,853 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:22:56,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:23:37,108 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:23:37,431 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:24:18,359 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:24:18,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:24:59,619 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:24:59,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:25:40,870 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:25:41,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:26:22,133 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:26:22,450 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:27:03,393 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:27:03,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:27:44,648 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:27:44,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:28:25,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:28:26,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:29:07,166 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:29:07,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:29:48,417 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:29:48,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:30:29,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:30:29,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:31:10,930 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:31:11,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:31:52,185 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:31:52,492 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:32:33,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:32:33,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:33:14,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:33:15,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:33:55,958 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:33:56,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:34:37,212 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:34:37,519 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:35:18,468 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:35:18,775 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:35:59,724 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:36:00,040 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:36:40,980 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:36:41,301 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:37:22,231 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:37:22,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:38:03,487 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:38:03,810 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:38:44,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:38:45,061 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:39:26,007 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:39:26,329 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:40:07,268 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:40:07,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:40:48,529 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:40:48,852 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:41:29,795 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:41:30,129 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:42:11,057 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:42:11,380 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:42:52,317 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:42:52,640 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:43:33,573 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:43:33,901 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:44:14,825 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:44:15,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:44:56,084 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:44:56,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:45:37,344 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:45:37,668 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:46:18,602 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:46:18,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:46:59,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:47:00,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:47:41,111 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:47:41,434 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:48:22,371 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:48:22,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:49:03,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:49:03,969 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:49:44,888 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:49:45,214 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:50:26,151 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:50:26,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:51:07,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:51:07,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:51:48,661 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:51:48,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:52:29,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:52:30,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:53:11,171 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:53:11,497 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:53:52,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:53:52,744 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:54:33,677 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:54:33,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:55:14,928 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:55:15,255 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:55:56,187 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:55:56,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:56:37,453 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:56:37,773 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:57:18,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:57:19,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:57:59,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:58:00,299 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:58:41,239 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:58:41,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 11:59:22,491 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 11:59:22,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:00:03,748 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 12:00:04,070 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:00:45,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 12:00:45,358 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:01:26,265 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. -2024-12-01 12:01:26,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:01:45,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 240, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 12:01:45,164 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 12:01:45,164 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 12:01:48,699 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 12:01:48,699 - discord.client - DEBUG - Dispatching event message -2024-12-01 12:01:48,775 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 12:01:48,775 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 12:01:48,775 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 12:02:07,522 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 242. -2024-12-01 12:02:07,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:02:48,777 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 242. -2024-12-01 12:02:49,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:03:30,034 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 242. -2024-12-01 12:03:30,357 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:04:11,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 242. -2024-12-01 12:04:11,614 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:04:51,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 243, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 12:04:51,860 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 12:04:51,860 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 12:04:51,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 244, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} -2024-12-01 12:04:51,860 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 12:04:51,860 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. -2024-12-01 12:04:52,551 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 244. -2024-12-01 12:04:52,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:04:53,713 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 12:04:53,713 - discord.client - DEBUG - Dispatching event message -2024-12-01 12:04:53,761 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 12:04:53,761 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 12:04:53,761 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 12:05:33,806 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:05:34,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:06:15,068 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:06:15,390 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:06:56,331 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:06:56,653 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:07:37,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:07:37,915 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:08:18,855 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:08:19,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:09:00,113 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:09:00,451 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:09:41,371 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:09:41,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:10:22,627 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:10:22,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:11:03,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:11:04,203 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:11:45,141 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:11:45,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:12:26,398 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:12:26,720 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:13:07,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:13:07,976 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:13:48,916 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:13:49,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:14:30,169 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:14:30,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:15:11,428 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:15:11,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:15:52,685 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:15:53,008 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:16:33,940 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:16:34,269 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:17:15,206 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:17:15,527 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:17:56,460 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:17:56,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:18:37,721 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:18:38,044 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:19:18,982 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:19:19,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:20:00,245 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:20:00,567 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:20:41,509 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:20:41,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:21:22,774 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:21:23,095 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:22:04,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:22:04,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:22:45,285 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:22:45,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:23:26,538 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:23:26,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:24:07,804 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:24:08,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:24:49,066 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:24:49,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:25:30,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:25:30,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:26:11,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:26:11,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:26:52,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:26:53,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:27:34,107 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:27:34,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:28:15,363 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:28:15,685 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:28:56,624 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:28:56,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:29:37,876 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:29:38,203 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:30:19,141 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:30:19,468 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:31:00,395 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:31:00,717 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:31:41,659 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:31:41,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:32:22,909 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:32:23,232 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:33:04,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:33:04,490 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:33:45,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:33:45,754 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:34:26,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:34:27,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:35:07,959 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:35:08,287 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:35:49,218 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:35:49,540 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:36:30,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:36:30,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:37:11,735 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:37:12,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:37:52,986 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:37:53,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:38:34,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:38:34,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:39:15,507 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:39:15,831 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:39:56,772 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:39:57,079 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:40:38,034 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:40:38,348 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:41:19,290 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:41:19,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:42:00,554 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:42:00,878 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:42:41,816 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:42:42,138 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:43:23,079 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:43:23,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:44:04,342 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:44:04,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:44:45,603 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:44:45,924 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:45:26,858 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:45:27,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:46:08,125 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:46:08,447 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:46:49,378 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:46:49,701 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:47:30,638 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:47:30,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:48:11,891 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:48:12,209 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:48:53,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:48:53,483 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:49:34,408 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:49:34,714 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:50:15,665 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:50:15,972 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:50:56,921 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:50:57,228 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:51:38,185 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:51:38,507 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:52:19,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:52:19,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:53:00,709 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:53:01,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:53:41,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:53:42,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:54:23,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:54:23,559 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:55:04,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:55:04,796 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:55:45,728 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:55:46,050 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:56:26,992 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:56:27,316 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:57:08,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:57:08,570 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:57:49,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:57:49,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:58:30,750 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:58:31,080 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:59:12,012 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:59:12,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 12:59:53,279 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. -2024-12-01 12:59:53,601 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:00:26,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 247, 'op': 0, 'd': {'user': {'username': 'dissabed_user_gsu234u4', 'public_flags': 64, 'id': '852888084098056242', 'global_name': 'w', 'display_name': 'w', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 13:00:26,219 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 13:00:26,219 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 13:00:26,219 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 13:00:34,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. -2024-12-01 13:00:34,867 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:01:15,791 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. -2024-12-01 13:01:16,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:01:57,057 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. -2024-12-01 13:01:57,381 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:02:38,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. -2024-12-01 13:02:38,646 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:03:19,582 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. -2024-12-01 13:03:19,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:04:00,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. -2024-12-01 13:04:01,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:04:42,100 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. -2024-12-01 13:04:42,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:05:18,847 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 13:05:18,847 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 13:05:18,847 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 13:05:23,357 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:05:23,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:06:04,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:06:04,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:06:45,886 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:06:46,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:07:27,151 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:07:27,458 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:08:08,412 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:08:08,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:08:49,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:08:49,987 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:09:30,914 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:09:31,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:10:12,169 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:10:12,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:10:53,428 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:10:53,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:11:34,694 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:11:35,018 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:12:15,946 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:12:16,267 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:12:57,201 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:12:57,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:13:38,459 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:13:38,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:14:19,724 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:14:20,125 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:15:00,986 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:15:01,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:15:42,245 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:15:42,550 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:16:23,509 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:16:23,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:17:04,766 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:17:05,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:17:46,020 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:17:46,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:18:27,272 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:18:27,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:19:08,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:19:08,884 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:19:49,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:19:50,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:20:31,046 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:20:31,359 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:21:12,302 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:21:12,609 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:21:53,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:21:53,861 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:22:34,807 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:22:35,132 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:23:16,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:23:16,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:23:57,314 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:23:57,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:24:38,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:24:38,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:25:19,837 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:25:20,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:26:01,088 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:26:01,480 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:26:42,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:26:42,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:27:23,596 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:27:23,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:28:04,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:28:05,177 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:28:46,120 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:28:46,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:29:27,372 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:29:27,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:30:08,631 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:30:09,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:30:49,888 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:30:50,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:31:31,154 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:31:31,511 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:32:12,414 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:32:12,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:32:53,676 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:32:53,998 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:33:34,935 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:33:35,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:34:16,192 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:34:16,581 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:34:57,457 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:34:57,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:35:38,714 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:35:39,374 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:36:19,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:36:20,350 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:37:01,223 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:37:01,617 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:37:42,481 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:37:42,869 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:38:23,747 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:38:24,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:39:05,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:39:05,413 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:39:46,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:39:46,679 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:40:27,535 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:40:27,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:41:08,789 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:41:09,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:41:50,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:41:50,456 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:42:31,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:42:31,711 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:43:12,565 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:43:12,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:43:53,831 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:43:54,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:44:35,081 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:44:35,414 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:45:16,339 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:45:16,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:45:57,592 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:45:57,932 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:46:38,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:46:39,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:47:20,113 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:47:20,447 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:48:01,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:48:01,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:48:42,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:48:42,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:49:23,881 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:49:24,251 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:50:05,135 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:50:05,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:50:46,400 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:50:46,720 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:51:27,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:51:27,977 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:52:08,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:52:09,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:52:50,173 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:52:50,543 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:53:31,440 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:53:31,793 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:54:12,699 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:54:13,021 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:54:53,958 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:54:54,280 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:55:35,214 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:55:35,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:56:16,470 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:56:16,791 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:56:57,723 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:56:58,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:57:38,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:57:39,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:58:20,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:58:20,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:59:01,500 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:59:01,825 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 13:59:42,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 13:59:43,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:00:24,019 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 14:00:24,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:01:05,277 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 14:01:05,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:01:46,531 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. -2024-12-01 14:01:46,852 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:02:03,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 249, 'op': 0, 'd': {'user': {'username': 'kilgore6327', 'public_flags': 64, 'id': '729386126963638322', 'global_name': 'Kilgre', 'display_name': 'Kilgre', 'discriminator': '0', 'clan': {'tag': 'EGO', 'identity_guild_id': '1253851511403053076', 'identity_enabled': True, 'badge': '455f53dde5ea1792ab6ec3392093916b'}, 'bot': False, 'avatar_decoration_data': None, 'avatar': '791f9488b8d7bb07c69f395f06255392'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-30T18:59:27.332000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 14:02:03,289 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 14:02:03,289 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 14:02:03,289 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 14:02:07,533 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 250, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T08:32:09.622000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312697738579677247', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T08:32:05.480439+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/2OkFMSWFRmm3Ba7GdE_fGax6usTxSgDZeyO5BqpWdAI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 729386126963638322'}, 'description': '<@729386126963638322>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/2OkFMSWFRmm3Ba7GdE_fGax6usTxSgDZeyO5BqpWdAI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png', 'name': 'kilgore6327', 'icon_url': 'https://cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 14:02:07,533 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 14:02:07,533 - discord.client - DEBUG - Dispatching event message -2024-12-01 14:02:07,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 251, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T08:32:09.622000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312697738579677247', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T08:32:05.480000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/2OkFMSWFRmm3Ba7GdE_fGax6usTxSgDZeyO5BqpWdAI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 729386126963638322'}, 'description': '<@729386126963638322>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/2OkFMSWFRmm3Ba7GdE_fGax6usTxSgDZeyO5BqpWdAI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png', 'name': 'kilgore6327', 'icon_url': 'https://cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 14:02:07,613 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 14:02:07,613 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 14:02:07,613 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 14:02:27,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:02:28,164 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:03:09,056 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:03:09,380 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:03:50,309 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:03:50,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:04:31,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:04:31,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:05:12,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:05:13,158 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:05:54,093 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:05:54,415 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:06:35,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:06:35,683 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:07:16,600 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:07:16,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:07:57,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:07:58,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:08:39,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:08:39,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:09:20,376 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:09:20,699 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:10:01,629 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:10:01,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:10:42,882 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:10:43,203 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:11:24,135 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:11:24,458 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:12:05,388 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:12:05,711 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:12:46,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. -2024-12-01 14:12:46,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:13:22,525 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 14:13:22,525 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 14:13:22,847 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 14:13:22,847 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 14:13:23,265 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 14:13:23,265 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-ltj9",{"micros":0.0}]']}} -2024-12-01 14:13:23,265 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 14:13:23,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:13:23,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 252, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-ltj9",{"micros":386,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":169,"calls":[]},"session_lookup_finished",{"micros":10,"calls":[]},"discord-sessions-prd-1-199",{"micros":26}]}]']}} -2024-12-01 14:13:23,603 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 14:13:23,603 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 14:13:23,603 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 14:14:04,533 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 252. -2024-12-01 14:14:04,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:14:25,728 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 14:14:25,728 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 14:14:25,728 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 14:14:27,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 254, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T08:44:29.718000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312700842767290389', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T08:44:27.916552+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/W_YaYeh5ytrkAbpayXT6llgjLvfZRbBWF_Vl0eKtziI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/W_YaYeh5ytrkAbpayXT6llgjLvfZRbBWF_Vl0eKtziI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 14:14:27,615 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 14:14:27,615 - discord.client - DEBUG - Dispatching event message -2024-12-01 14:14:27,661 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 255, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T08:44:29.718000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312700842767290389', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T08:44:27.916000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/W_YaYeh5ytrkAbpayXT6llgjLvfZRbBWF_Vl0eKtziI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/W_YaYeh5ytrkAbpayXT6llgjLvfZRbBWF_Vl0eKtziI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 14:14:27,661 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 14:14:27,661 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 14:14:27,661 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 14:14:45,791 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:14:46,114 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:15:27,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:15:27,381 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:16:08,318 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:16:08,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:16:49,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:16:49,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:17:30,835 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:17:31,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:18:12,093 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:18:12,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:18:53,351 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:18:53,674 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:19:34,606 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:19:34,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:20:15,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:20:16,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:20:57,124 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:20:57,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:21:38,381 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:21:38,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:22:19,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:22:19,966 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:23:00,909 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:23:01,239 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:23:42,170 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:23:42,498 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:24:23,425 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:24:23,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:25:04,683 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:25:05,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:25:45,944 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:25:46,263 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:26:27,202 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:26:27,542 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:27:08,468 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:27:08,798 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:27:49,722 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:27:50,044 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:28:30,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:28:31,305 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:29:12,232 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:29:12,554 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:29:53,484 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:29:53,806 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:30:34,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:30:35,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:31:16,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:31:16,330 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:31:57,268 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:31:57,591 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:32:38,529 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:32:38,850 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:33:19,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:33:20,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:34:01,050 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:34:01,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:34:42,302 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:34:42,624 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:35:23,566 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:35:23,887 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:36:04,823 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:36:05,146 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:36:46,076 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:36:46,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:37:27,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:37:27,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:38:08,589 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:38:08,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:38:49,842 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:38:50,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:39:31,098 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:39:31,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:40:12,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:40:12,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:40:53,622 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:40:53,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:41:34,877 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:41:35,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:42:16,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:42:16,450 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:42:57,404 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:42:57,717 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:43:38,661 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:43:38,968 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:44:19,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:44:20,223 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:45:01,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:45:01,489 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:45:42,442 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:45:42,748 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:46:23,705 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:46:24,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:47:04,963 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:47:05,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:47:46,221 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:47:46,527 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:48:27,476 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:48:27,779 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:49:08,735 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:49:09,041 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:49:49,988 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:49:50,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:50:31,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:50:31,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:51:12,512 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:51:12,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:51:53,764 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:51:54,070 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:52:35,021 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:52:35,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:53:16,283 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:53:16,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:53:57,547 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:53:57,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:54:38,800 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:54:39,107 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:55:20,057 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:55:20,379 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:56:01,315 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:56:01,627 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:56:42,567 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. -2024-12-01 14:56:42,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:57:03,469 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 14:57:03,469 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 14:57:03,469 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 14:57:07,765 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 257, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T09:27:10.041000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312711581540417546', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T09:27:05.786946+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/fCfp0jX4NL8vM5Vpdp6H2HhAR8icnxgJrOKZwVTy-Ag/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/fCfp0jX4NL8vM5Vpdp6H2HhAR8icnxgJrOKZwVTy-Ag/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 14:57:07,765 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 14:57:07,765 - discord.client - DEBUG - Dispatching event message -2024-12-01 14:57:07,822 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 258, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T09:27:10.041000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312711581540417546', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T09:27:05.786000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/fCfp0jX4NL8vM5Vpdp6H2HhAR8icnxgJrOKZwVTy-Ag/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/fCfp0jX4NL8vM5Vpdp6H2HhAR8icnxgJrOKZwVTy-Ag/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 14:57:07,822 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 14:57:07,822 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 14:57:07,822 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 14:57:23,821 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 14:57:24,130 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:58:05,078 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 14:58:05,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:58:46,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 14:58:46,635 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 14:59:27,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 14:59:27,895 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:00:08,839 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:00:09,146 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:00:50,104 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:00:50,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:01:31,356 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:01:31,671 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:02:12,610 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:02:12,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:02:53,863 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:02:54,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:03:35,128 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:03:35,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:04:16,386 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:04:16,695 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:04:57,645 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:04:57,968 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:05:38,911 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:05:39,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:06:20,164 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:06:20,471 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:07:01,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:07:01,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:07:42,685 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:07:43,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:08:23,944 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:08:24,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:09:05,208 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:09:05,518 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:09:46,464 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:09:46,786 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:10:27,721 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:10:28,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:11:08,976 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:11:09,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:11:50,237 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:11:50,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:12:31,492 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:12:31,806 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:13:12,752 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:13:13,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:13:54,006 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:13:54,329 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:14:35,259 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:14:35,566 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:15:16,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:15:16,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:15:57,784 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:15:58,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:16:39,044 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:16:39,350 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:17:20,298 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:17:20,610 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:18:01,561 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:18:01,873 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:18:42,817 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:18:43,123 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:19:24,073 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:19:24,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:20:05,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:20:05,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:20:46,603 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:20:46,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:21:27,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:21:28,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:22:09,115 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:22:09,432 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:22:50,367 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. -2024-12-01 15:22:50,677 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:23:27,469 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 259, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 15:23:27,469 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:23:27,469 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 15:23:27,968 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:23:27,971 - discord.client - DEBUG - Dispatching event message -2024-12-01 15:23:28,039 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:23:28,039 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 15:23:28,039 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 15:23:31,622 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 261. -2024-12-01 15:23:31,930 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:23:34,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 262, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': '8821dbc0fcc43607215c313477b01450', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 15:23:34,042 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:23:34,042 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 15:23:37,676 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 263, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '42156a331d78f9ecbe94d4dd529dc373', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 15:23:37,676 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:23:37,676 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 15:23:37,948 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:23:37,948 - discord.client - DEBUG - Dispatching event message -2024-12-01 15:23:37,980 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:23:37,980 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 15:23:37,980 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 15:24:12,885 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:24:13,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:24:54,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:24:54,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:25:35,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:25:35,709 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:26:16,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:26:16,966 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:26:57,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:26:58,231 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:27:39,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:27:39,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:28:20,436 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:28:20,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:29:01,689 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:29:01,995 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:29:42,943 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:29:43,249 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:30:24,198 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:30:24,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:31:05,456 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:31:05,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:31:46,709 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:31:47,014 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:32:27,974 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:32:28,281 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:33:09,232 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:33:09,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:33:50,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:33:50,790 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:34:31,749 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:34:32,057 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:35:13,012 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:35:13,318 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:35:54,271 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:35:54,579 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:36:35,533 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:36:35,840 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:37:16,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:37:17,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:37:58,058 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:37:58,363 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:38:39,316 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:38:39,623 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:39:20,576 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:39:20,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:40:01,828 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:40:02,133 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:40:43,082 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. -2024-12-01 15:40:43,390 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:40:45,414 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 266, 'op': 0, 'd': {'user': {'username': 'mal109', 'public_flags': 128, 'id': '472544092220424192', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '325cb8d4407eada1a63607f083c47b4e'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-08T13:53:38.101000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 15:40:45,423 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:40:45,434 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 15:40:45,434 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 15:40:48,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 267, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T10:10:50.458000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312722572365795369', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T10:10:47.858442+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 15:40:48,054 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:40:48,054 - discord.client - DEBUG - Dispatching event message -2024-12-01 15:40:48,135 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 268, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T10:10:50.458000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312722572365795369', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T10:10:47.858000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 15:40:48,135 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:40:48,135 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 15:40:48,135 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 15:41:24,349 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 268. -2024-12-01 15:41:24,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:42:05,603 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 268. -2024-12-01 15:42:05,910 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:42:06,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 269, 'op': 0, 'd': {'user': {'username': 'mal109', 'public_flags': 128, 'id': '472544092220424192', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'cc3fec151f1df4bb4b588e05a249c8f9'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-08T13:53:38.101000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 15:42:06,039 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:42:06,039 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 15:42:06,039 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 15:42:08,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 270, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T10:12:10.485000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312722908023488593', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T10:12:08.452734+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/5i2NT6rmOhtzA7FJ5rG82TDQTSjd4NkkkPP1mD8zxIE/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/5i2NT6rmOhtzA7FJ5rG82TDQTSjd4NkkkPP1mD8zxIE/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 15:42:08,086 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:42:08,086 - discord.client - DEBUG - Dispatching event message -2024-12-01 15:42:08,118 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 271, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T10:12:10.485000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312722908023488593', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T10:12:08.452000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/5i2NT6rmOhtzA7FJ5rG82TDQTSjd4NkkkPP1mD8zxIE/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/5i2NT6rmOhtzA7FJ5rG82TDQTSjd4NkkkPP1mD8zxIE/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 15:42:08,118 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 15:42:08,118 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 15:42:08,118 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 15:42:46,855 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:42:47,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:43:28,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:43:28,419 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:44:09,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:44:09,675 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:44:50,615 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:44:50,921 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:45:31,871 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:45:32,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:46:13,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:46:13,434 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:46:54,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:46:54,701 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:47:35,645 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:47:35,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:48:16,899 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:48:17,222 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:48:58,151 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:48:58,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:49:39,416 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:49:39,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:50:20,668 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:50:20,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:51:01,920 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:51:02,226 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:51:43,178 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:51:43,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:52:24,432 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:52:24,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:53:05,688 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:53:05,995 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:53:46,953 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:53:47,259 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:54:28,211 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:54:28,534 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:55:09,473 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:55:09,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:55:50,725 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:55:51,048 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:56:31,981 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:56:32,286 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:57:13,239 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:57:13,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:57:54,493 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:57:54,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:58:35,754 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:58:36,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:59:17,011 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:59:17,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 15:59:58,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 15:59:58,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:00:39,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:00:39,850 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:01:20,784 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:01:21,107 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:02:02,036 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:02:02,348 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:02:43,295 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:02:43,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:03:24,558 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:03:24,883 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:04:05,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:04:06,136 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:04:47,068 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:04:47,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:05:28,333 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:05:28,638 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:06:09,595 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:06:09,902 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:06:50,850 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:06:51,172 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:07:32,113 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:07:32,435 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:08:13,366 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. -2024-12-01 16:08:13,673 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:08:29,674 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 272, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': '8821dbc0fcc43607215c313477b01450', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 16:08:29,685 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 16:08:29,685 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 16:08:54,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:08:54,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:09:35,887 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:09:36,195 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:10:17,153 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:10:17,475 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:10:58,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:10:58,714 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:11:39,675 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:11:39,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:12:20,927 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:12:21,252 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:13:02,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:13:02,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:13:43,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:13:43,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:14:24,707 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:14:25,025 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:15:05,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:15:06,287 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:15:47,223 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:15:47,528 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:16:28,489 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:16:28,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:17:09,742 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:17:10,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:17:50,994 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:17:51,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:18:32,254 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:18:32,559 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:19:13,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:19:13,822 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:19:54,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:19:55,080 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:20:36,028 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:20:36,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:21:17,280 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:21:17,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:21:58,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:21:58,848 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:22:39,788 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:22:40,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:23:21,044 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. -2024-12-01 16:23:21,366 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:23:46,530 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 273, 'op': 0, 'd': {'user': {'username': 'tejas01', 'public_flags': 64, 'id': '742431818233544747', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '9fe9a5bbbfc76155e1132104235547ce'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-02-21T16:03:14.352000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 16:23:46,530 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 16:23:46,551 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 16:23:46,551 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 16:24:02,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 273. -2024-12-01 16:24:02,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:24:05,661 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 274, 'op': 0, 'd': {'user': {'username': 'tejas01', 'public_flags': 64, 'id': '742431818233544747', 'global_name': '` Tejas', 'display_name': '` Tejas', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '9fe9a5bbbfc76155e1132104235547ce'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-02-21T16:03:14.352000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 16:24:05,661 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 16:24:05,661 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 16:24:05,685 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 16:24:43,566 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:24:43,872 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:25:24,829 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:25:25,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:26:06,095 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:26:06,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:26:47,353 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:26:47,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:27:28,611 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:27:28,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:28:09,870 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:28:10,177 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:28:51,129 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:28:51,436 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:29:32,383 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:29:32,700 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:30:13,640 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:30:13,948 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:30:54,905 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:30:55,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:31:36,170 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:31:36,481 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:32:17,424 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:32:17,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:32:58,677 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:32:58,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:33:39,943 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:33:40,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:34:21,208 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:34:21,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:35:02,460 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:35:02,772 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:35:43,724 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:35:44,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:36:24,984 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:36:25,290 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:37:06,237 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:37:06,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:37:47,487 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:37:47,801 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:38:28,751 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:38:29,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:39:10,013 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:39:10,319 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:39:51,269 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:39:51,575 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:40:32,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:40:32,856 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:41:13,799 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:41:14,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:41:55,064 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:41:55,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:42:36,315 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:42:36,620 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:43:17,568 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:43:17,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:43:58,826 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:43:59,132 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:44:40,089 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:44:40,426 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:45:21,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:45:21,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:46:02,607 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:46:02,936 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:46:43,865 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:46:44,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:47:25,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:47:25,450 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:48:06,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:48:06,699 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:48:47,638 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:48:47,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:49:28,896 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:49:29,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:50:10,158 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:50:10,465 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:50:51,417 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:50:51,724 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:51:32,672 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:51:32,978 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:52:13,933 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:52:14,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:52:55,190 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:52:55,497 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:53:36,446 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:53:36,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:54:17,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:54:18,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:54:58,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:54:59,276 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:55:40,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:55:40,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:56:21,476 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:56:21,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:57:02,732 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:57:03,038 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:57:43,998 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:57:44,307 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:58:25,252 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:58:25,559 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:59:06,517 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. -2024-12-01 16:59:06,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 16:59:40,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 275, 'op': 0, 'd': {'member': {'user': {'username': 'cyber_69', 'public_flags': 256, 'id': '765173058586542090', 'global_name': 'YashXD', 'display_name': 'YashXD', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079820325006618634', '1062343535535325235', '1087734833318465587', '1088037558648311829', '926435586238185494', '1088385891116003380', '1083973062858391642', '1062251705921720411', '1087735090324451389', '1168310895592611870'], 'premium_since': '2024-10-19T11:47:25.418000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-12-07T10:05:45.431000+00:00', 'flags': 6, 'deaf': False, 'communication_disabled_until': None, 'banner': '7c6ee4e73a69da1b3f131281ad8ee154', 'avatar': None}, 'user_id': '765173058586542090', 'suppress': False, 'session_id': '331a9b70ee50736628fd8fca6e11c244', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 16:59:40,056 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 16:59:40,056 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 16:59:42,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 276, 'op': 0, 'd': {'member': {'user': {'username': 'cyber_69', 'public_flags': 256, 'id': '765173058586542090', 'global_name': 'YashXD', 'display_name': 'YashXD', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079820325006618634', '1062343535535325235', '1087734833318465587', '1088037558648311829', '926435586238185494', '1088385891116003380', '1083973062858391642', '1062251705921720411', '1087735090324451389', '1168310895592611870'], 'premium_since': '2024-10-19T11:47:25.418000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-12-07T10:05:45.431000+00:00', 'flags': 6, 'deaf': False, 'communication_disabled_until': None, 'banner': '7c6ee4e73a69da1b3f131281ad8ee154', 'avatar': None}, 'user_id': '765173058586542090', 'suppress': False, 'session_id': '331a9b70ee50736628fd8fca6e11c244', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 16:59:42,694 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 16:59:42,694 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 16:59:43,557 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 16:59:43,557 - discord.client - DEBUG - Dispatching event message -2024-12-01 16:59:43,636 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 16:59:43,636 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 16:59:43,652 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 16:59:47,769 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 278. -2024-12-01 16:59:48,091 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:00:18,286 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 279, 'op': 0, 'd': {'user': {'username': 'mal109', 'public_flags': 128, 'id': '472544092220424192', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '325cb8d4407eada1a63607f083c47b4e'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-08T13:53:38.101000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 17:00:18,286 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:00:18,286 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 17:00:18,286 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 17:00:18,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 280, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T11:30:21.125000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312742581993738321', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T11:30:20.950833+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 17:00:18,535 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:00:18,535 - discord.client - DEBUG - Dispatching event message -2024-12-01 17:00:18,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 281, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T11:30:21.125000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312742581993738321', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T11:30:20.950000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 17:00:18,595 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:00:18,595 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 17:00:18,595 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 17:00:29,020 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:00:29,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:01:10,287 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:01:10,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:01:51,543 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:01:51,866 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:02:32,800 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:02:33,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:03:14,055 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:03:14,367 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:03:55,310 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:03:55,617 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:04:36,570 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:04:36,875 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:05:17,834 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:05:18,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:05:59,096 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:05:59,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:06:40,357 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:06:40,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:07:21,619 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:07:21,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:08:02,874 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:08:03,179 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:08:44,132 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:08:44,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:09:25,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:09:25,712 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:10:06,652 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:10:06,978 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:10:47,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:10:48,236 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:11:29,176 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. -2024-12-01 17:11:29,501 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:11:38,247 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 17:11:38,247 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 17:11:38,570 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 17:11:38,570 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 17:11:39,037 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 17:11:39,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-zhfn",{"micros":0.0}]']}} -2024-12-01 17:11:39,037 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 17:11:39,374 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:11:39,374 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 282, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-zhfn",{"micros":2072,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":1847,"calls":[]},"session_lookup_finished",{"micros":12,"calls":[]},"discord-sessions-prd-1-199",{"micros":26}]}]']}} -2024-12-01 17:11:39,374 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:11:39,374 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 17:11:39,374 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 17:12:20,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. -2024-12-01 17:12:20,628 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:13:01,566 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. -2024-12-01 17:13:01,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:13:42,817 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. -2024-12-01 17:13:43,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:14:24,075 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. -2024-12-01 17:14:24,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:15:05,338 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. -2024-12-01 17:15:05,675 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:15:46,594 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. -2024-12-01 17:15:46,934 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:16:24,706 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 283, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 17:16:24,706 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:16:24,706 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 17:16:27,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 283. -2024-12-01 17:16:28,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:16:28,652 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:16:28,652 - discord.client - DEBUG - Dispatching event message -2024-12-01 17:16:28,737 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:16:28,737 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 17:16:28,737 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 17:17:09,110 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 285. -2024-12-01 17:17:09,467 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:17:14,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 286, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 17:17:14,531 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:17:14,531 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 17:17:18,630 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:17:18,630 - discord.client - DEBUG - Dispatching event message -2024-12-01 17:17:18,662 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:17:18,662 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 17:17:18,662 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 17:17:50,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. -2024-12-01 17:17:50,700 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:18:31,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. -2024-12-01 17:18:31,978 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:19:12,877 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. -2024-12-01 17:19:13,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:19:54,129 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. -2024-12-01 17:19:54,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:20:35,385 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. -2024-12-01 17:20:35,712 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:21:16,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. -2024-12-01 17:21:17,006 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:21:55,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 289, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': '8821dbc0fcc43607215c313477b01450', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 17:21:55,400 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:21:55,400 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 17:21:57,907 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 289. -2024-12-01 17:21:58,252 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:22:39,160 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 289. -2024-12-01 17:22:39,571 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:23:20,412 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 289. -2024-12-01 17:23:20,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:23:54,250 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 290, 'op': 0, 'd': {'type': 19, 'tts': False, 'timestamp': '2024-12-01T11:53:56.825000+00:00', 'referenced_message': {'type': 19, 'tts': False, 'timestamp': '2024-12-01T05:35:28.810000+00:00', 'sticker_items': [{'name': 'Omniman', 'id': '1219037230832685108', 'format_type': 1}], 'position': 0, 'pinned': False, 'message_reference': {'type': 0, 'message_id': '1310309305202901002', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}], 'mention_roles': [], 'mention_everyone': False, 'id': '1312653275551498252', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'attachments': []}, 'pinned': False, 'nonce': '1312748324519936000', 'message_reference': {'type': 0, 'message_id': '1312653275551498252', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079820325006618634', '1062343535535325235', '1087734833318465587', '1088037558648311829', '926435586238185494', '1088385891116003380', '1083973062858391642', '1062251705921720411', '1087735090324451389', '1168310895592611870'], 'premium_since': '2024-10-19T11:47:25.418000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-12-07T10:05:45.431000+00:00', 'flags': 6, 'deaf': False, 'communication_disabled_until': None, 'banner': '7c6ee4e73a69da1b3f131281ad8ee154', 'avatar': None}, 'id': '1312748519869775902', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'cyber_69', 'public_flags': 256, 'primary_guild': None, 'id': '765173058586542090', 'global_name': 'YashXD', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-01 17:23:54,251 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:23:54,252 - discord.client - DEBUG - Dispatching event message -2024-12-01 17:24:01,665 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 290. -2024-12-01 17:24:02,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:24:05,085 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 291, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 17:24:05,086 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:24:05,087 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 17:24:05,920 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 292, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': '8821dbc0fcc43607215c313477b01450', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 17:24:05,921 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:24:05,921 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 17:24:06,158 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 293, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': '8821dbc0fcc43607215c313477b01450', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 17:24:06,158 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:24:06,159 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 17:24:07,296 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 294, 'op': 0, 'd': {'member': {'user': {'username': 'cyber_69', 'public_flags': 256, 'id': '765173058586542090', 'global_name': 'YashXD', 'display_name': 'YashXD', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079820325006618634', '1062343535535325235', '1087734833318465587', '1088037558648311829', '926435586238185494', '1088385891116003380', '1083973062858391642', '1062251705921720411', '1087735090324451389', '1168310895592611870'], 'premium_since': '2024-10-19T11:47:25.418000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-12-07T10:05:45.431000+00:00', 'flags': 6, 'deaf': False, 'communication_disabled_until': None, 'banner': '7c6ee4e73a69da1b3f131281ad8ee154', 'avatar': None}, 'user_id': '765173058586542090', 'suppress': False, 'session_id': '331a9b70ee50736628fd8fca6e11c244', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 17:24:07,296 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:24:07,297 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 17:24:08,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 295, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '42156a331d78f9ecbe94d4dd529dc373', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 17:24:08,531 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:24:08,532 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 17:24:08,565 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 296, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} -2024-12-01 17:24:08,565 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:24:08,565 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. -2024-12-01 17:24:08,839 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:24:08,839 - discord.client - DEBUG - Dispatching event message -2024-12-01 17:24:08,884 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:24:08,884 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 17:24:08,884 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 17:24:42,925 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:24:43,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:25:24,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:25:24,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:26:05,443 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:26:05,861 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:26:46,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:26:47,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:27:27,958 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:27:28,382 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:28:09,221 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:28:09,643 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:28:50,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:28:50,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:29:31,743 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:29:32,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:30:12,999 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:30:13,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:30:54,258 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:30:54,656 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:31:35,511 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:31:35,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:32:16,762 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:32:17,138 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:32:58,018 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:32:58,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:33:39,277 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:33:39,658 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:34:20,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:34:20,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:35:01,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:35:02,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:35:43,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:35:43,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:36:24,315 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:36:24,739 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:37:05,570 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:37:05,983 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:37:46,832 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:37:47,563 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:38:28,083 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:38:28,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:39:09,348 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:39:09,754 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:39:50,609 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:39:51,022 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:40:31,861 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:40:32,226 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:41:13,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:41:13,511 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:41:54,383 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:41:54,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:42:35,640 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:42:35,971 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:43:16,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:43:17,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:43:58,153 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:43:58,557 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:44:39,414 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:44:40,138 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:45:20,670 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. -2024-12-01 17:45:21,000 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:45:49,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 17:45:49,455 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 17:45:49,847 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 17:45:49,847 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 17:45:50,536 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 17:45:50,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-r554",{"micros":0.0}]']}} -2024-12-01 17:45:50,537 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 17:45:50,921 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:45:50,924 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 299, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-r554",{"micros":535,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":297,"calls":[]},"session_lookup_finished",{"micros":14,"calls":[]},"discord-sessions-prd-1-199",{"micros":35}]}]']}} -2024-12-01 17:45:50,925 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 17:45:50,925 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 17:45:50,926 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 17:46:31,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:46:32,179 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:47:13,062 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:47:13,410 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:47:54,319 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:47:54,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:48:35,586 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:48:35,971 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:49:16,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:49:17,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:49:58,104 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:49:58,476 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:50:39,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:50:39,760 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:51:20,610 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:51:20,997 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:52:01,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:52:02,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:52:43,120 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:52:43,511 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:53:24,372 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:53:24,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:54:05,629 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:54:06,021 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:54:46,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:54:47,262 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:55:28,150 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:55:28,465 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:56:09,404 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:56:09,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:56:50,655 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:56:50,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:57:31,914 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:57:32,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:58:13,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:58:13,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:58:54,424 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:58:54,825 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 17:59:35,687 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 17:59:36,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:00:16,942 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:00:17,330 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:00:58,204 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:00:58,568 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:01:39,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:01:39,869 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:02:20,720 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:02:21,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:03:01,975 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:03:02,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:03:43,229 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:03:43,555 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:04:24,492 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:04:24,899 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:05:05,756 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:05:06,142 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:05:47,014 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:05:47,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:06:28,269 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:06:28,658 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:07:09,524 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:07:09,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:07:50,781 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:07:51,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:08:32,042 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:08:32,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:09:13,298 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:09:13,703 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:09:54,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:09:54,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:10:35,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:10:36,202 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:11:17,073 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:11:17,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:11:58,324 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:11:58,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:12:39,586 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:12:39,955 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:13:20,845 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:13:21,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:14:02,110 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:14:02,518 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:14:43,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:14:43,765 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:15:24,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:15:25,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:16:05,880 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:16:06,304 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:16:47,144 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:16:47,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:17:28,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:17:28,794 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:18:09,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. -2024-12-01 18:18:10,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:18:43,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 300, 'op': 0, 'd': {'user': {'username': 'dissabed_user_gsu234u4', 'public_flags': 64, 'id': '852888084098056242', 'global_name': '()_()', 'display_name': '()_()', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 18:18:43,375 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 18:18:43,376 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 18:18:43,376 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 18:18:50,914 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:18:51,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:19:32,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:19:32,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:20:13,434 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:20:13,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:20:54,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:20:55,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:21:35,951 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:21:36,362 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:22:17,207 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:22:17,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:22:58,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:22:58,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:23:39,724 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:23:40,137 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:24:20,986 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:24:21,328 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:25:02,251 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:25:02,633 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:25:43,509 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:25:43,886 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:26:24,775 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:26:25,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:27:06,027 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:27:06,372 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:27:47,292 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:27:47,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:28:28,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:28:28,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:29:09,807 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:29:10,521 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:29:51,059 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:29:51,458 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:30:32,325 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:30:32,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:31:13,583 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:31:13,964 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:31:54,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:31:55,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:32:36,099 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:32:36,512 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:33:17,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:33:17,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:33:58,618 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:33:59,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:34:39,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:34:40,269 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:35:21,135 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:35:21,525 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:36:02,394 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:36:02,771 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:36:43,650 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:36:44,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:37:24,907 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:37:25,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:38:06,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:38:06,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:38:47,423 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:38:47,827 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:39:28,687 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:39:29,096 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:40:09,939 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:40:10,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:40:51,201 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:40:51,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:41:32,455 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:41:32,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:42:13,720 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:42:14,082 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:42:54,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:42:55,393 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:43:36,252 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:43:36,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:44:17,514 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:44:17,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:44:58,776 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:44:59,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:45:40,026 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:45:40,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:46:21,293 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:46:21,642 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:47:02,558 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:47:02,924 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:47:43,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:47:44,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:48:25,073 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:48:25,475 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:49:06,332 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:49:06,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:49:47,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:49:47,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:50:28,839 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:50:29,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:51:10,101 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:51:10,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:51:51,360 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:51:51,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:52:32,617 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:52:33,262 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:53:13,873 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:53:14,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:53:55,137 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:53:55,542 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:54:36,402 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:54:37,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:55:17,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:55:18,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:55:58,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:55:59,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:56:40,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:56:40,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:57:21,432 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:57:21,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:58:02,686 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:58:03,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:58:43,942 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:58:44,341 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 18:59:25,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 18:59:25,577 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:00:06,462 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:00:06,857 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:00:47,717 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:00:48,112 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:01:28,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:01:29,373 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:02:10,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:02:10,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:02:51,497 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:02:51,813 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:03:32,752 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:03:33,136 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:04:14,017 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:04:14,423 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:04:55,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:04:55,678 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:05:36,525 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:05:36,939 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:06:17,786 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:06:18,169 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:06:59,045 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:06:59,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:07:40,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:07:41,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:08:21,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:08:21,987 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:09:02,832 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:09:03,212 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:09:44,090 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:09:44,500 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:10:25,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:10:25,729 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:11:06,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:11:07,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:11:47,871 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:11:48,287 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:12:29,136 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:12:29,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:13:10,402 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:13:10,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:13:51,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:13:52,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:14:32,927 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:14:33,359 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:15:14,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:15:14,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:15:55,443 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:15:56,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:16:36,707 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:16:37,114 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:17:17,963 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:17:18,349 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:17:59,225 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:17:59,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:18:40,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:18:40,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:19:21,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:19:22,114 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:20:02,990 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:20:03,390 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:20:44,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:20:44,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:21:25,507 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:21:25,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:22:06,763 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:22:07,127 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:22:48,014 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:22:48,413 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:23:29,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:23:29,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:24:10,518 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:24:10,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:24:51,777 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:24:52,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:25:33,032 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:25:33,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:26:14,294 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:26:14,616 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:26:55,553 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:26:55,964 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:27:36,808 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:27:37,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:28:18,062 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:28:18,462 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:28:59,319 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:28:59,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:29:40,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:29:40,935 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:30:21,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:30:22,257 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:31:03,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:31:03,498 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:31:44,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:31:45,074 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:32:25,626 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:32:25,977 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:33:06,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:33:07,276 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:33:48,148 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:33:48,530 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:34:29,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:34:29,817 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:35:10,670 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:35:11,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:35:51,932 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:35:52,282 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:36:33,191 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:36:33,528 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:37:14,446 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:37:14,775 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:37:55,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:37:56,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:38:36,960 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:38:37,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:39:18,226 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:39:18,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:39:59,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:39:59,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:40:40,744 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:40:41,072 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:41:22,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:41:22,342 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:42:03,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:42:03,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:42:44,529 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:42:44,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:43:25,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:43:26,113 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:44:07,056 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:44:07,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:44:48,309 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. -2024-12-01 19:44:48,627 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:45:11,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 301, 'op': 0, 'd': {'type': 19, 'tts': False, 'timestamp': '2024-12-01T14:15:14.515000+00:00', 'sticker_items': [{'name': 'lickypepe', 'id': '1118629504198394016', 'format_type': 2}], 'referenced_message': {'type': 19, 'tts': False, 'timestamp': '2024-12-01T11:53:56.825000+00:00', 'position': 0, 'pinned': False, 'message_reference': {'type': 0, 'message_id': '1312653275551498252', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}], 'mention_roles': [], 'mention_everyone': False, 'id': '1312748519869775902', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'cyber_69', 'public_flags': 256, 'primary_guild': None, 'id': '765173058586542090', 'global_name': 'YashXD', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}, 'attachments': []}, 'pinned': False, 'nonce': '1312784078331707392', 'message_reference': {'type': 0, 'message_id': '1312748519869775902', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'cyber_69', 'public_flags': 256, 'primary_guild': None, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079820325006618634', '1062343535535325235', '1087734833318465587', '1088037558648311829', '926435586238185494', '1088385891116003380', '1083973062858391642', '1062251705921720411', '1087735090324451389', '1168310895592611870'], 'premium_since': '2024-10-19T11:47:25.418000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-12-07T10:05:45.431000+00:00', 'flags': 6, 'deaf': False, 'communication_disabled_until': None, 'banner': '7c6ee4e73a69da1b3f131281ad8ee154', 'avatar': None}, 'id': '765173058586542090', 'global_name': 'YashXD', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'id': '1312784077878853703', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-01 19:45:11,464 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 19:45:11,476 - discord.client - DEBUG - Dispatching event message -2024-12-01 19:45:29,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. -2024-12-01 19:45:29,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:46:10,825 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. -2024-12-01 19:46:11,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:46:52,081 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. -2024-12-01 19:46:52,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:47:33,341 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. -2024-12-01 19:47:33,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:48:14,598 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. -2024-12-01 19:48:14,916 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:48:55,855 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. -2024-12-01 19:48:56,172 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:49:37,115 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. -2024-12-01 19:49:37,441 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:49:46,879 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 19:49:46,882 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 19:49:46,883 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 19:50:18,380 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:50:18,701 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:50:59,641 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:50:59,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:51:40,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:51:41,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:52:22,154 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:52:22,471 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:53:03,408 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:53:03,727 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:53:44,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:53:44,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:54:25,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:54:26,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:55:07,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:55:07,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:55:48,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:55:48,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:56:29,689 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:56:30,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:57:10,954 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:57:11,288 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:57:52,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:57:52,540 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:58:33,471 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:58:33,801 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:59:14,726 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:59:15,048 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 19:59:55,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 19:59:56,305 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:00:37,247 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:00:37,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:01:18,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:01:18,836 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:01:59,762 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:02:00,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:02:41,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:02:41,349 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:03:22,278 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:03:22,604 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:04:03,536 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:04:03,854 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:04:44,793 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:04:45,110 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:05:26,053 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:05:26,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:06:07,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:06:07,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:06:48,568 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:06:48,901 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:07:29,830 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:07:30,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:08:11,085 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:08:11,410 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:08:52,352 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:08:52,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:09:33,613 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:09:33,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:10:14,868 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:10:15,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:10:56,133 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:10:56,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:11:37,396 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:11:37,722 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:12:18,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:12:18,990 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:12:59,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:13:00,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:13:41,170 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:13:41,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:14:22,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:14:22,748 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:15:03,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:15:04,024 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:15:44,952 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:15:45,270 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:16:26,205 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:16:26,555 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:17:07,467 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:17:07,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:17:48,732 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:17:49,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:18:29,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:18:30,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:19:11,251 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:19:11,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:19:52,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. -2024-12-01 20:19:52,822 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:20:17,585 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:20:17,585 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 20:20:17,585 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 20:20:33,761 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:20:34,079 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:21:15,016 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:21:15,338 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:21:56,268 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:21:56,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:22:37,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:22:37,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:23:18,784 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:23:19,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:24:00,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:24:00,372 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:24:41,310 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:24:41,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:25:22,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:25:22,891 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:26:03,828 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:26:04,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:26:45,086 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:26:45,408 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:27:26,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:27:26,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:28:07,600 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:28:07,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:28:48,857 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:28:49,185 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:29:30,112 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:29:30,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:30:11,373 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:30:11,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:30:52,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:30:52,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:31:33,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:31:34,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:32:15,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:32:15,482 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:32:56,411 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:32:56,734 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:33:37,674 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:33:38,001 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:34:18,939 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:34:19,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:35:00,199 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:35:00,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:35:41,463 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:35:41,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:36:22,726 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:36:23,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:37:03,989 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:37:04,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:37:45,241 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:37:45,564 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:38:26,493 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:38:26,831 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:39:07,759 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. -2024-12-01 20:39:08,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:39:08,262 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 304, 'op': 0, 'd': {'user': {'username': 'pixelfiree', 'public_flags': 256, 'id': '745485473035583558', 'global_name': '- Ash', 'display_name': '- Ash', 'discriminator': '0', 'clan': {'tag': 'cult', 'identity_guild_id': '1137773562367844453', 'identity_enabled': True, 'badge': 'a38d8a9ffae51409870d8609399d1716'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1220513989729976411', 'expires_at': None, 'asset': 'a_a87e3efa4de2956331831681231ce63b'}, 'avatar': '754a79e62a4e53283fea007c57e34bfb'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-06T18:24:09.222000+00:00', 'guild_id': '922005348670406667', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 20:39:08,262 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:39:08,274 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 20:39:08,274 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 20:39:09,849 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 305, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:09:13.038000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312797661228961834', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T15:09:11.552341+00:00', 'thumbnail': {'width': 736, 'url': 'https://cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/FwHnSYd5EYbmrsPAdEwtr-mYUfJhWnBjTIfitiCfp7Q/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png', 'height': 736, 'flags': 0}, 'footer': {'text': 'ID: 745485473035583558'}, 'description': '<@745485473035583558>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/FwHnSYd5EYbmrsPAdEwtr-mYUfJhWnBjTIfitiCfp7Q/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png', 'name': 'pixelfiree', 'icon_url': 'https://cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 20:39:09,850 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:39:09,850 - discord.client - DEBUG - Dispatching event message -2024-12-01 20:39:09,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 306, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:09:13.038000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312797661228961834', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T15:09:11.552000+00:00', 'thumbnail': {'width': 736, 'url': 'https://cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/FwHnSYd5EYbmrsPAdEwtr-mYUfJhWnBjTIfitiCfp7Q/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png', 'height': 736, 'flags': 0}, 'footer': {'text': 'ID: 745485473035583558'}, 'description': '<@745485473035583558>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/FwHnSYd5EYbmrsPAdEwtr-mYUfJhWnBjTIfitiCfp7Q/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png', 'name': 'pixelfiree', 'icon_url': 'https://cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 20:39:09,895 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:39:09,895 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 20:39:09,896 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 20:39:20,854 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 307, 'op': 0, 'd': {'user': {'username': 'pixelfiree', 'public_flags': 256, 'id': '745485473035583558', 'global_name': '- Ash', 'display_name': '- Ash', 'discriminator': '0', 'clan': {'tag': 'cult', 'identity_guild_id': '1137773562367844453', 'identity_enabled': True, 'badge': 'a38d8a9ffae51409870d8609399d1716'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669467865088', 'expires_at': None, 'asset': 'a_1005898c6acf56a9ac5010baf444f6fd'}, 'avatar': '754a79e62a4e53283fea007c57e34bfb'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-06T18:24:09.222000+00:00', 'guild_id': '922005348670406667', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 20:39:20,855 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:39:20,856 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 20:39:20,856 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 20:39:49,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 307. -2024-12-01 20:39:49,373 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:40:30,278 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 307. -2024-12-01 20:40:30,601 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:41:11,537 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 307. -2024-12-01 20:41:11,875 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:41:52,798 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 307. -2024-12-01 20:41:53,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:42:34,057 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 307. -2024-12-01 20:42:34,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:43:10,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 308, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 20:43:10,439 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:43:10,440 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 20:43:14,690 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:43:14,691 - discord.client - DEBUG - Dispatching event message -2024-12-01 20:43:14,761 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:43:14,762 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 20:43:14,762 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 20:43:15,310 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:43:15,636 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:43:56,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:43:56,889 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:44:37,824 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:44:38,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:45:19,076 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:45:19,393 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:46:00,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:46:00,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:46:41,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:46:41,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:47:22,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:47:23,169 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:48:04,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:48:04,440 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:48:45,366 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:48:45,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:49:26,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:49:26,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:50:07,888 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:50:08,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:50:49,142 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:50:49,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:51:30,399 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:51:30,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:52:11,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:52:11,976 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:52:52,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:52:53,239 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:53:34,161 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. -2024-12-01 20:53:34,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:54:10,878 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 311, 'op': 0, 'd': {'member': {'user': {'username': 'thecriptic', 'public_flags': 256, 'id': '474270889647669259', 'global_name': 'TheCriptic', 'display_name': 'TheCriptic', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9be96662ecbfab46c019fa5497ad4a9b'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168301657906491523', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-30T08:15:29.334000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '474270889647669259', 'suppress': False, 'session_id': 'c589a5b475547b896cb62dc75d4db89d', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 20:54:10,879 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:54:10,880 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 20:54:14,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 312, 'op': 0, 'd': {'member': {'user': {'username': 'thecriptic', 'public_flags': 256, 'id': '474270889647669259', 'global_name': 'TheCriptic', 'display_name': 'TheCriptic', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9be96662ecbfab46c019fa5497ad4a9b'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168301657906491523', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-30T08:15:29.334000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '474270889647669259', 'suppress': False, 'session_id': 'c589a5b475547b896cb62dc75d4db89d', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 20:54:14,127 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:54:14,128 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 20:54:14,772 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:54:14,783 - discord.client - DEBUG - Dispatching event message -2024-12-01 20:54:14,845 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:54:14,845 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 20:54:14,845 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 20:54:15,420 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 314. -2024-12-01 20:54:15,739 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:54:56,671 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 314. -2024-12-01 20:54:56,994 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:55:37,933 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 314. -2024-12-01 20:55:38,276 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:56:19,188 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 314. -2024-12-01 20:56:19,512 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:56:54,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 315, 'op': 0, 'd': {'user': {'username': '_mtann', 'public_flags': 64, 'id': '790468792428920842', 'global_name': '_Mtan', 'display_name': '_Mtan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'a_652df65e962e223a167368c7734e12e4'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T10:40:11.535000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-01 20:56:54,065 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:56:54,076 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 20:56:54,076 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 20:56:54,179 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:56:54,180 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 20:56:54,180 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 20:56:54,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 317, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:26:58.153000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312802128645062708', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T15:26:57.371412+00:00', 'thumbnail': {'width': 280, 'url': 'https://cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/pAM5mn1VfD_09veSVpWpscQIxPSZKGlFmk22vE_Nr38/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif', 'height': 280, 'flags': 0}, 'footer': {'text': 'ID: 790468792428920842'}, 'description': '<@790468792428920842>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/pAM5mn1VfD_09veSVpWpscQIxPSZKGlFmk22vE_Nr38/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif', 'name': '_mtann', 'icon_url': 'https://cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 20:56:54,918 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:56:54,930 - discord.client - DEBUG - Dispatching event message -2024-12-01 20:56:54,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 318, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:26:58.153000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312802128645062708', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T15:26:57.371000+00:00', 'thumbnail': {'width': 280, 'url': 'https://cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/pAM5mn1VfD_09veSVpWpscQIxPSZKGlFmk22vE_Nr38/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif', 'height': 280, 'flags': 0}, 'footer': {'text': 'ID: 790468792428920842'}, 'description': '<@790468792428920842>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/pAM5mn1VfD_09veSVpWpscQIxPSZKGlFmk22vE_Nr38/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif', 'name': '_mtann', 'icon_url': 'https://cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 20:56:54,956 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:56:54,956 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 20:56:54,956 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 20:57:00,448 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 318. -2024-12-01 20:57:00,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:57:41,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 318. -2024-12-01 20:57:42,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:58:22,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 318. -2024-12-01 20:58:23,290 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:58:40,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 319, 'op': 0, 'd': {'member': {'user': {'username': 'thecriptic', 'public_flags': 256, 'id': '474270889647669259', 'global_name': 'TheCriptic', 'display_name': 'TheCriptic', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9be96662ecbfab46c019fa5497ad4a9b'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168301657906491523', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-30T08:15:29.334000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '474270889647669259', 'suppress': False, 'session_id': 'c589a5b475547b896cb62dc75d4db89d', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 20:58:40,962 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 20:58:40,962 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 20:59:04,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. -2024-12-01 20:59:04,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 20:59:45,477 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. -2024-12-01 20:59:45,795 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:00:26,744 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. -2024-12-01 21:00:27,062 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:01:08,000 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. -2024-12-01 21:01:08,316 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:01:49,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. -2024-12-01 21:01:49,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:02:30,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. -2024-12-01 21:02:30,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:02:52,740 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:02:52,749 - discord.client - DEBUG - Dispatching event guild_update -2024-12-01 21:02:52,807 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:02:52,808 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 21:02:53,016 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:02:53,016 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:02:53,529 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:02:53,530 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:02:53,915 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:02:53,915 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 21:02:53,915 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 21:02:54,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 325, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:32:57.998000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312803637944254544', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Role added', 'timestamp': '2024-12-01T15:32:56.103489+00:00', 'footer': {'text': 'ID: 760386225751982092'}, 'description': '<@&926435586238185494>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/SIJzVY-VXjCyh7TEppywtyTTM5Lk1MsxbBaFxG8Vrew/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/760386225751982092/8dea19b01d160d28fb87fd3adada243c.png', 'name': 'graze.101', 'icon_url': 'https://cdn.discordapp.com/avatars/760386225751982092/8dea19b01d160d28fb87fd3adada243c.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 21:02:54,730 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:02:54,741 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:02:54,836 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 326, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:32:57.998000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312803637944254544', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Role added', 'timestamp': '2024-12-01T15:32:56.103000+00:00', 'footer': {'text': 'ID: 760386225751982092'}, 'description': '<@&926435586238185494>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/SIJzVY-VXjCyh7TEppywtyTTM5Lk1MsxbBaFxG8Vrew/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/760386225751982092/8dea19b01d160d28fb87fd3adada243c.png', 'name': 'graze.101', 'icon_url': 'https://cdn.discordapp.com/avatars/760386225751982092/8dea19b01d160d28fb87fd3adada243c.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 21:02:54,837 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:02:54,837 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 21:02:54,837 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 21:03:11,787 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 326. -2024-12-01 21:03:12,109 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:03:53,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 326. -2024-12-01 21:03:53,366 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:04:27,909 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 327, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 21:04:27,910 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:27,910 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 21:04:29,790 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:29,791 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:04:29,854 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:29,854 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 21:04:29,854 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 21:04:30,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 330, 'op': 0, 'd': {'member': {'user': {'username': 'thecriptic', 'public_flags': 256, 'id': '474270889647669259', 'global_name': 'TheCriptic', 'display_name': 'TheCriptic', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9be96662ecbfab46c019fa5497ad4a9b'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168301657906491523', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-30T08:15:29.334000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '474270889647669259', 'suppress': False, 'session_id': 'c589a5b475547b896cb62dc75d4db89d', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 21:04:30,706 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:30,706 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 21:04:30,707 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 331, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} -2024-12-01 21:04:30,707 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:30,707 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. -2024-12-01 21:04:34,317 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 331. -2024-12-01 21:04:34,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:04:34,736 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:34,737 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:04:34,780 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:34,780 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 21:04:34,781 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 21:04:50,244 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 334, 'op': 0, 'd': {'user_id': '318717198111604736', 'timestamp': 1733067293, 'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} -2024-12-01 21:04:50,245 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:50,263 - discord.client - DEBUG - Dispatching event typing -2024-12-01 21:04:50,263 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-01 21:04:55,003 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:55,003 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:04:55,225 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:55,227 - discord.client - DEBUG - Dispatching event guild_update -2024-12-01 21:04:55,338 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:55,338 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:04:55,604 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:55,604 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:04:55,652 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:55,653 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 21:04:55,654 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 21:04:56,205 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 340, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:34:59.483000+00:00', 'pinned': False, 'nonce': '1312804146058887168', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312804147489148928', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'cheeks', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-01 21:04:56,206 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:56,207 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:04:58,195 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 341, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:35:01.365000+00:00', 'pinned': False, 'nonce': '1312804153893847040', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312804155382956088', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '<:ban_wink:803528866308161576>', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-01 21:04:58,195 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:04:58,196 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:05:04,053 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 342, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:35:07.323000+00:00', 'pinned': False, 'nonce': '1312804179202277376', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312804180372619324', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'https://tenor.com/view/booty-he-must-workout-big-booty-chilling-orange-suit-gif-16341688', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-01 21:05:04,054 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:05:04,054 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:05:04,206 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 343, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:35:07.323000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312804180372619324', 'flags': 0, 'embeds': [{'video': {'width': 568, 'url': 'https://media.tenor.com/LwGWA0-EyBkAAAPo/booty-he-must-workout.mp4', 'proxy_url': 'https://images-ext-1.discordapp.net/external/GLd0HwREW9JmkJcAMYKV6nq7LD9f1-N27CY5rWeN_I0/https/media.tenor.com/LwGWA0-EyBkAAAPo/booty-he-must-workout.mp4', 'placeholder_version': 1, 'placeholder': 'IHoSJghVefaId4iHd4mHl3iIBbFkA1o=', 'height': 640, 'flags': 0}, 'url': 'https://tenor.com/view/booty-he-must-workout-big-booty-chilling-orange-suit-gif-16341688', 'type': 'gifv', 'thumbnail': {'width': 568, 'url': 'https://media.tenor.com/LwGWA0-EyBkAAAAe/booty-he-must-workout.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/ta__x2QKxXokKore7IqwQbsVCET9y6XS2Y6G9INB5nM/https/media.tenor.com/LwGWA0-EyBkAAAAe/booty-he-must-workout.png', 'placeholder_version': 1, 'placeholder': 'IHoSJghVefaId4iHd4mHl3iIBbFkA1o=', 'height': 640, 'flags': 0}, 'provider': {'url': 'https://tenor.co', 'name': 'Tenor'}, 'content_scan_version': 1}], 'edited_timestamp': None, 'content': 'https://tenor.com/view/booty-he-must-workout-big-booty-chilling-orange-suit-gif-16341688', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-01 21:05:04,218 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:05:04,219 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 21:05:04,219 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 21:05:10,487 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:05:10,488 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:05:13,011 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:05:13,012 - discord.client - DEBUG - Dispatching event typing -2024-12-01 21:05:13,012 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-01 21:05:15,576 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 345. -2024-12-01 21:05:15,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:05:26,664 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:05:26,664 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:05:56,832 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. -2024-12-01 21:05:57,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:06:38,099 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. -2024-12-01 21:06:38,421 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:07:19,355 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. -2024-12-01 21:07:19,673 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:08:00,618 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. -2024-12-01 21:08:00,943 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:08:41,870 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. -2024-12-01 21:08:42,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:09:23,128 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. -2024-12-01 21:09:23,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:10:04,385 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. -2024-12-01 21:10:04,700 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:10:45,647 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. -2024-12-01 21:10:45,977 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:11:01,760 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 21:11:01,760 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 21:11:02,074 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 21:11:02,074 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 21:11:02,501 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 21:11:02,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-9pwd",{"micros":0.0}]']}} -2024-12-01 21:11:02,502 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 21:11:02,817 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:11:02,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 347, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-9pwd",{"micros":505,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":246,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-199",{"micros":24}]}]']}} -2024-12-01 21:11:02,818 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:11:02,818 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 21:11:02,819 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 21:11:43,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:11:44,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:12:25,021 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:12:25,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:13:06,284 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:13:06,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:13:47,541 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:13:47,856 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:14:28,807 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:14:29,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:15:10,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:15:10,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:15:51,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:15:51,646 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:16:32,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:16:32,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:17:13,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:17:14,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:17:55,096 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:17:55,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:18:36,359 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:18:36,686 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:19:17,610 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:19:17,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:19:58,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:19:59,197 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:20:40,123 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:20:40,438 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:21:21,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:21:21,707 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:22:02,639 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:22:02,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:22:43,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:22:44,222 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:23:25,146 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:23:25,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:24:06,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:24:06,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:24:47,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:24:47,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:25:28,929 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:25:29,257 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:26:10,184 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:26:10,503 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:26:51,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:26:51,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:27:32,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:27:33,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:28:13,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:28:14,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:28:55,222 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:28:55,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:29:36,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:29:36,822 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:30:17,743 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:30:18,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:30:58,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:30:59,338 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:31:40,255 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:31:40,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:32:21,511 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:32:21,865 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:33:02,772 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:33:03,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:33:44,038 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:33:44,369 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:34:25,293 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. -2024-12-01 21:34:25,617 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:34:48,141 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 21:34:48,141 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 21:34:48,460 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 21:34:48,461 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 21:34:48,874 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 21:34:48,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-21r9",{"micros":0.0}]']}} -2024-12-01 21:34:48,875 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 21:34:49,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:34:49,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 348, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-21r9",{"micros":507,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":268,"calls":[]},"session_lookup_finished",{"micros":12,"calls":[]},"discord-sessions-prd-1-199",{"micros":25}]}]']}} -2024-12-01 21:34:49,189 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:34:49,190 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 21:34:49,190 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 21:35:30,140 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:35:30,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:36:11,404 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:36:11,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:36:52,658 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:36:52,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:37:33,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:37:34,245 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:38:15,173 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:38:15,488 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:38:56,432 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:38:56,760 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:39:37,690 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:39:38,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:40:18,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:40:19,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:41:00,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:41:00,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:41:41,463 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:41:41,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:42:22,719 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:42:23,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:43:03,974 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:43:04,293 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:43:45,229 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:43:45,549 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:44:26,484 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:44:26,801 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:45:07,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:45:08,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:45:49,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:45:49,322 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:46:30,268 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:46:30,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:47:11,524 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:47:11,843 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:47:52,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:47:53,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:48:34,040 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. -2024-12-01 21:48:34,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:48:36,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 349, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 21:48:36,461 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:48:36,461 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 21:48:38,134 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:48:38,134 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:48:38,206 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:48:38,206 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 21:48:38,206 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 21:49:15,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:49:15,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:49:56,552 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:49:56,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:50:37,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:50:38,186 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:51:19,075 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:51:19,470 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:52:00,328 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:52:00,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:52:41,581 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:52:41,920 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:53:22,845 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:53:23,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:54:04,107 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:54:04,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:54:45,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:54:45,779 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:55:26,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:55:26,996 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:56:07,877 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:56:08,248 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:56:49,130 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. -2024-12-01 21:56:49,791 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:57:19,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 352, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 21:57:19,073 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:57:19,073 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 21:57:19,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 353, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} -2024-12-01 21:57:19,073 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:57:19,073 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. -2024-12-01 21:57:19,765 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:57:19,765 - discord.client - DEBUG - Dispatching event message -2024-12-01 21:57:19,797 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 21:57:19,797 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 21:57:19,797 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 21:57:30,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. -2024-12-01 21:57:30,794 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:58:11,658 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. -2024-12-01 21:58:12,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:58:52,924 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. -2024-12-01 21:58:53,342 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 21:59:34,184 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. -2024-12-01 21:59:34,528 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:00:15,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. -2024-12-01 22:00:15,784 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:00:56,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. -2024-12-01 22:00:57,048 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:01:41,518 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. -2024-12-01 22:01:41,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:02:22,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. -2024-12-01 22:02:23,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:03:04,035 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. -2024-12-01 22:03:04,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:03:45,296 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. -2024-12-01 22:03:45,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:04:26,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. -2024-12-01 22:04:26,936 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:05:06,236 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 356, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:05:06,236 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:05:06,236 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:05:07,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 356. -2024-12-01 22:05:08,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:05:08,492 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:05:08,492 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:05:08,497 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:05:08,497 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:05:08,497 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:05:49,069 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 358. -2024-12-01 22:05:49,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:05:56,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 359, 'op': 0, 'd': {'user_id': '714162475884609617', 'timestamp': 1733070956, 'member': {'user': {'username': 'bigbaddy4', 'public_flags': 128, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'display_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} -2024-12-01 22:05:56,764 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:05:56,764 - discord.client - DEBUG - Dispatching event typing -2024-12-01 22:05:56,764 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-01 22:06:05,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 360, 'op': 0, 'd': {'user_id': '714162475884609617', 'timestamp': 1733070965, 'member': {'user': {'username': 'bigbaddy4', 'public_flags': 128, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'display_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} -2024-12-01 22:06:05,644 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:05,644 - discord.client - DEBUG - Dispatching event typing -2024-12-01 22:06:05,644 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-01 22:06:13,394 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 361, 'op': 0, 'd': {'user_id': '714162475884609617', 'timestamp': 1733070973, 'member': {'user': {'username': 'bigbaddy4', 'public_flags': 128, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'display_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} -2024-12-01 22:06:13,394 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:13,394 - discord.client - DEBUG - Dispatching event typing -2024-12-01 22:06:13,394 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-01 22:06:14,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 362, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:06:14,106 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:14,106 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:06:18,382 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:18,382 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:06:18,414 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:18,414 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:06:18,414 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:06:21,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 365, 'op': 0, 'd': {'user_id': '714162475884609617', 'timestamp': 1733070981, 'member': {'user': {'username': 'bigbaddy4', 'public_flags': 128, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'display_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} -2024-12-01 22:06:21,561 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:21,561 - discord.client - DEBUG - Dispatching event typing -2024-12-01 22:06:21,561 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-01 22:06:23,904 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:23,904 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:06:27,407 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 367, 'op': 0, 'd': {'user_id': '714162475884609617', 'timestamp': 1733070987, 'member': {'user': {'username': 'bigbaddy4', 'public_flags': 128, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'display_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} -2024-12-01 22:06:27,420 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:27,420 - discord.client - DEBUG - Dispatching event typing -2024-12-01 22:06:27,420 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-01 22:06:30,325 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 367. -2024-12-01 22:06:30,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:06:31,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 368, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T16:36:31.463000+00:00', 'pinned': False, 'nonce': '1312819630594588672', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'id': '1312819632775889070', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'cwazy bro cwazy', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-01 22:06:31,625 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:31,625 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:06:48,508 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:48,508 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:06:48,508 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:06:48,655 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:48,671 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:06:53,371 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:53,371 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:06:53,435 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:53,435 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:06:53,435 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:06:57,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 373, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:06:57,641 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:06:57,641 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:07:02,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 374, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:07:02,244 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:07:02,244 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:07:07,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 375, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:07:07,102 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:07:07,102 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:07:11,580 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. -2024-12-01 22:07:11,936 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:07:52,833 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. -2024-12-01 22:07:53,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:08:34,099 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. -2024-12-01 22:08:34,438 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:09:15,360 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. -2024-12-01 22:09:15,740 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:09:56,617 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. -2024-12-01 22:09:57,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:10:37,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. -2024-12-01 22:10:38,250 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:11:08,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 376, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:11:08,925 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:11:08,925 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:11:10,672 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 377, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:11:10,686 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:11:10,686 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:11:14,999 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:11:14,999 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:11:15,038 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:11:15,038 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:11:15,038 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:11:15,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 380, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:11:15,409 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:11:15,409 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:11:19,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 380. -2024-12-01 22:11:19,465 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:12:00,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 380. -2024-12-01 22:12:00,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:12:28,227 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 381, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 22:12:28,243 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:12:28,243 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:12:28,389 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:12:28,389 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:12:28,437 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:12:28,437 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:12:28,437 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:12:41,659 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. -2024-12-01 22:12:42,061 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:13:22,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. -2024-12-01 22:13:23,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:14:04,172 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. -2024-12-01 22:14:04,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:14:45,436 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. -2024-12-01 22:14:45,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:15:26,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. -2024-12-01 22:15:27,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:16:07,955 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. -2024-12-01 22:16:08,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:16:49,210 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. -2024-12-01 22:16:49,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:17:30,469 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. -2024-12-01 22:17:30,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:18:11,725 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. -2024-12-01 22:18:12,080 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:18:13,082 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 384, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '60be314603116f013db4c89038a6fae5', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:18:13,082 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:18:13,082 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:18:13,421 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:18:13,421 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:18:13,495 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:18:13,495 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:18:13,495 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:18:52,985 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. -2024-12-01 22:18:53,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:19:34,240 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. -2024-12-01 22:19:34,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:20:15,493 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. -2024-12-01 22:20:15,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:20:56,758 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. -2024-12-01 22:20:57,081 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:21:38,019 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. -2024-12-01 22:21:38,423 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:22:19,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. -2024-12-01 22:22:19,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:22:19,865 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 387, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:22:19,867 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:22:19,867 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:23:00,531 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:23:00,861 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:23:41,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:23:42,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:24:23,053 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:24:23,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:25:04,313 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:25:05,008 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:25:45,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:25:45,941 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:26:26,828 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:26:27,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:27:08,089 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:27:08,475 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:27:49,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:27:49,731 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:28:30,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:28:31,298 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:29:11,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:29:12,231 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:29:53,111 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:29:53,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:30:34,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:30:34,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:31:15,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:31:15,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:31:56,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:31:57,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:32:38,139 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:32:38,539 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:33:19,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. -2024-12-01 22:33:19,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:33:23,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 388, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:33:23,258 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:33:23,258 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:33:23,677 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:33:23,677 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:33:23,774 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:33:23,774 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:33:23,774 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:34:00,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 390. -2024-12-01 22:34:01,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:34:13,113 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:34:13,113 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:34:13,113 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:34:13,273 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:34:13,273 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:34:13,602 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:34:13,602 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:34:13,644 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:34:13,644 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:34:13,644 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:34:41,916 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:34:42,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:35:23,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:35:23,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:36:04,446 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:36:04,784 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:36:45,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:36:46,103 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:37:26,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:37:27,356 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:38:08,217 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:38:08,593 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:38:49,476 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:38:49,870 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:39:30,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:39:31,041 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:40:11,999 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:40:12,301 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:40:53,262 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:40:53,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:41:34,528 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:41:34,841 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:42:15,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:42:16,115 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:42:57,048 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:42:57,354 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:43:38,313 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:43:38,640 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:44:19,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:44:19,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:45:00,833 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:45:01,139 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:45:42,086 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:45:42,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:46:23,346 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. -2024-12-01 22:46:23,653 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:46:46,181 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 395, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:46:46,181 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:46:46,181 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:46:48,288 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 396, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:46:48,288 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:46:48,288 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:46:48,721 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:46:48,721 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:46:48,882 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:46:48,882 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:46:48,882 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:47:04,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 398. -2024-12-01 22:47:04,912 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:47:45,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 398. -2024-12-01 22:47:46,168 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:48:27,117 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 398. -2024-12-01 22:48:27,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:48:58,099 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:48:58,099 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 22:48:58,099 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 22:49:08,378 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 399. -2024-12-01 22:49:08,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:49:09,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 400, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '60be314603116f013db4c89038a6fae5', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:49:09,104 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:49:09,104 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:49:49,639 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 400. -2024-12-01 22:49:49,947 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:50:30,896 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 400. -2024-12-01 22:50:31,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:51:12,148 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 400. -2024-12-01 22:51:12,454 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:51:53,405 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 400. -2024-12-01 22:51:53,734 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:52:34,662 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 400. -2024-12-01 22:52:34,985 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:53:00,146 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 401, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '60be314603116f013db4c89038a6fae5', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:53:00,146 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:53:00,146 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:53:15,922 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. -2024-12-01 22:53:16,228 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:53:57,187 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. -2024-12-01 22:53:57,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:54:38,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. -2024-12-01 22:54:38,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:55:19,703 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. -2024-12-01 22:55:20,011 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:56:00,959 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. -2024-12-01 22:56:01,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:56:42,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. -2024-12-01 22:56:42,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:57:23,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. -2024-12-01 22:57:23,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:58:04,742 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. -2024-12-01 22:58:05,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:58:46,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. -2024-12-01 22:58:46,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:58:58,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 402, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:58:58,853 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:58:58,853 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:59:00,951 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 403, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:59:00,951 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:00,951 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:59:03,868 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:03,868 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:59:03,949 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:03,949 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:59:03,949 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:59:06,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 406, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 22:59:06,761 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:06,761 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:59:08,020 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 407, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:59:08,020 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:08,020 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:59:08,699 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:08,699 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:59:08,790 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:08,790 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:59:08,790 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:59:13,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 410, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 22:59:13,016 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:13,016 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:59:13,693 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:13,693 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:59:13,725 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:13,725 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:59:13,725 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:59:13,861 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 413, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 22:59:13,869 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:13,869 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:59:18,695 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:18,695 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:59:18,755 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:18,755 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:59:18,755 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:59:27,262 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 415. -2024-12-01 22:59:27,311 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 416, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 22:59:27,311 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:27,311 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:59:27,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 22:59:28,717 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:28,717 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:59:28,765 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:28,765 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:59:28,765 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 22:59:52,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 419, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 22:59:52,077 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:52,077 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 22:59:53,707 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:53,707 - discord.client - DEBUG - Dispatching event message -2024-12-01 22:59:53,766 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 22:59:53,766 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 22:59:53,766 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 23:00:08,518 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 421. -2024-12-01 23:00:08,823 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:00:21,766 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 422, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 23:00:21,766 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:00:21,766 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 23:00:23,766 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:00:23,791 - discord.client - DEBUG - Dispatching event message -2024-12-01 23:00:23,846 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:00:23,846 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 23:00:23,846 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 23:00:30,715 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 425, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 23:00:30,715 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:00:30,715 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 23:00:33,726 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:00:33,726 - discord.client - DEBUG - Dispatching event message -2024-12-01 23:00:33,791 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:00:33,791 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 23:00:33,791 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 23:00:49,686 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 428, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 23:00:49,686 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:00:49,686 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 23:00:49,783 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 428. -2024-12-01 23:00:50,090 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:00:53,779 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:00:53,793 - discord.client - DEBUG - Dispatching event message -2024-12-01 23:00:53,831 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:00:53,831 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 23:00:53,831 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 23:01:31,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. -2024-12-01 23:01:31,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:02:12,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. -2024-12-01 23:02:12,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:02:53,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. -2024-12-01 23:02:53,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:03:34,822 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. -2024-12-01 23:03:35,145 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:04:16,087 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. -2024-12-01 23:04:16,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:04:57,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. -2024-12-01 23:04:57,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:05:38,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. -2024-12-01 23:05:38,916 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:06:19,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. -2024-12-01 23:06:20,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:07:01,133 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. -2024-12-01 23:07:01,441 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:07:06,093 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 23:07:06,093 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 23:07:06,415 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 23:07:06,415 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 23:07:06,842 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 23:07:06,848 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-r554",{"micros":0.0}]']}} -2024-12-01 23:07:06,848 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 23:07:07,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:07:07,171 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 431, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-r554",{"micros":984,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":625,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-199",{"micros":26}]}]']}} -2024-12-01 23:07:07,171 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:07:07,171 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 23:07:07,171 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 23:07:48,104 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:07:48,410 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:08:29,360 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:08:29,683 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:09:10,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:09:10,930 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:09:51,883 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:09:52,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:10:33,139 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:10:33,465 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:11:14,404 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:11:14,716 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:11:55,658 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:11:55,979 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:12:36,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:12:37,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:13:18,177 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:13:18,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:13:59,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:13:59,740 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:14:40,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:14:41,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:15:21,952 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:15:22,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:16:03,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:16:03,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:16:44,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:16:44,784 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:17:25,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:17:26,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:18:06,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:18:07,304 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:18:48,256 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:18:48,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:19:29,511 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:19:29,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:20:10,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:20:11,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:20:52,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:20:52,346 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:21:33,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:21:33,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:22:14,551 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:22:14,889 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:22:55,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:22:56,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:23:37,070 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:23:37,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:24:18,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:24:18,661 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:24:59,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:24:59,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:25:40,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:25:41,179 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:26:22,119 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:26:22,425 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:27:03,377 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:27:03,698 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:27:44,638 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:27:44,944 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:28:25,896 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:28:26,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:29:07,148 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:29:07,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:29:48,400 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. -2024-12-01 23:29:48,722 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:29:56,511 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:29:56,511 - discord.client - DEBUG - Dispatching event user_update -2024-12-01 23:29:56,511 - discord.client - DEBUG - Dispatching event member_update -2024-12-01 23:30:00,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 433, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:00:00.665000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312840642891878490', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T17:59:56.650936+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/DdQKoWRujlJM3iWCFxWFunoBJCWjlfSsKsade8_moAc/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/DdQKoWRujlJM3iWCFxWFunoBJCWjlfSsKsade8_moAc/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 23:30:00,577 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:30:00,577 - discord.client - DEBUG - Dispatching event message -2024-12-01 23:30:00,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 434, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:00:00.665000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312840642891878490', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T17:59:56.650000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/DdQKoWRujlJM3iWCFxWFunoBJCWjlfSsKsade8_moAc/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/DdQKoWRujlJM3iWCFxWFunoBJCWjlfSsKsade8_moAc/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-01 23:30:00,662 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:30:00,662 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 23:30:00,662 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 23:30:29,659 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 434. -2024-12-01 23:30:29,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:31:10,920 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 434. -2024-12-01 23:31:11,248 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:31:52,179 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 434. -2024-12-01 23:31:52,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:32:33,434 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 434. -2024-12-01 23:32:33,762 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:33:14,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 434. -2024-12-01 23:33:15,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:33:19,305 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 435, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 23:33:19,305 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:33:19,305 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 23:33:43,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 436, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 23:33:43,974 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:33:43,974 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 23:33:55,959 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 436. -2024-12-01 23:33:56,265 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:34:37,218 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 436. -2024-12-01 23:34:37,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:35:18,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 436. -2024-12-01 23:35:18,789 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:35:51,336 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 437, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 23:35:51,336 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:35:51,336 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 23:35:51,950 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 438, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-01 23:35:51,950 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:35:51,950 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 23:35:59,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 438. -2024-12-01 23:36:00,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:36:41,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 438. -2024-12-01 23:36:41,312 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:37:22,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 438. -2024-12-01 23:37:22,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:38:03,517 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 438. -2024-12-01 23:38:03,825 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:38:44,780 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 438. -2024-12-01 23:38:45,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:39:22,396 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 439, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 23:39:22,396 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:39:22,396 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 23:39:24,217 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:39:24,217 - discord.client - DEBUG - Dispatching event message -2024-12-01 23:39:24,296 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:39:24,296 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 23:39:24,296 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 23:39:26,040 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 441. -2024-12-01 23:39:26,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:40:07,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 441. -2024-12-01 23:40:07,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:40:48,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 441. -2024-12-01 23:40:48,893 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:41:29,829 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 441. -2024-12-01 23:41:30,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:41:44,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 442, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '60be314603116f013db4c89038a6fae5', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-01 23:41:44,984 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:41:44,984 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-01 23:41:49,310 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:41:49,328 - discord.client - DEBUG - Dispatching event message -2024-12-01 23:41:49,361 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:41:49,361 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-01 23:41:49,361 - discord.client - DEBUG - Dispatching event message_edit -2024-12-01 23:42:11,081 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 444. -2024-12-01 23:42:11,423 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:42:43,689 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 445, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:12:43.804000+00:00', 'pinned': False, 'nonce': '1312843839030951936', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312843843728572497', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-01 23:42:43,689 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:42:43,689 - discord.client - DEBUG - Dispatching event message -2024-12-01 23:42:43,689 - discord.client - DEBUG - Dispatching event command -2024-12-01 23:42:44,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 446, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:12:44.367000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312843846090231830', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers prefer dark mode? Because light attracts bugs!', 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-01 23:42:44,333 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:42:44,333 - discord.client - DEBUG - Dispatching event message -2024-12-01 23:42:47,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 447, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733076767, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-01 23:42:47,034 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:42:47,046 - discord.client - DEBUG - Dispatching event typing -2024-12-01 23:42:47,046 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-01 23:42:50,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 448, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:12:50.774000+00:00', 'pinned': False, 'nonce': '1312843858115035136', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312843872963137567', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-01 23:42:50,650 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:42:50,670 - discord.client - DEBUG - Dispatching event message -2024-12-01 23:42:50,670 - discord.client - DEBUG - Dispatching event command -2024-12-01 23:42:50,811 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do programmers prefer dark mode? Because light attracts bugs!","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-01 23:42:50,811 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers prefer dark mode? Because light attracts bugs!', 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-01T18:12:44.367000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312843846090231830', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-01 23:42:50,811 - discord.client - DEBUG - Dispatching event command_completion -2024-12-01 23:42:51,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 449, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:12:51.403000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312843875601354892', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "How many programmers does it take to change a light bulb? None, that's a hardware problem.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-01 23:42:51,271 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:42:51,271 - discord.client - DEBUG - Dispatching event message -2024-12-01 23:42:51,312 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"How many programmers does it take to change a light bulb? None, that's a hardware problem.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-01 23:42:51,312 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "How many programmers does it take to change a light bulb? None, that's a hardware problem.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-01T18:12:51.403000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312843875601354892', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-01 23:42:51,312 - discord.client - DEBUG - Dispatching event command_completion -2024-12-01 23:42:52,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:42:52,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:43:33,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:43:33,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:44:14,866 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:44:15,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:44:56,130 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:44:56,456 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:45:37,393 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:45:37,716 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:46:18,650 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:46:18,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:46:59,906 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:47:00,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:47:41,161 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:47:41,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:48:22,425 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:48:22,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:49:03,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:49:04,001 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:49:44,930 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:49:45,285 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:50:26,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:50:26,504 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:51:07,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. -2024-12-01 23:51:07,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:51:48,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-01 23:51:48,049 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-01 23:51:48,364 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-01 23:51:48,364 - discord.client - DEBUG - Dispatching event disconnect -2024-12-01 23:51:48,764 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg -2024-12-01 23:51:48,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-r9h7",{"micros":0.0}]']}} -2024-12-01 23:51:48,764 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-01 23:51:49,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:51:49,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 450, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-r9h7",{"micros":506,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":270,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-199",{"micros":29}]}]']}} -2024-12-01 23:51:49,086 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-01 23:51:49,086 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. -2024-12-01 23:51:49,086 - discord.client - DEBUG - Dispatching event resumed -2024-12-01 23:52:30,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-01 23:52:30,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:53:11,288 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-01 23:53:11,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:53:52,553 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-01 23:53:52,859 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:54:33,815 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-01 23:54:34,121 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:55:15,076 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-01 23:55:15,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:55:56,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-01 23:55:56,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:56:37,599 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-01 23:56:37,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:57:18,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-01 23:57:19,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:58:00,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-01 23:58:00,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:58:41,382 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-01 23:58:41,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-01 23:59:22,634 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-01 23:59:22,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:00:03,885 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:00:04,200 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:00:45,138 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:00:45,445 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:01:26,402 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:01:26,732 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:02:07,655 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:02:07,962 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:02:48,911 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:02:49,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:03:30,176 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:03:30,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:04:11,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:04:11,740 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:04:52,686 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:04:52,991 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:05:33,949 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:05:34,256 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:06:15,214 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:06:15,521 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:06:56,472 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:06:56,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:07:37,734 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:07:38,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:08:18,990 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:08:19,297 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:09:00,245 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:09:00,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:09:41,502 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:09:41,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:10:22,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:10:23,079 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:11:04,026 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:11:04,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:11:45,284 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:11:45,596 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:12:26,547 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:12:26,852 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:13:07,799 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. -2024-12-02 00:13:08,105 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:13:43,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 451, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 00:13:43,019 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:13:43,019 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:13:45,003 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:13:45,003 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:13:45,084 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:13:45,084 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 00:13:45,084 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 00:13:49,055 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 453. -2024-12-02 00:13:49,366 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:14:30,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 453. -2024-12-02 00:14:30,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:14:43,974 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:14:43,986 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:14:44,050 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:14:44,050 - discord.client - DEBUG - Dispatching event typing -2024-12-02 00:14:44,050 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 00:15:11,568 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. -2024-12-02 00:15:11,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:15:52,821 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. -2024-12-02 00:15:53,128 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:16:34,083 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. -2024-12-02 00:16:34,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:17:15,342 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. -2024-12-02 00:17:15,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:17:56,596 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. -2024-12-02 00:17:56,922 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:18:37,858 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. -2024-12-02 00:18:38,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:19:19,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. -2024-12-02 00:19:19,438 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:19:30,922 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:19:30,922 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:19:35,189 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:19:35,189 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:19:35,252 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:19:35,252 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 00:19:35,252 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 00:20:00,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. -2024-12-02 00:20:00,679 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:20:41,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. -2024-12-02 00:20:41,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:21:22,877 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. -2024-12-02 00:21:23,184 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:22:04,130 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. -2024-12-02 00:22:04,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:22:45,390 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. -2024-12-02 00:22:45,697 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:23:26,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. -2024-12-02 00:23:26,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:24:03,959 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:24:03,959 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:24:07,416 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:24:07,416 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:24:07,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 460. -2024-12-02 00:24:08,221 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:24:12,625 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:24:12,625 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:24:43,297 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 462, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 00:24:43,297 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:24:43,297 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:24:49,177 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 462. -2024-12-02 00:24:49,494 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:24:55,426 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:24:55,426 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:25:30,440 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 463. -2024-12-02 00:25:30,752 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:26:11,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 463. -2024-12-02 00:26:12,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:26:52,959 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 463. -2024-12-02 00:26:53,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:27:34,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 463. -2024-12-02 00:27:34,542 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:28:15,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 463. -2024-12-02 00:28:15,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:28:46,017 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:28:46,017 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:28:56,744 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 464. -2024-12-02 00:28:57,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:29:03,352 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:29:03,352 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:29:38,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. -2024-12-02 00:29:38,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:30:19,260 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. -2024-12-02 00:30:19,567 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:31:00,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. -2024-12-02 00:31:00,828 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:31:41,777 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. -2024-12-02 00:31:42,100 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:32:23,032 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. -2024-12-02 00:32:23,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:33:04,292 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. -2024-12-02 00:33:04,622 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:33:24,912 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:33:24,912 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:33:25,338 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:33:25,338 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:33:25,458 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:33:25,458 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 00:33:25,458 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 00:33:45,553 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 468. -2024-12-02 00:33:45,861 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:33:56,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 469, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 00:33:56,879 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:33:56,879 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:34:26,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 469. -2024-12-02 00:34:27,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:34:57,995 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:34:57,995 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:35:00,419 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:35:00,419 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:35:00,668 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:35:00,668 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 00:35:00,668 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 00:35:08,061 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 472. -2024-12-02 00:35:08,369 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:35:49,324 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 472. -2024-12-02 00:35:49,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:36:10,396 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:36:10,396 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:36:30,591 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. -2024-12-02 00:36:30,914 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:37:11,853 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. -2024-12-02 00:37:12,161 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:37:53,110 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. -2024-12-02 00:37:53,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:38:34,365 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. -2024-12-02 00:38:34,688 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:39:15,625 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. -2024-12-02 00:39:15,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:39:56,887 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. -2024-12-02 00:39:57,194 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:40:14,108 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 474, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 00:40:14,108 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:40:14,122 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 00:40:38,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. -2024-12-02 00:40:38,450 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:41:19,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. -2024-12-02 00:41:19,708 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:42:00,659 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. -2024-12-02 00:42:00,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:42:41,925 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. -2024-12-02 00:42:42,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:43:23,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. -2024-12-02 00:43:23,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:44:04,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. -2024-12-02 00:44:04,745 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:44:45,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. -2024-12-02 00:44:46,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:44:48,379 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 475, 'op': 0, 'd': {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'paws', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': '8d61abb8b5da075befaff858861dba54'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-02 00:44:48,379 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:44:48,379 - discord.client - DEBUG - Dispatching event member_update -2024-12-02 00:44:48,379 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 476, 'op': 0, 'd': {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'paws', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': '8d61abb8b5da075befaff858861dba54'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168249317203640550', '1062343535535325235', '1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-03-02T09:43:32.035000+00:00', 'guild_id': '922005348670406667', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-02 00:44:48,379 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:44:48,379 - discord.client - DEBUG - Dispatching event member_update -2024-12-02 00:45:26,961 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. -2024-12-02 00:45:27,267 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:46:08,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. -2024-12-02 00:46:08,530 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:46:49,490 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. -2024-12-02 00:46:49,799 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:47:30,757 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. -2024-12-02 00:47:31,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:48:12,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. -2024-12-02 00:48:12,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:48:53,266 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. -2024-12-02 00:48:53,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:49:34,530 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. -2024-12-02 00:49:34,837 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:50:15,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. -2024-12-02 00:50:16,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:50:57,053 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. -2024-12-02 00:50:57,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:51:26,280 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:51:26,280 - discord.client - DEBUG - Dispatching event user_update -2024-12-02 00:51:26,280 - discord.client - DEBUG - Dispatching event member_update -2024-12-02 00:51:30,497 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 478, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T19:21:30.836000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312861153755398285', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T19:21:26.638083+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/hHTtW6u5i8st1V4FjM_UZG3fpUyh6rQUoQ08rYWlD64/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 503264979454132255'}, 'description': '<@503264979454132255>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/hHTtW6u5i8st1V4FjM_UZG3fpUyh6rQUoQ08rYWlD64/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png', 'name': 'matrix_07', 'icon_url': 'https://cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-02 00:51:30,513 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:51:30,513 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:51:30,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 479, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T19:21:30.836000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312861153755398285', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T19:21:26.638000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/hHTtW6u5i8st1V4FjM_UZG3fpUyh6rQUoQ08rYWlD64/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 503264979454132255'}, 'description': '<@503264979454132255>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/hHTtW6u5i8st1V4FjM_UZG3fpUyh6rQUoQ08rYWlD64/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png', 'name': 'matrix_07', 'icon_url': 'https://cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-02 00:51:30,561 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:51:30,561 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 00:51:30,561 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 00:51:38,317 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 479. -2024-12-02 00:51:38,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:52:19,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 479. -2024-12-02 00:52:19,885 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:53:00,838 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 479. -2024-12-02 00:53:01,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:53:42,096 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 479. -2024-12-02 00:53:42,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:54:06,022 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_CREATE', 's': 480, 'op': 0, 'd': {'version': 1733081046358, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 70, 'permission_overwrites': [{'type': 1, 'id': '969877724170711060', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1079820325006618634', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1079991990340558848', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1083972920872808478', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1062340890439463012', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '922005348670406667', 'deny': '1024', 'allow': '0'}, {'type': 1, 'id': '557628352828014614', 'deny': '0', 'allow': '257040'}], 'parent_id': '1168320316523688046', 'nsfw': False, 'name': 'ticket-0004', 'last_message_id': None, 'id': '1312861804900122684', 'guild_id': '922005348670406667', 'flags': 0}} -2024-12-02 00:54:06,022 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:06,046 - discord.client - DEBUG - Dispatching event guild_channel_create -2024-12-02 00:54:06,053 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 481, 'op': 0, 'd': {'user_id': '557628352828014614', 'target_id': '1312861804900122684', 'id': '1312861805965480039', 'changes': [{'new_value': 'ticket-0004', 'key': 'name'}, {'new_value': 0, 'key': 'type'}, {'new_value': [{'type': 1, 'id': '969877724170711060', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1079820325006618634', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1079991990340558848', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1083972920872808478', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1062340890439463012', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '922005348670406667', 'deny': '1024', 'allow': '0'}, {'type': 1, 'id': '557628352828014614', 'deny': '0', 'allow': '257040'}], 'key': 'permission_overwrites'}, {'new_value': False, 'key': 'nsfw'}, {'new_value': 0, 'key': 'rate_limit_per_user'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 10, 'guild_id': '922005348670406667'}} -2024-12-02 00:54:06,053 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:06,053 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-02 00:54:06,662 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:06,664 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:54:06,744 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:06,744 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 00:54:06,744 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 00:54:10,638 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:10,638 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:54:15,493 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:15,493 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:54:17,822 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_DELETE', 's': 486, 'op': 0, 'd': {'id': '1312861845610303530', 'channel_id': '1312861804900122684', 'guild_id': '922005348670406667'}} -2024-12-02 00:54:17,822 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:17,822 - discord.client - DEBUG - Dispatching event raw_message_delete -2024-12-02 00:54:17,822 - discord.client - DEBUG - Dispatching event message_delete -2024-12-02 00:54:17,968 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 487, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T19:24:18.244000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['930355638050111529', '1063901902686920724'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-01-11T07:01:09.327000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312861855915573271', 'flags': 0, 'embeds': [{'type': 'rich', 'description': 'Ticket Closed by <@969877724170711060>', 'content_scan_version': 0, 'color': 16514610}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1312861804900122684', 'author': {'username': 'Ticket Tool', 'public_flags': 65536, 'primary_guild': None, 'id': '557628352828014614', 'global_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-02 00:54:17,968 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:17,968 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:54:18,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_UPDATE', 's': 488, 'op': 0, 'd': {'version': 1733081058901, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 70, 'permission_overwrites': [{'type': 1, 'id': '969877724170711060', 'deny': '0', 'allow': '0'}, {'type': 0, 'id': '1079820325006618634', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1079991990340558848', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1083972920872808478', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1062340890439463012', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '922005348670406667', 'deny': '1024', 'allow': '0'}, {'type': 1, 'id': '557628352828014614', 'deny': '0', 'allow': '257040'}], 'parent_id': '1168320316523688046', 'nsfw': False, 'name': 'closed-0004', 'last_message_id': '1312861855915573271', 'id': '1312861804900122684', 'guild_id': '922005348670406667', 'flags': 0}} -2024-12-02 00:54:18,587 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:18,605 - discord.client - DEBUG - Dispatching event guild_channel_update -2024-12-02 00:54:18,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 489, 'op': 0, 'd': {'user_id': '557628352828014614', 'target_id': '1312861804900122684', 'options': {'type': '1', 'id': '969877724170711060'}, 'id': '1312861858738339840', 'changes': [{'old_value': 3072, 'new_value': '0', 'key': 'allow'}], 'action_type': 14, 'guild_id': '922005348670406667'}} -2024-12-02 00:54:18,605 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:18,605 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-02 00:54:18,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 490, 'op': 0, 'd': {'user_id': '557628352828014614', 'target_id': '1312861804900122684', 'id': '1312861858738339842', 'changes': [{'old_value': 'ticket-0004', 'new_value': 'closed-0004', 'key': 'name'}], 'action_type': 11, 'guild_id': '922005348670406667'}} -2024-12-02 00:54:18,605 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:18,605 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-02 00:54:18,771 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:18,771 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:54:20,582 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 00:54:20,582 - discord.client - DEBUG - Dispatching event message -2024-12-02 00:54:23,348 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. -2024-12-02 00:54:23,656 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:55:04,613 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. -2024-12-02 00:55:04,922 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:55:45,874 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. -2024-12-02 00:55:46,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:56:27,141 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. -2024-12-02 00:56:27,447 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:57:08,407 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. -2024-12-02 00:57:08,713 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:57:49,668 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. -2024-12-02 00:57:49,981 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:58:30,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. -2024-12-02 00:58:31,248 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:59:12,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. -2024-12-02 00:59:12,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 00:59:53,434 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. -2024-12-02 00:59:53,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:00:34,695 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. -2024-12-02 01:00:35,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:01:15,955 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. -2024-12-02 01:01:16,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:01:53,333 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:01:53,333 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:01:55,613 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:01:55,613 - discord.client - DEBUG - Dispatching event message -2024-12-02 01:01:55,678 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:01:55,678 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 01:01:55,678 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 01:01:57,210 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:01:57,522 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:02:38,462 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:02:38,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:03:19,726 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:03:20,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:04:00,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:04:01,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:04:42,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:04:42,566 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:05:23,507 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:05:23,834 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:06:04,760 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:06:05,065 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:06:46,020 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:06:46,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:07:27,279 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:07:27,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:08:08,544 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:08:08,851 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:08:49,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:08:50,135 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:09:31,071 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:09:31,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:10:12,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. -2024-12-02 01:10:12,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:10:31,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 496, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-02 01:10:31,619 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:10:31,619 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:10:31,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 497, 'op': 0, 'd': {'user_id': '634227687757447178', 'target_id': None, 'options': {'count': '1'}, 'id': '1312865940110573579', 'action_type': 27, 'guild_id': '922005348670406667'}} -2024-12-02 01:10:31,619 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:10:31,645 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-02 01:10:33,492 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:10:33,492 - discord.client - DEBUG - Dispatching event message -2024-12-02 01:10:33,685 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:10:33,685 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 01:10:33,685 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 01:10:34,154 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 500, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:10:34,154 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:10:34,154 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:10:38,468 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:10:38,468 - discord.client - DEBUG - Dispatching event message -2024-12-02 01:10:38,516 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:10:38,516 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 01:10:38,516 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 01:10:53,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 502. -2024-12-02 01:10:53,901 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:11:34,838 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 502. -2024-12-02 01:11:35,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:12:16,091 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 502. -2024-12-02 01:12:16,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:12:57,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 502. -2024-12-02 01:12:57,671 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:13:38,624 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 502. -2024-12-02 01:13:38,931 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:14:07,817 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 503, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:14:07,817 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:14:07,817 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:14:08,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 504, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:14:08,222 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:14:08,222 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:14:19,887 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 504. -2024-12-02 01:14:20,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:15:01,141 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 504. -2024-12-02 01:15:01,442 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:15:42,400 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 504. -2024-12-02 01:15:42,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:16:23,662 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 504. -2024-12-02 01:16:23,970 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:17:04,914 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 504. -2024-12-02 01:17:05,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:17:07,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 505, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:17:07,033 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:17:07,033 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:17:35,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 506, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:17:35,224 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:17:35,224 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:17:45,168 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 507, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:17:45,168 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:17:45,168 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:17:46,170 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 507. -2024-12-02 01:17:46,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:18:27,435 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 507. -2024-12-02 01:18:27,773 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:19:08,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 507. -2024-12-02 01:19:09,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:19:49,950 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 507. -2024-12-02 01:19:50,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:20:00,081 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 508, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-02 01:20:00,081 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:20:00,097 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:20:03,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 509, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:20:03,574 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:20:03,574 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:20:03,606 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:20:03,606 - discord.client - DEBUG - Dispatching event message -2024-12-02 01:20:03,719 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:20:03,719 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 01:20:03,719 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 01:20:08,514 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:20:08,514 - discord.client - DEBUG - Dispatching event message -2024-12-02 01:20:08,571 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:20:08,571 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 01:20:08,571 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 01:20:31,207 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 513. -2024-12-02 01:20:31,514 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:20:39,172 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 514, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:20:39,172 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:20:39,172 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:21:12,460 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 514. -2024-12-02 01:21:12,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:21:53,725 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 514. -2024-12-02 01:21:54,031 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:22:34,990 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 514. -2024-12-02 01:22:35,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:22:37,436 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 515, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:22:37,436 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:22:37,436 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:22:37,450 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 516, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:22:37,450 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:22:37,450 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:22:39,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 517, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:22:39,321 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:22:39,321 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:22:50,031 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 518, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:22:50,031 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:22:50,031 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:23:16,249 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 518. -2024-12-02 01:23:16,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:23:57,506 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 518. -2024-12-02 01:23:57,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:24:38,771 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 518. -2024-12-02 01:24:39,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:25:03,706 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 519, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-02 01:25:03,706 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:25:03,706 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:25:08,658 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:25:08,658 - discord.client - DEBUG - Dispatching event message -2024-12-02 01:25:08,716 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:25:08,716 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 01:25:08,716 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 01:25:20,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 521. -2024-12-02 01:25:20,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:26:01,299 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 521. -2024-12-02 01:26:01,610 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:26:42,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 521. -2024-12-02 01:26:42,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:27:23,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 521. -2024-12-02 01:27:24,118 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:27:44,441 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 522, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:27:44,441 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:27:44,441 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:28:05,063 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. -2024-12-02 01:28:05,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:28:46,324 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. -2024-12-02 01:28:46,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:29:27,588 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. -2024-12-02 01:29:27,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:30:08,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. -2024-12-02 01:30:09,150 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:30:50,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. -2024-12-02 01:30:50,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:31:31,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. -2024-12-02 01:31:31,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:32:12,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. -2024-12-02 01:32:12,927 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:32:31,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 523, 'op': 0, 'd': {'member': {'user': {'username': '.rathod.', 'public_flags': 128, 'id': '235143666568658944', 'global_name': 'Rathod<3', 'display_name': 'Rathod<3', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '234af0138f5d9d87277b28f19d6341f6'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1168249317203640550'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-24T14:42:03.444000+00:00', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '235143666568658944', 'suppress': False, 'session_id': '3c1f06524a266b3923ac42502d33403b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:32:31,491 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:32:31,491 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:32:33,661 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:32:33,661 - discord.client - DEBUG - Dispatching event message -2024-12-02 01:32:33,757 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:32:33,757 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 01:32:33,757 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 01:32:37,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 526, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:32:37,999 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:32:37,999 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:32:53,862 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 527, 'op': 0, 'd': {'member': {'user': {'username': '.rathod.', 'public_flags': 128, 'id': '235143666568658944', 'global_name': 'Rathod<3', 'display_name': 'Rathod<3', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '234af0138f5d9d87277b28f19d6341f6'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1168249317203640550'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-24T14:42:03.444000+00:00', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '235143666568658944', 'suppress': False, 'session_id': '3c1f06524a266b3923ac42502d33403b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:32:53,862 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:32:53,862 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:32:53,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 527. -2024-12-02 01:32:54,184 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:33:03,522 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 528, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:33:03,522 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:33:03,522 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:33:04,205 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 529, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-02 01:33:04,205 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:33:04,205 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:33:08,646 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:33:08,646 - discord.client - DEBUG - Dispatching event message -2024-12-02 01:33:08,860 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:33:08,860 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 01:33:08,860 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 01:33:35,129 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 531. -2024-12-02 01:33:35,443 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:33:37,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 532, 'op': 0, 'd': {'member': {'user': {'username': '.rathod.', 'public_flags': 128, 'id': '235143666568658944', 'global_name': 'Rathod<3', 'display_name': 'Rathod<3', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '234af0138f5d9d87277b28f19d6341f6'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1168249317203640550'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-24T14:42:03.444000+00:00', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '235143666568658944', 'suppress': False, 'session_id': '3c1f06524a266b3923ac42502d33403b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:33:37,646 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:33:37,646 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:33:57,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 533, 'op': 0, 'd': {'member': {'user': {'username': '.rathod.', 'public_flags': 128, 'id': '235143666568658944', 'global_name': 'Rathod<3', 'display_name': 'Rathod<3', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '234af0138f5d9d87277b28f19d6341f6'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1168249317203640550'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-24T14:42:03.444000+00:00', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '235143666568658944', 'suppress': False, 'session_id': '3c1f06524a266b3923ac42502d33403b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:33:57,417 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:33:57,417 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:34:06,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 534, 'op': 0, 'd': {'member': {'user': {'username': '.rathod.', 'public_flags': 128, 'id': '235143666568658944', 'global_name': 'Rathod<3', 'display_name': 'Rathod<3', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '234af0138f5d9d87277b28f19d6341f6'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1168249317203640550'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-24T14:42:03.444000+00:00', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '235143666568658944', 'suppress': False, 'session_id': '3c1f06524a266b3923ac42502d33403b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-02 01:34:06,888 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:34:06,888 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:34:08,797 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:34:08,797 - discord.client - DEBUG - Dispatching event message -2024-12-02 01:34:08,849 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:34:08,849 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 01:34:08,849 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 01:34:16,390 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. -2024-12-02 01:34:16,697 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:34:57,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. -2024-12-02 01:34:57,976 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:35:38,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. -2024-12-02 01:35:39,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:36:20,171 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. -2024-12-02 01:36:20,478 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:37:01,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. -2024-12-02 01:37:01,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:37:42,681 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. -2024-12-02 01:37:42,987 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:38:23,947 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. -2024-12-02 01:38:24,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:39:05,201 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. -2024-12-02 01:39:05,508 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:39:46,458 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. -2024-12-02 01:39:46,786 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:40:27,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. -2024-12-02 01:40:28,036 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:41:08,964 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. -2024-12-02 01:41:09,287 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:41:20,486 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 537, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 01:41:20,486 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 01:41:20,486 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 01:41:50,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:41:50,539 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:42:31,487 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:42:31,815 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:43:12,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:43:13,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:43:54,017 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:43:54,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:44:35,283 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:44:35,589 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:45:16,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:45:16,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:45:57,799 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:45:58,105 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:46:39,059 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:46:39,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:47:20,318 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:47:20,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:48:01,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:48:01,914 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:48:42,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:48:43,143 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:49:24,094 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:49:24,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:50:05,350 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:50:05,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:50:46,614 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:50:46,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:51:27,874 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:51:28,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:52:09,125 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:52:09,462 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:52:50,380 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:52:50,686 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:53:31,634 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:53:31,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:54:12,886 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:54:13,194 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:54:54,142 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:54:54,481 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:55:35,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:55:35,709 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:56:16,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:56:16,988 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:56:57,929 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:56:58,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:57:39,194 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:57:39,516 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:58:20,454 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:58:20,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:59:01,720 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:59:02,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 01:59:42,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 01:59:43,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:00:24,235 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:00:24,541 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:01:05,499 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:01:05,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:01:46,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:01:47,078 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:02:28,027 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:02:28,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:03:09,286 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:03:09,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:03:50,543 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:03:50,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:04:31,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:04:32,103 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:05:13,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:05:13,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:05:54,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:05:54,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:06:35,561 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:06:35,886 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:07:16,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:07:17,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:07:58,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:07:58,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:08:39,336 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:08:39,643 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:09:20,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:09:20,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:10:01,865 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:10:02,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:10:43,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:10:43,426 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:11:24,383 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:11:24,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:12:05,636 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:12:05,962 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:12:46,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. -2024-12-02 02:12:47,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:13:04,623 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 538, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-02 02:13:04,623 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 02:13:04,623 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 02:13:07,728 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 02:13:07,728 - discord.client - DEBUG - Dispatching event message -2024-12-02 02:13:07,809 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 02:13:07,809 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 02:13:07,809 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 02:13:08,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 541, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} -2024-12-02 02:13:08,102 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 02:13:08,102 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 02:13:08,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 542, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-02 02:13:08,584 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 02:13:08,584 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 02:13:08,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 543, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} -2024-12-02 02:13:08,584 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 02:13:08,584 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. -2024-12-02 02:13:13,320 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 02:13:13,320 - discord.client - DEBUG - Dispatching event message -2024-12-02 02:13:13,384 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 02:13:13,384 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 02:13:13,384 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 02:13:28,158 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:13:28,465 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:14:09,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:14:09,729 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:14:50,676 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:14:50,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:15:31,927 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:15:32,234 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:16:13,190 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:16:13,506 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:16:54,448 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:16:54,754 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:17:35,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:17:36,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:18:16,975 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:18:17,285 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:18:58,231 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:18:58,556 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:19:39,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:19:39,792 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:20:20,744 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:20:21,081 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:21:02,005 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:21:02,312 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:21:43,271 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:21:43,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:22:24,538 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:22:24,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:23:05,798 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:23:06,105 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:23:47,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:23:47,358 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:24:28,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:24:28,615 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:25:09,560 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:25:09,872 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:25:50,821 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:25:51,128 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:26:32,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:26:32,381 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:27:13,329 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:27:13,636 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:27:54,581 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:27:54,887 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:28:35,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:28:36,158 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:29:17,088 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:29:17,396 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:29:58,339 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:29:58,646 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:30:39,599 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:30:39,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:31:20,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:31:21,172 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:32:02,120 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:32:02,426 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:32:43,386 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:32:43,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:33:24,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:33:24,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:34:05,912 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:34:06,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:34:47,164 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:34:47,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:35:28,416 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:35:28,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:36:09,670 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:36:09,977 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:36:50,934 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:36:51,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:37:32,187 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:37:32,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:38:13,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:38:13,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:38:54,700 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:38:55,026 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:39:35,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:39:36,274 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:40:17,221 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:40:17,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:40:58,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:40:58,802 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:41:39,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:41:40,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:42:20,997 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:42:21,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:43:02,248 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:43:02,555 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:43:43,505 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:43:43,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:44:24,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:44:25,072 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:45:06,029 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:45:06,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:45:47,286 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:45:47,592 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:46:28,552 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:46:28,859 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:47:09,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:47:10,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:47:51,068 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:47:51,376 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:48:32,321 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:48:32,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:49:13,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:49:13,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:49:54,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:49:55,151 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:50:36,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:50:36,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:51:17,364 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:51:17,683 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:51:58,625 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:51:58,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:52:39,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:52:40,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:53:21,145 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. -2024-12-02 02:53:21,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:53:40,506 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 546, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733088221, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1310707299177992262', 'guild_id': '1292805470117171231'}} -2024-12-02 02:53:40,506 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 02:53:40,506 - discord.client - DEBUG - Dispatching event typing -2024-12-02 02:53:40,506 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 02:53:49,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 547, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:23:50.385000+00:00', 'pinned': False, 'nonce': '1312891930903838720', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312891938055393291', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '```readme.md\n\n```', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [{'url': 'https://cdn.discordapp.com/attachments/1310707299177992262/1312891937774370977/xhmTImI.txt?ex=674e2566&is=674cd3e6&hm=6d4f80bdae250a6dd8a5a6467c02c3d3eba302e24e59edd4a04eebef9c0d9059&', 'size': 4833, 'proxy_url': 'https://media.discordapp.net/attachments/1310707299177992262/1312891937774370977/xhmTImI.txt?ex=674e2566&is=674cd3e6&hm=6d4f80bdae250a6dd8a5a6467c02c3d3eba302e24e59edd4a04eebef9c0d9059&', 'id': '1312891937774370977', 'filename': 'xhmTImI.txt', 'content_type': 'text/plain; charset=utf-8', 'content_scan_version': 0}], 'guild_id': '1292805470117171231'}} -2024-12-02 02:53:49,788 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 02:53:49,788 - discord.client - DEBUG - Dispatching event message -2024-12-02 02:53:49,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 548, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733088230, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1310707299177992262', 'guild_id': '1292805470117171231'}} -2024-12-02 02:53:49,881 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 02:53:49,881 - discord.client - DEBUG - Dispatching event typing -2024-12-02 02:53:49,881 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 02:54:02,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 02:54:02,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:54:43,655 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 02:54:43,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:55:24,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 02:55:25,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:56:06,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 02:56:06,492 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:56:47,435 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 02:56:47,759 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:57:28,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 02:57:29,008 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:58:09,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 02:58:10,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:58:51,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 02:58:51,534 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 02:59:32,476 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 02:59:32,791 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:00:13,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 03:00:14,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:00:54,997 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 03:00:55,317 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:01:36,250 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 03:01:36,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:02:17,505 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 03:02:17,820 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:02:58,757 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 03:02:59,070 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:03:40,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. -2024-12-02 03:03:40,352 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:09:09,740 - discord.client - DEBUG - on_error has successfully been registered as an event -2024-12-02 03:09:09,740 - asyncio - DEBUG - Using proactor: IocpProactor -2024-12-02 03:09:09,742 - IndieGOBot - INFO - Starting bot... -2024-12-02 03:09:09,743 - discord.client - INFO - logging in using static token -2024-12-02 03:09:10,204 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 -2024-12-02 03:09:10,205 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). -2024-12-02 03:09:10,205 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} -2024-12-02 03:09:10,745 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 -2024-12-02 03:09:10,747 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). -2024-12-02 03:09:10,747 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Moderation', 'fun', 'productivity', 'Community', 'Programming'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} -2024-12-02 03:09:10,748 - IndieGOBot - INFO - Starting bot setup... -2024-12-02 03:09:10,748 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general -2024-12-02 03:09:10,759 - IndieGOBot - INFO - Successfully loaded extension: cogs.general -2024-12-02 03:09:10,759 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation -2024-12-02 03:09:10,772 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation -2024-12-02 03:09:10,772 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun -2024-12-02 03:09:10,789 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun -2024-12-02 03:09:10,790 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin -2024-12-02 03:09:10,801 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin -2024-12-02 03:09:10,802 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets -2024-12-02 03:09:10,811 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets -2024-12-02 03:09:10,812 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging -2024-12-02 03:09:10,821 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging -2024-12-02 03:09:10,822 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant -2024-12-02 03:09:23,279 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant -2024-12-02 03:09:23,280 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help -2024-12-02 03:09:37,656 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help -2024-12-02 03:09:37,657 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help -2024-12-02 03:09:37,667 - IndieGOBot - ERROR - Failed to load extension cogs.help -2024-12-02 03:09:37,668 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-12-02 03:09:37,668 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. -2024-12-02 03:09:37,669 - IndieGOBot - ERROR - Traceback: -2024-12-02 03:09:37,700 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\help.py", line 221, in setup - await bot.add_cog(Help(bot)) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 799, in add_cog - cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\cog.py", line 725, in _inject - raise e - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\cog.py", line 716, in _inject - bot.add_command(command) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 253, in add_command - super().add_command(command) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\core.py", line 1356, in add_command - raise CommandRegistrationError(command.name) -discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\mante\OneDrive\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. - -2024-12-02 03:09:37,701 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base -2024-12-02 03:09:37,710 - IndieGOBot - INFO - Successfully loaded extension: cogs.base -2024-12-02 03:09:37,711 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors -2024-12-02 03:09:37,754 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors -2024-12-02 03:09:37,754 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod -2024-12-02 03:09:37,766 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod -2024-12-02 03:09:37,766 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction -2024-12-02 03:09:37,774 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction -2024-12-02 03:09:37,774 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel -2024-12-02 03:09:37,784 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel -2024-12-02 03:09:37,784 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr -2024-12-02 03:09:37,813 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr -2024-12-02 03:09:37,814 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit -2024-12-02 03:09:38,863 - IndieGOBot - ERROR - Failed to load extension cogs.reddit -2024-12-02 03:09:38,864 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-12-02 03:09:38,864 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. -2024-12-02 03:09:38,864 - IndieGOBot - ERROR - Traceback: -2024-12-02 03:09:38,887 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec - await setup(self) - File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\reddit.py", line 29, in setup - await bot.add_cog(Reddit(bot)) - ^^^^^^^^^^^ - File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ - self.reddit = praw.Reddit( - ^^^^^^^^^^^^ - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\praw\util\deprecate_args.py", line 46, in wrapped - return func(**dict(zip(_old_args, args)), **kwargs) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\praw\reddit.py", line 259, in __init__ - raise MissingRequiredAttributeException( -praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\mante\OneDrive\Desktop\IndieGo\main.py", line 56, in setup_hook - await self.load_extension(extension) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. -This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. - -2024-12-02 03:09:38,888 - IndieGOBot - INFO - Syncing command tree... -2024-12-02 03:09:39,427 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 -2024-12-02 03:09:39,428 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). -2024-12-02 03:09:39,429 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] -2024-12-02 03:09:39,433 - IndieGOBot - INFO - Command tree synced successfully -2024-12-02 03:09:39,852 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ -2024-12-02 03:09:39,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-g36t",{"micros":0.0}]']}} -2024-12-02 03:09:39,854 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. -2024-12-02 03:09:40,167 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:09:40,273 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': 'fa2277b53513e5fe00deb778c28808aa', 'resume_gateway_url': 'wss://gateway-us-east1-d.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-d-g36t",{"micros":106633,"calls":["id_created",{"micros":721,"calls":[]},"session_lookup_time",{"micros":2550,"calls":[]},"session_lookup_finished",{"micros":16,"calls":[]},"discord-sessions-prd-1-99",{"micros":103065,"calls":["start_session",{"micros":72673,"calls":["discord-api-rpc-6cf69f8f4b-tbppm",{"micros":67874,"calls":["get_user",{"micros":6707},"get_guilds",{"micros":3292},"send_scheduled_deletion_message",{"micros":5},"guild_join_requests",{"micros":14611},"authorized_ip_coro",{"micros":10}]}]},"starting_guild_connect",{"micros":38,"calls":[]},"presence_started",{"micros":9629,"calls":[]},"guilds_started",{"micros":106,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":20591,"calls":[]},"connect_finished",{"micros":20597,"calls":[]},"build_ready",{"micros":19,"calls":[]},"clean_ready",{"micros":0,"calls":[]},"optimize_ready",{"micros":1,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} -2024-12-02 03:09:40,275 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:40,276 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: fa2277b53513e5fe00deb778c28808aa). -2024-12-02 03:09:40,276 - discord.client - DEBUG - Dispatching event connect -2024-12-02 03:09:40,530 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:40,537 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:40,554 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:40,595 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:40,603 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:40,623 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:40,836 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:40,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '8497323d62653ea8b8710adf750d2967', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-02 03:09:40,861 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:40,862 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. -2024-12-02 03:09:40,947 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_CREATE', 's': 10, 'op': 0, 'd': {'role': {'version': 1733089181650, 'unicode_emoji': None, 'position': 1, 'permissions': '0', 'name': 'new role', 'mentionable': False, 'managed': False, 'id': '1312895927908040785', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:09:40,947 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:40,947 - discord.client - DEBUG - Dispatching event guild_role_create -2024-12-02 03:09:40,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 11, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1312895927908040785', 'id': '1312895927908040786', 'changes': [{'new_value': 'new role', 'key': 'name'}, {'new_value': 0, 'key': 'permissions'}, {'new_value': 0, 'key': 'color'}, {'new_value': False, 'key': 'hoist'}, {'new_value': False, 'key': 'mentionable'}], 'action_type': 30, 'guild_id': '1292805470117171231'}} -2024-12-02 03:09:40,961 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:40,961 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-02 03:09:41,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 12, 'op': 0, 'd': {'nonce': 'c5877e212ee24c8f39942ce434cf1ea5', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-02 03:09:41,370 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:41,370 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. -2024-12-02 03:09:41,867 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 13, 'op': 0, 'd': {'nonce': 'c35e01ceac6e3efd902f1f2b484d3dc1', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-02 03:09:41,869 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:41,869 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. -2024-12-02 03:09:42,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 14, 'op': 0, 'd': {'nonce': 'f50cdbb3c9f38c7e574fd243e8687f4c', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-02 03:09:42,361 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:42,361 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. -2024-12-02 03:09:42,856 - discord.client - DEBUG - Dispatching event guild_available -2024-12-02 03:09:42,857 - discord.client - DEBUG - Dispatching event guild_available -2024-12-02 03:09:42,857 - discord.client - DEBUG - Dispatching event guild_available -2024-12-02 03:09:42,857 - discord.client - DEBUG - Dispatching event guild_available -2024-12-02 03:09:42,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 15, 'op': 0, 'd': {'nonce': '9b5e9e43ca8a57c8c4611d015bbe66a2', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-02 03:09:42,872 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:42,872 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. -2024-12-02 03:09:42,873 - discord.client - DEBUG - Dispatching event guild_available -2024-12-02 03:09:43,361 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 16, 'op': 0, 'd': {'nonce': '7e3c1ba5bd3162b88b1c247bbf22bdb8', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'paws', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': '8d61abb8b5da075befaff858861dba54'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e3fc9f81235eab66f41bd1f30754e886'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-02 03:09:43,364 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:43,365 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. -2024-12-02 03:09:43,365 - discord.client - DEBUG - Dispatching event guild_available -2024-12-02 03:09:44,498 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:44,505 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-12-02 03:09:44,677 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:44,684 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-12-02 03:09:44,828 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:44,834 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-12-02 03:09:44,982 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:44,988 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-12-02 03:09:45,125 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:45,133 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-12-02 03:09:45,180 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:09:45,181 - discord.state - DEBUG - Processed a chunk for 142 members in guild ID 922005348670406667. -2024-12-02 03:09:45,182 - discord.client - DEBUG - Dispatching event guild_available -2024-12-02 03:09:45,182 - discord.client - DEBUG - Dispatching event ready -2024-12-02 03:09:45,182 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! -2024-12-02 03:09:45,183 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status -2024-12-02 03:10:03,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 23, 'op': 0, 'd': {'role': {'version': 1733089203528, 'unicode_emoji': None, 'tags': {'bot_id': '720351927581278219'}, 'position': 2, 'permissions': '268822624', 'name': 'Invite Tracker', 'mentionable': False, 'managed': True, 'id': '1295433111592767562', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,147 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,148 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 24, 'op': 0, 'd': {'role': {'version': 1733089203545, 'unicode_emoji': None, 'tags': {'bot_id': '155149108183695360'}, 'position': 3, 'permissions': '1513962695871', 'name': 'Dyno', 'mentionable': False, 'managed': True, 'id': '1295430234946142292', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,148 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,149 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 25, 'op': 0, 'd': {'role': {'version': 1733089203548, 'unicode_emoji': None, 'tags': {'bot_id': '703886990948565003'}, 'position': 4, 'permissions': '8', 'name': 'Double Counter', 'mentionable': False, 'managed': True, 'id': '1295429440242847840', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,149 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,150 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,150 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 26, 'op': 0, 'd': {'role': {'version': 1733089203550, 'unicode_emoji': None, 'tags': {'bot_id': '557628352828014614'}, 'position': 5, 'permissions': '2416045072', 'name': 'Ticket Tool', 'mentionable': False, 'managed': True, 'id': '1293150462140223683', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,150 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,150 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,151 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 27, 'op': 0, 'd': {'role': {'version': 1733089203554, 'unicode_emoji': None, 'tags': {'bot_id': '493716749342998541'}, 'position': 6, 'permissions': '1007021177', 'name': 'Mimu', 'mentionable': False, 'managed': True, 'id': '1293088072459747342', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,151 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,151 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,155 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,155 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,159 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,159 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,162 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,162 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,164 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,165 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,168 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,168 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,171 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,171 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,171 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 34, 'op': 0, 'd': {'role': {'version': 1733089203585, 'unicode_emoji': None, 'position': 13, 'permissions': '521942715968', 'name': 'iOS', 'mentionable': False, 'managed': False, 'id': '1292805470163177543', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 12648344}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,172 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,172 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 35, 'op': 0, 'd': {'role': {'version': 1733089203587, 'unicode_emoji': None, 'position': 14, 'permissions': '521942715968', 'name': 'Android', 'mentionable': False, 'managed': False, 'id': '1292805470163177544', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 3066993}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,173 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,173 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 36, 'op': 0, 'd': {'role': {'version': 1733089203589, 'unicode_emoji': None, 'position': 15, 'permissions': '521942715968', 'name': 'TempleOS', 'mentionable': False, 'managed': False, 'id': '1292805470163177545', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 15844367}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,173 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,174 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,174 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 37, 'op': 0, 'd': {'role': {'version': 1733089203594, 'unicode_emoji': None, 'position': 16, 'permissions': '521942715968', 'name': 'MacOS', 'mentionable': False, 'managed': False, 'id': '1292805470163177546', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 16777215}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,174 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,174 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,174 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 38, 'op': 0, 'd': {'role': {'version': 1733089203598, 'unicode_emoji': None, 'position': 17, 'permissions': '6546640448', 'name': 'Windows', 'mentionable': False, 'managed': False, 'id': '1292805470163177547', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 3447003}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,174 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,175 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 39, 'op': 0, 'd': {'role': {'version': 1733089203601, 'unicode_emoji': None, 'position': 18, 'permissions': '521942715968', 'name': 'CentOS', 'mentionable': False, 'managed': False, 'id': '1292805470163177548', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 8783774}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,175 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,175 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 40, 'op': 0, 'd': {'role': {'version': 1733089203604, 'unicode_emoji': None, 'position': 19, 'permissions': '521942715968', 'name': 'Fedora', 'mentionable': False, 'managed': False, 'id': '1292805470163177549', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 2123412}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,175 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,175 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 41, 'op': 0, 'd': {'role': {'version': 1733089203608, 'unicode_emoji': None, 'position': 20, 'permissions': '521942715968', 'name': 'Ubuntu', 'mentionable': False, 'managed': False, 'id': '1292805470163177550', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 10038562}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,176 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,176 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 42, 'op': 0, 'd': {'role': {'version': 1733089203610, 'unicode_emoji': None, 'position': 21, 'permissions': '6546640448', 'name': 'Linux', 'mentionable': False, 'managed': False, 'id': '1292805470163177551', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 1752220}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,177 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,177 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,180 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,180 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 44, 'op': 0, 'd': {'role': {'version': 1733089203615, 'unicode_emoji': None, 'position': 23, 'permissions': '0', 'name': 'Whistleblower', 'mentionable': False, 'managed': False, 'id': '1292805470175887431', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 6441372}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,181 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,181 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,181 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 45, 'op': 0, 'd': {'role': {'version': 1733089203620, 'unicode_emoji': None, 'position': 24, 'permissions': '0', 'name': 'Red Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887432', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 16711680}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,181 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,181 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,181 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 46, 'op': 0, 'd': {'role': {'version': 1733089203626, 'unicode_emoji': None, 'position': 25, 'permissions': '0', 'name': 'Blue Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887433', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 2520831}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,182 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,182 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 47, 'op': 0, 'd': {'role': {'version': 1733089203628, 'unicode_emoji': None, 'position': 26, 'permissions': '0', 'name': 'Green Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887434', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 5635906}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,182 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,182 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 48, 'op': 0, 'd': {'role': {'version': 1733089203631, 'unicode_emoji': None, 'position': 27, 'permissions': '6546640448', 'name': 'Gray Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887435', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 9936031}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,183 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,183 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 49, 'op': 0, 'd': {'role': {'version': 1733089203634, 'unicode_emoji': None, 'position': 28, 'permissions': '6546640448', 'name': 'Black Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887436', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 1}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,183 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,183 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 50, 'op': 0, 'd': {'role': {'version': 1733089203637, 'unicode_emoji': None, 'position': 29, 'permissions': '6546640448', 'name': 'White Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887437', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 16777215}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,184 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,184 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,186 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,186 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,187 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 52, 'op': 0, 'd': {'role': {'version': 1733089203641, 'unicode_emoji': None, 'position': 31, 'permissions': '521942715968', 'name': 'Node.js', 'mentionable': False, 'managed': False, 'id': '1292805470175887439', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 12165717}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,187 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,187 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,187 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 53, 'op': 0, 'd': {'role': {'version': 1733089203643, 'unicode_emoji': None, 'position': 32, 'permissions': '521942715968', 'name': 'React', 'mentionable': False, 'managed': False, 'id': '1292805470175887440', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 4445678}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,187 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,188 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 54, 'op': 0, 'd': {'role': {'version': 1733089203646, 'unicode_emoji': None, 'position': 33, 'permissions': '521942715968', 'name': 'CSS', 'mentionable': False, 'managed': False, 'id': '1292805470192406652', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 4652969}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,189 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,189 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 55, 'op': 0, 'd': {'role': {'version': 1733089203651, 'unicode_emoji': None, 'position': 34, 'permissions': '521942715968', 'name': 'HTML', 'mentionable': False, 'managed': False, 'id': '1292805470192406653', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 16711680}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,190 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,190 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 56, 'op': 0, 'd': {'role': {'version': 1733089203685, 'unicode_emoji': None, 'position': 35, 'permissions': '521942715968', 'name': 'C#', 'mentionable': False, 'managed': False, 'id': '1292805470192406654', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 1861341}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,190 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,191 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 57, 'op': 0, 'd': {'role': {'version': 1733089203692, 'unicode_emoji': None, 'position': 36, 'permissions': '521942715968', 'name': 'C++', 'mentionable': False, 'managed': False, 'id': '1292805470192406655', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 7116509}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,191 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,191 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 58, 'op': 0, 'd': {'role': {'version': 1733089203695, 'unicode_emoji': None, 'position': 37, 'permissions': '521942715968', 'name': 'Go', 'mentionable': False, 'managed': False, 'id': '1292805470192406656', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 9164543}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,192 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,192 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 59, 'op': 0, 'd': {'role': {'version': 1733089203700, 'unicode_emoji': None, 'position': 38, 'permissions': '521942715968', 'name': 'Rust', 'mentionable': False, 'managed': False, 'id': '1292805470192406657', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 131329}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,192 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,193 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,193 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 60, 'op': 0, 'd': {'role': {'version': 1733089203704, 'unicode_emoji': None, 'position': 39, 'permissions': '521942715968', 'name': 'Lua', 'mentionable': False, 'managed': False, 'id': '1292805470192406658', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 204263}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,193 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,193 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,194 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 61, 'op': 0, 'd': {'role': {'version': 1733089203706, 'unicode_emoji': None, 'position': 40, 'permissions': '521942715968', 'name': 'Kotlin', 'mentionable': False, 'managed': False, 'id': '1292805470192406659', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 15105570}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,194 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,194 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,194 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 62, 'op': 0, 'd': {'role': {'version': 1733089203709, 'unicode_emoji': None, 'position': 41, 'permissions': '521942715968', 'name': 'Java', 'mentionable': False, 'managed': False, 'id': '1292805470192406660', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 9865730}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,194 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,194 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,195 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 63, 'op': 0, 'd': {'role': {'version': 1733089203711, 'unicode_emoji': None, 'position': 42, 'permissions': '521942715968', 'name': 'TypeScript', 'mentionable': False, 'managed': False, 'id': '1292805470192406661', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 4743664}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,195 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,195 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,195 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 64, 'op': 0, 'd': {'role': {'version': 1733089203714, 'unicode_emoji': None, 'position': 43, 'permissions': '521942715968', 'name': 'JavaScript', 'mentionable': False, 'managed': False, 'id': '1292805470204985456', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 15844367}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,195 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,195 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 65, 'op': 0, 'd': {'role': {'version': 1733089203716, 'unicode_emoji': None, 'position': 44, 'permissions': '521942715968', 'name': 'Python', 'mentionable': False, 'managed': False, 'id': '1292805470204985457', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 2123412}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,196 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,196 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,199 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,199 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,200 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 67, 'op': 0, 'd': {'role': {'version': 1733089203722, 'unicode_emoji': None, 'position': 46, 'permissions': '521942715968', 'name': 'Robotics Engineer', 'mentionable': False, 'managed': False, 'id': '1292805470204985459', 'icon': None, 'hoist': False, 'flags': 1, 'description': None, 'color': 15629712}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,200 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,200 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,200 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 68, 'op': 0, 'd': {'role': {'version': 1733089203725, 'unicode_emoji': None, 'position': 47, 'permissions': '521942715968', 'name': 'Computer Science', 'mentionable': False, 'managed': False, 'id': '1292805470204985460', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 7289005}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,200 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,200 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 69, 'op': 0, 'd': {'role': {'version': 1733089203727, 'unicode_emoji': None, 'position': 48, 'permissions': '6546640449', 'name': 'Cyber Security', 'mentionable': False, 'managed': False, 'id': '1292805470204985461', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 14685461}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,201 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,201 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 70, 'op': 0, 'd': {'role': {'version': 1733089203733, 'unicode_emoji': None, 'position': 49, 'permissions': '6710226624', 'name': 'Programmer', 'mentionable': False, 'managed': False, 'id': '1292805470204985462', 'icon': None, 'hoist': False, 'flags': 1, 'description': None, 'color': 16777215}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,201 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,202 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,204 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,204 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,204 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 72, 'op': 0, 'd': {'role': {'version': 1733089203745, 'unicode_emoji': None, 'position': 51, 'permissions': '0', 'name': 'Logged Out', 'mentionable': False, 'managed': False, 'id': '1292805470204985464', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,205 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,205 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,206 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 73, 'op': 0, 'd': {'role': {'version': 1733089203749, 'unicode_emoji': None, 'position': 52, 'permissions': '0', 'name': 'Unregistered', 'mentionable': False, 'managed': False, 'id': '1292805470204985465', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,206 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,206 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,206 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 74, 'op': 0, 'd': {'role': {'version': 1733089203752, 'unicode_emoji': None, 'position': 53, 'permissions': '6479531584', 'name': 'Member', 'mentionable': False, 'managed': False, 'id': '1292805470221893652', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 9159671}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,207 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,207 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 75, 'op': 0, 'd': {'role': {'version': 1733089203756, 'unicode_emoji': None, 'position': 54, 'permissions': '521942715968', 'name': 'Special Access', 'mentionable': False, 'managed': False, 'id': '1292805470221893653', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 15844367}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,207 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,207 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 76, 'op': 0, 'd': {'role': {'version': 1733089203758, 'unicode_emoji': None, 'position': 55, 'permissions': '521942715968', 'name': 'Honorable Member', 'mentionable': False, 'managed': False, 'id': '1292805470221893654', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 65525}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,208 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,208 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 77, 'op': 0, 'd': {'role': {'version': 1733089203760, 'unicode_emoji': None, 'position': 56, 'permissions': '0', 'name': 'Blue', 'mentionable': False, 'managed': False, 'id': '1292805470221893655', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 3706367}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,208 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,209 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,209 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 78, 'op': 0, 'd': {'role': {'version': 1733089203763, 'unicode_emoji': None, 'position': 57, 'permissions': '0', 'name': 'Black', 'mentionable': False, 'managed': False, 'id': '1292805470221893656', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 1}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,209 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,209 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,209 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 79, 'op': 0, 'd': {'role': {'version': 1733089203765, 'unicode_emoji': None, 'position': 58, 'permissions': '0', 'name': 'Coding Support', 'mentionable': False, 'managed': False, 'id': '1292805470221893657', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,209 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,210 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 80, 'op': 0, 'd': {'role': {'version': 1733089203768, 'unicode_emoji': None, 'position': 59, 'permissions': '6559231687', 'name': 'Trial Moderation', 'mentionable': False, 'managed': False, 'id': '1292805470221893658', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,210 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,210 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 81, 'op': 0, 'd': {'role': {'version': 1733089203780, 'unicode_emoji': None, 'position': 60, 'permissions': '521942715968', 'name': 'Moderation', 'mentionable': False, 'managed': False, 'id': '1292805470221893659', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,210 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,211 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 82, 'op': 0, 'd': {'role': {'version': 1733089203785, 'unicode_emoji': None, 'position': 61, 'permissions': '6546771529', 'name': 'Management', 'mentionable': False, 'managed': False, 'id': '1292805470221893660', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,211 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,211 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 83, 'op': 0, 'd': {'role': {'version': 1733089203789, 'unicode_emoji': None, 'position': 62, 'permissions': '6546771529', 'name': 'Administration', 'mentionable': False, 'managed': False, 'id': '1292805470247194667', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,211 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,212 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,212 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 84, 'op': 0, 'd': {'role': {'version': 1733089203791, 'unicode_emoji': None, 'position': 63, 'permissions': '0', 'name': 'Owner', 'mentionable': False, 'managed': False, 'id': '1295430750807789598', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,212 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,212 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,212 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 85, 'op': 0, 'd': {'role': {'version': 1733089203794, 'unicode_emoji': None, 'position': 64, 'permissions': '0', 'name': 'Indie HQ', 'mentionable': False, 'managed': False, 'id': '1295430673594581002', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,212 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,213 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 86, 'op': 0, 'd': {'role': {'version': 1733089203797, 'unicode_emoji': None, 'position': 65, 'permissions': '70890686893633', 'name': 'System', 'mentionable': False, 'managed': False, 'id': '1292805470221893661', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,213 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,213 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 87, 'op': 0, 'd': {'role': {'version': 1733089203800, 'unicode_emoji': None, 'position': 66, 'permissions': '8589410303', 'name': 'Bots', 'mentionable': True, 'managed': False, 'id': '1292805470117171233', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 9936031}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,214 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,214 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,214 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 88, 'op': 0, 'd': {'role': {'version': 1733089203802, 'unicode_emoji': None, 'position': 67, 'permissions': '6442450944', 'name': 'Muted', 'mentionable': False, 'managed': False, 'id': '1292805470117171232', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 8421504}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,214 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,215 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,215 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 89, 'op': 0, 'd': {'role': {'version': 1733089203805, 'unicode_emoji': None, 'tags': {'bot_id': '235148962103951360'}, 'position': 68, 'permissions': '2088234230', 'name': 'carl-bot', 'mentionable': False, 'managed': True, 'id': '1293081062099910659', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,215 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,215 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,215 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 90, 'op': 0, 'd': {'role': {'version': 1733089203807, 'unicode_emoji': None, 'position': 69, 'permissions': '0', 'name': 'Quarantine', 'mentionable': False, 'managed': False, 'id': '1293087512855838722', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 11765828}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,216 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,216 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 91, 'op': 0, 'd': {'role': {'version': 1733089203812, 'unicode_emoji': None, 'tags': {'bot_id': '651095740390834176'}, 'position': 70, 'permissions': '8', 'name': 'Security', 'mentionable': False, 'managed': True, 'id': '1293081148724875329', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,216 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,217 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 92, 'op': 0, 'd': {'role': {'version': 1733089203815, 'unicode_emoji': None, 'tags': {'bot_id': '536991182035746816'}, 'position': 71, 'permissions': '8', 'name': 'Wick', 'mentionable': False, 'managed': True, 'id': '1293081011550162979', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,217 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,217 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 93, 'op': 0, 'd': {'role': {'version': 1733089203817, 'unicode_emoji': None, 'tags': {'bot_id': '1304755116255088670'}, 'position': 72, 'permissions': '18701295479039', 'name': 'IndieGO', 'mentionable': False, 'managed': True, 'id': '1308517312667844702', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,217 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,218 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 94, 'op': 0, 'd': {'role': {'version': 1733089203824, 'unicode_emoji': None, 'position': 73, 'permissions': '0', 'name': 'new role', 'mentionable': False, 'managed': False, 'id': '1312895927908040785', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,218 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,218 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,221 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,221 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,616 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 96, 'op': 0, 'd': {'role': {'version': 1733089204317, 'unicode_emoji': None, 'position': 73, 'permissions': '0', 'name': 'Indie Bots', 'mentionable': False, 'managed': False, 'id': '1312895927908040785', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 15844367}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,616 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,617 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:03,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 97, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1312895927908040785', 'id': '1312896023038787706', 'changes': [{'old_value': 'new role', 'new_value': 'Indie Bots', 'key': 'name'}, {'old_value': 0, 'new_value': 15844367, 'key': 'color'}], 'action_type': 31, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:03,647 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:03,647 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-02 03:10:09,241 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 98, 'op': 0, 'd': {'role': {'version': 1733089209941, 'unicode_emoji': None, 'position': 73, 'permissions': '0', 'name': 'Indie Bots', 'mentionable': True, 'managed': False, 'id': '1312895927908040785', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 15844367}, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:09,242 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:09,242 - discord.client - DEBUG - Dispatching event guild_role_update -2024-12-02 03:10:09,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 99, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1312895927908040785', 'id': '1312896046627819573', 'changes': [{'old_value': False, 'new_value': True, 'key': 'hoist'}, {'old_value': False, 'new_value': True, 'key': 'mentionable'}], 'action_type': 31, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:09,279 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:09,282 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-02 03:10:17,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 100, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'unusual_dm_activity_until': None, 'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-02 03:10:17,586 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:17,586 - discord.client - DEBUG - Dispatching event member_update -2024-12-02 03:10:17,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 101, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1304755116255088670', 'id': '1312896081394274437', 'changes': [{'new_value': [{'name': 'Indie Bots', 'id': '1312895927908040785'}], 'key': '$add'}], 'action_type': 25, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:17,587 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:17,587 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-02 03:10:21,114 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 101. -2024-12-02 03:10:21,427 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:10:34,459 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 102, 'op': 0, 'd': {'user': {'username': 'Harmonia', 'public_flags': 65536, 'primary_guild': None, 'id': '1312017085131391098', 'global_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'unusual_dm_activity_until': None, 'roles': ['1312895927908040785', '1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'joined_at': '2024-11-29T11:59:22.189000+00:00', 'guild_id': '1292805470117171231', 'flags': 1, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-02 03:10:34,460 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:34,460 - discord.client - DEBUG - Dispatching event member_update -2024-12-02 03:10:34,471 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 103, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1312017085131391098', 'id': '1312896152273686621', 'changes': [{'new_value': [{'name': 'Indie Bots', 'id': '1312895927908040785'}], 'key': '$add'}], 'action_type': 25, 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:34,471 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:34,471 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-02 03:10:42,129 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 104, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089242, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:42,129 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:42,130 - discord.client - DEBUG - Dispatching event typing -2024-12-02 03:10:42,130 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 03:10:42,965 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 105, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:43.663000+00:00', 'pinned': False, 'nonce': '1312896183038902272', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896188051361792', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.codechallenge', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:42,966 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:42,966 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:10:42,967 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:10:43,440 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 106, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:44.141000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896190056108203', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that sorts a list of numbers.', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:43,441 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:43,441 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:10:43,454 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":3447003,"type":"rich","description":"Your coding challenge is: Write a function that sorts a list of numbers.","title":"Coding Challenge"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:10:43,455 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). -2024-12-02 03:10:43,455 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that sorts a list of numbers.', 'color': 3447003, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:40:44.141000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896190056108203', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:10:43,456 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:10:52,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 107, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:53.231000+00:00', 'pinned': False, 'nonce': '1312896223706873856', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896228182196326', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.codechallenge', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:52,613 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:52,613 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:10:52,614 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:10:53,108 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 108, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:53.741000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896230321422378', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that checks if a number is prime.', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:53,108 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:53,109 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:10:53,134 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":3447003,"type":"rich","description":"Your coding challenge is: Write a function that checks if a number is prime.","title":"Coding Challenge"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:10:53,135 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that checks if a number is prime.', 'color': 3447003, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:40:53.741000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896230321422378', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:10:53,135 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:10:54,753 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 109, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:55.458000+00:00', 'pinned': False, 'nonce': '1312896232644935680', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896237522911283', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.codechallenge', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:54,754 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:54,754 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:10:54,755 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:10:56,430 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":3447003,"type":"rich","description":"Your coding challenge is: Write a function that checks if a string is a palindrome.Write a program that prints numbers from 1 to 100, but for multiples of 3, print Fizz, for multiples of 5, print Buzz, and for multiples of both, print FizzBuzz.Create a function that checks if a given string is a palindrome (reads the same backward as forward)Write a function that takes a string and returns it reversed without using built-in reverse functions.Build a function that calculates the factorial of a given number.Given an array of numbers 1 to N with one number missing, find the missing number in O(n) time.Check if a given string has all unique characters.Write a function to count the number of vowels and consonants in a string.Write a function that calculates the sum of the digits of a given number.Build a function that checks if two strings are anagrams of each other.Rotate a given N x N matrix by 90 degrees in place.Given a string, find the length of the longest substring without repeating characters.Check if a string has balanced brackets (e.g., {}, [], () are properly closed and nested).Write a program to generate all prime numbers up to a given number N.Implement a binary search algorithm to find an element in a sorted array.Implement popular sorting algorithms like Bubble Sort, Merge Sort, and Quick Sort from scratch.Implement a calculator that can handle operations like addition, subtraction, multiplication, and division. Extend it to support parentheses.Write a program to solve a given Sudoku puzzle using backtracking.Generate all permutations of a given string or list.Implement a Least Recently Used (LRU) cache with O(1) time complexity for get and put operations.Given a 2D board and a word, find if the word exists in the grid by moving horizontally, vertically, or diagonally.Implement a Trie data structure to efficiently store and retrieve strings, and add functions like insertion, search, and auto-complete suggestions.Implement Dijkstra\u2019s or A* algorithm to find the shortest path between two nodes in a weighted graph.Solve the 0/1 Knapsack problem using dynamic programming to maximize the value of items that can fit into a given capacity.Build a rate limiter to handle API requests, ensuring only a certain number of requests are processed in a given time window.Given a list of words and a width, format the text so that it\u2019s fully justified, with words evenly distributed across lines.Place N queens on an N\u00d7N chessboard so that no two queens threaten each other.Given a 2D binary matrix filled with 0s and 1s, find the largest rectangle containing only 1s and return its area.Implement a function to perform a binary search on a rotated sorted array.Write a function to find the longest common prefix string amongst an array of strings.Given a list of intervals, merge overlapping intervals.Implement a function to convert a Roman numeral to an integer.Given a list of words, group anagrams together.Implement a function to reverse a linked list.Write a function to find the kth largest element in an unsorted array.Implement a function to find the longest palindromic substring in a string.Given a list of non-negative integers, arrange them such that they form the largest number.Implement a function to find the longest increasing subsequence in an array.Write a function to find the minimum window in a string that contains all characters of another string.Given a string, find the length of the longest substring with at most two distinct characters.Implement a function to find the median of two sorted arrays.Write a function to find the longest common subsequence between two strings.Given a string, find the longest palindromic substring.Implement a function to find the longest substring without repeating characters.Write a function to find the longest increasing subsequence in an array.Given a list of intervals, merge overlapping intervals.Implement a function to convert a Roman numeral to an integer.Write a function to find the kth largest element in an unsorted array.Implement a function to reverse a linked list.Given a list of words, group anagrams together.Implement a function to perform a binary search on a rotated sorted array.Write a function to find the longest common prefix string amongst an array of strings.Given a 2D binary matrix filled with 0s and 1s, find the largest rectangle containing only 1s and return its area.Create a virtual file system that supports commands like mkdir, ls, touch, read, and write, with hierarchical structures and efficient navigation.Implement a thread-safe producer-consumer system using a bounded buffer. Handle edge cases like underflow, overflow, and multithreading.Build a simple chat application using sockets to send and receive messages between clients and a server.Create a RESTful API for a simple todo list application with endpoints for creating, updating, deleting, and fetching tasks.Implement a basic web server that can handle HTTP requests like GET, POST, PUT, and DELETE, and serve static files.Write a program to find the shortest path between cities using graph traversal algorithms like Dijkstra\u2019s or A*.Implement a function to calculate the edit distance between two strings, measuring the minimum number of operations required to convert one string into another.Given a list of words, find the longest word made of other words in the list.Build a function to calculate the maximum sum of a subarray within a given array of integers.Implement a function to find the longest word in a dictionary that can be built one character at a time by other words in the dictionary.Write a program to find the longest increasing subsequence in an array of integers.Given a list of integers, write a function to return the maximum sum of non-adjacent numbers.Implement a function to find the maximum product of two integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.Given a list of integers, write a function to return the maximum sum of a contiguous subarray.Implement a function to find the maximum sum of a subarray with at least k elements.Write a program to find the longest common subsequence between two strings.Given a list of integers, write a function to return the maximum sum of a subarray with at least k elements.Implement a function to find the maximum product of three integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.Given a list of integers, write a function to return the maximum sum of a contiguous subarray.Implement a function to find the maximum sum of a subarray with at least k elements.Write a program to find the longest common subsequence between two strings.Given a list of integers, write a function to return the maximum sum of a subarray with at least k elements.Implement a function to find the maximum product of three integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.Given a list of integers, write a function to return the maximum sum of a contiguous subarray.Implement a function to find the maximum sum of a subarray with at least k elements.Write a program to find the longest common subsequence between two strings.Given a list of integers, write a function to return the maximum sum of a subarray with at least k elements.Implement a function to find the maximum product of three integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.Given a list of integers, write a function to return the maximum sum of a contiguous subarray.Implement a function to find the maximum sum of a subarray with at least k elements.Write a program to find the longest common subsequence between two strings.Given a list of integers, write a function to return the maximum sum of a subarray with at least k elements.Implement a function to find the maximum product of three integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.Given a list of integers, write a function to return the maximum sum of a contiguous subarray.Implement a function to find the maximum sum of a subarray with at least k elements.Write a program to find the longest common subsequence between two strings.Given a list of integers, write a function to return the maximum sum of a subarray with at least k elements.Implement a function to find the maximum product of three integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.","title":"Coding Challenge"}],"content":null,"components":[],"tts":false} has returned 400 -2024-12-02 03:10:56,431 - discord.client - DEBUG - Dispatching event command_error -2024-12-02 03:10:56,898 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 110, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:57.600000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896246507114598', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'fields': [{'value': 'Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds: Embed size exceeds maximum size of 6000', 'name': 'Error Details', 'inline': True}], 'description': 'An unexpected error occurred. Please try again later.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:10:56,899 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:10:56,899 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:10:56,908 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"fields":[{"inline":true,"name":"Error Details","value":"Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds: Embed size exceeds maximum size of 6000"}],"color":15158332,"type":"rich","description":"An unexpected error occurred. Please try again later.","title":"An Error Occurred"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:10:56,908 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'description': 'An unexpected error occurred. Please try again later.', 'color': 15158332, 'fields': [{'name': 'Error Details', 'value': 'Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds: Embed size exceeds maximum size of 6000', 'inline': True}], 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:40:57.600000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896246507114598', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:11:01,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 111, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089262, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:01,499 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:01,499 - discord.client - DEBUG - Dispatching event typing -2024-12-02 03:11:01,500 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 03:11:01,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 112, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:02.340000+00:00', 'pinned': False, 'nonce': '1312896261589827584', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896266388373584', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.codechallenge', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:01,640 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:01,640 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:01,640 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:11:02,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 113, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:02.755000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896268128747552', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that finds the factorial of a number.', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:02,112 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:02,113 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:02,157 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":3447003,"type":"rich","description":"Your coding challenge is: Write a function that finds the factorial of a number.","title":"Coding Challenge"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:11:02,157 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that finds the factorial of a number.', 'color': 3447003, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:02.755000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896268128747552', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:11:02,158 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:11:02,380 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 113. -2024-12-02 03:11:02,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:11:35,383 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 114, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:36.070000+00:00', 'pinned': False, 'nonce': '1312896402765905920', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896407861989458', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:35,384 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:35,385 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:35,386 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:11:35,895 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 115, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:36.586000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896410026508318', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "How many programmers does it take to change a light bulb? None, that's a hardware problem.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:35,896 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:35,896 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:35,911 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"How many programmers does it take to change a light bulb? None, that's a hardware problem.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:11:35,911 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "How many programmers does it take to change a light bulb? None, that's a hardware problem.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:36.586000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896410026508318', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:11:35,911 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:11:38,689 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 116, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:39.383000+00:00', 'pinned': False, 'nonce': '1312896416841990144', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896421757714514', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:38,690 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:38,690 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:38,691 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:11:39,099 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do programmers hate nature? It has too many bugs.Why do programmers last so long in bed? Because they keep optimizing their loops.My girlfriend called me a function with no returns. I told her, I'm just waiting for the right input to blow up your stack.Why was the database administrator bad at flirting? They couldn't handle relationships unless they were one-to-many.Why do programmers prefer one-night stands?No need to commit to the repository.I tried debugging my girlfriend\u2026 Turns out, the issue was in the hardware configuration. \ud83d\ude0fHow do programmers practice safe sex? They use a try-catch block for protection.My ex told me, You're too into your work! I told her, I'm not into you because your interface sucks.A designer, a coder, and a tester walk into a bar... The coder ends up alone because they were too busy handling exceptions.Why was the programmer\u2019s date upset? They seg-faulted and dumped core halfway through.What\u2019s the dirtiest thing a programmer can whisper in bed? I\u2019ll show you my hidden attribute. \ud83d\ude08Why do programmers like older partners? They come with a well-documented API.My partner left me because I was too much of a nerd. Jokes on them\u2014I\u2019ve got 5G, unlimited data, and a vibrator script.What\u2019s a programmer\u2019s favorite foreplay? Penetration testing.Why don\u2019t programmers get jealous? Because they know how to handle multiple threads.My crush called me a console log... I said, Why? Because I\u2019m always showing my output?What do you call it when a programmer is bad in bed? Hard-coded disappointment. \ud83d\ude0fMy girlfriend asked why I spend so much time coding. I told her, \u201cBecause I\u2019ve already hacked into your source control.Why did the programmer break up with their partner? They couldn\u2019t handle their spaghetti logic.What\u2019s the most awkward thing a programmer says during sex? Wait, let me merge conflicts.Why was the programmer\u2019s partner mad? They were tired of being in the back-end all the time. \ud83d\ude02My crush called me a console log... I said, Why? Because I\u2019m always showing my output?Why don\u2019t programmers do it in the dark? Because they keep looking for a light mode to turn them on.My ex said I was too much into programming. I told her, \u201cWell, at least I know how to push the right buttons.Why do coders love foreplay? Because they hate going straight to production without testing.I told her I\u2019d give her the best experience. She said, Prove it! So, I ran intensity++.Why did the programmer bring a condom to the meeting? Just in case they had to protect their package.I told my partner I was debugging\u2026 Turns out, I was just trying to find the missing climax.Why are programmers so good in bed? They\u2019re all about deep penetration testing.My girlfriend asked me why I take so long to finish. I said, Baby, I\u2019m just loading the assets.What\u2019s a coder\u2019s version of dirty talk? Let me get inside your private variables.Why do programmers date models? Because they love playing with big data.I told her I\u2019d take her to cloud nine. Turns out, she couldn\u2019t handle my high availability.She said, Talk dirty to me! So, I whispered, \u201cI\u2019ll optimize your back-end until you can\u2019t handle the throughput.Why was the programmer\u2019s date annoyed? Because they kept asking, Are you responsive yet?My ex said I didn\u2019t satisfy her. I said, It\u2019s not me\u2014it\u2019s your poor user experience.Why do coders never break up? Because they always find a way to resolve conflicts.My crush told me she likes guys who write clean code... So, I wiped my browser history and said, \u201cYou mean like this?\u201dWhy do programmers make bad flings? Because they\u2019re too busy debugging their ex\u2019s trauma.She said, \u201cTalk dirty to me.\u201d I replied, \u201cYour alignment is off, your flow\u2019s broken, and your backend\u2019s outdated.\u201dI tried flirting with a designer. She ghosted me, saying, \u201cYou lack responsiveness.\u201dMy girlfriend broke up with me because I said, \u201cYou\u2019re like JavaScript.\u201dShe asked why, and I said, \u201cEveryone uses you, but no one fully understands you.\u201dI told her I\u2019d make her scream like my code editor does when I forget a semicolon. Now she calls me syntax daddy.She asked me what I\u2019m good at in bed. I said, \u201cCtrl + Z. Undoing all my mistakes.\u201dWhy don\u2019t programmers date often? Because they get stuck in an infinite loop of \u201cWhat did I do wrong?\u201dMy crush asked me to teach her coding... Now she just complains, \u201cStop trying to insert yourself everywhere!\u201dWhy do programmers love WiFi? Because it\u2019s the only thing they\u2019ve ever connected to.I told her, \u201cI\u2019ll optimize your backend tonight.\u201d She said, \u201cYou better. Last night it crashed halfway through.\u201dWhy do programmers suck at breakups? They keep saying, \u201cLet\u2019s try one more iteration.\u201dMy ex said I\u2019m like an old iPhone. \u201cYou\u2019re slow, outdated, and your battery doesn\u2019t last long.\u201dI asked her why she likes me. She said, \u201cYou\u2019re like open-source software\u2014free, but I still feel like I\u2019m paying for it.\u201dWhy was the coder so bad at sexting? They kept writing in CamelCase.I told her I\u2019m good with tech... She said, \u201cOkay, but can you handle my settings?\u201dWhy don\u2019t programmers do casual dating? They hate working on temporary projects.My partner said, \u201cI don\u2019t think you\u2019re putting in enough effort.\u201d So, I upgraded my RAM and said, \u201cTry me now.\u201dI dated a programmer once. Worst mistake of my life\u2014they tried to compress all my emotions into a zip file.Why do programmers last longer in relationships? Because they\u2019re too scared to delete their cache.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 400 -2024-12-02 03:11:39,100 - discord.client - DEBUG - Dispatching event command_error -2024-12-02 03:11:39,568 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 117, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:40.150000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896424974749767', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'fields': [{'value': 'Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds.0.description: Must be 4096 or fewer in length.', 'name': 'Error Details', 'inline': True}], 'description': 'An unexpected error occurred. Please try again later.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:39,569 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:39,570 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:39,600 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"fields":[{"inline":true,"name":"Error Details","value":"Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds.0.description: Must be 4096 or fewer in length."}],"color":15158332,"type":"rich","description":"An unexpected error occurred. Please try again later.","title":"An Error Occurred"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:11:39,600 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'description': 'An unexpected error occurred. Please try again later.', 'color': 15158332, 'fields': [{'name': 'Error Details', 'value': 'Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds.0.description: Must be 4096 or fewer in length.', 'inline': True}], 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:40.150000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896424974749767', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:11:42,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 118, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:42.764000+00:00', 'pinned': False, 'nonce': '1312896430821605376', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896435938922549', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:42,084 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:42,084 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:42,085 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:11:42,478 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 119, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:43.110000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896437389889567', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers prefer dark mode? Because light attracts bugs!', 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:42,479 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:42,480 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:42,514 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do programmers prefer dark mode? Because light attracts bugs!","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:11:42,514 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers prefer dark mode? Because light attracts bugs!', 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:43.110000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896437389889567', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:11:42,515 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:11:43,642 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 119. -2024-12-02 03:11:43,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:11:44,844 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 120, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:45.549000+00:00', 'pinned': False, 'nonce': '1312896442897006592', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896447620055050', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:44,844 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:44,846 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:44,846 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:11:45,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 121, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:45.978000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896449419153438', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Java developers wear glasses? Because they don't see sharp.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:45,276 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:45,276 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:45,301 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do Java developers wear glasses? Because they don't see sharp.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:11:45,301 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Java developers wear glasses? Because they don't see sharp.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:45.978000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896449419153438', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:11:45,302 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:11:47,236 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 122, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:47.938000+00:00', 'pinned': False, 'nonce': '1312896452728455168', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896457640120360', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.quote', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:47,237 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:47,238 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:47,239 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:11:47,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 123, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:48.357000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896459397533776', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'Code is like humor. When you have to explain it, its bad. Cory House', 'content_scan_version': 0, 'color': 10181046}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:47,665 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:47,665 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:47,677 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":10181046,"type":"rich","description":"Code is like humor. When you have to explain it, it\u2019s bad. \u2013 Cory House","title":"Inspirational Quote"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:11:47,678 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'Code is like humor. When you have to explain it, its bad. Cory House', 'color': 10181046, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:48.357000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896459397533776', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:11:47,678 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:11:52,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 124, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089312, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:52,090 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:52,090 - discord.client - DEBUG - Dispatching event typing -2024-12-02 03:11:52,090 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 03:11:55,047 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 125, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:55.645000+00:00', 'pinned': False, 'nonce': '1312896485368528896', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896489965617216', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:55,048 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:55,049 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:55,049 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:11:55,676 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 126, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:56.353000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896492935057469', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:11:55,677 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:11:55,677 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:11:55,710 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 -2024-12-02 03:11:55,711 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:41:56.353000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896492935057469', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:11:55,711 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:12:02,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 127, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089323, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-02 03:12:02,538 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:12:02,539 - discord.client - DEBUG - Dispatching event typing -2024-12-02 03:12:02,539 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 03:12:03,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 128, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:42:03.755000+00:00', 'pinned': False, 'nonce': '1312896519057178624', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896523981426811', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.trivia', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:12:03,056 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:12:03,057 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:12:03,057 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:12:03,490 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 129, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:42:04.198000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896525839499284', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "What is the use of the 'return' keyword in programming?", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:12:03,491 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:12:03,491 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:12:03,522 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"What is the use of the 'return' keyword in programming?","components":[],"tts":false} has returned 200 -2024-12-02 03:12:03,522 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "What is the use of the 'return' keyword in programming?", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:42:04.198000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896525839499284', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:12:19,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 130, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:42:19.799000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896591274840257', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Timeout', 'description': 'Sorry, you took too long. The correct answer was To return a value from a function.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:12:19,183 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:12:19,184 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:12:19,303 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"Sorry, you took too long. The correct answer was To return a value from a function.","title":"Timeout"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:12:19,304 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Timeout', 'description': 'Sorry, you took too long. The correct answer was To return a value from a function.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:42:19.799000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896591274840257', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:12:19,304 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:12:19,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INVITE_CREATE', 's': 131, 'op': 0, 'd': {'uses': 0, 'type': 0, 'temporary': False, 'max_uses': 0, 'max_age': 86400, 'guild_id': '1292805470117171231', 'expires_at': '2024-12-02T21:42:20+00:00', 'created_at': '2024-12-01T21:42:20.542602+00:00', 'code': 'ujtxvSmT', 'channel_id': '1292805471501029399'}} -2024-12-02 03:12:19,856 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:12:19,856 - discord.client - DEBUG - Dispatching event invite_create -2024-12-02 03:12:24,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 131. -2024-12-02 03:12:25,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:13:06,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 131. -2024-12-02 03:13:06,480 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:13:47,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 131. -2024-12-02 03:13:47,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:14:28,683 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 131. -2024-12-02 03:14:28,996 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:14:47,623 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 132, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:44:48.336000+00:00', 'pinned': False, 'nonce': '1312897209091489792', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897214284169246', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.scan', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:14:47,624 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:14:47,625 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:14:47,625 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:14:48,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 133, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:44:48.789000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897216184062034', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Please attach an image to scan.', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:14:48,149 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:14:48,150 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:14:48,158 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Please attach an image to scan.","components":[],"tts":false} has returned 200 -2024-12-02 03:14:48,158 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Please attach an image to scan.', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:44:48.789000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897216184062034', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:14:48,159 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:15:09,938 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 133. -2024-12-02 03:15:10,263 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:15:10,286 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 134, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089511, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-02 03:15:10,286 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:15:10,287 - discord.client - DEBUG - Dispatching event typing -2024-12-02 03:15:10,287 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 03:15:11,848 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 135, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:45:12.471000+00:00', 'pinned': False, 'nonce': '1312897309373104128', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897315513700382', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.scan', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [{'width': 480, 'url': 'https://cdn.discordapp.com/attachments/1292805471643766929/1312897315056386088/image0_1.gif?ex=674e2a68&is=674cd8e8&hm=995a1cd1d4805387f2d71841785619fd9db35cf749ecbcfa433ddd317668bd94&', 'title': 'image0 (1)', 'size': 220153, 'proxy_url': 'https://media.discordapp.net/attachments/1292805471643766929/1312897315056386088/image0_1.gif?ex=674e2a68&is=674cd8e8&hm=995a1cd1d4805387f2d71841785619fd9db35cf749ecbcfa433ddd317668bd94&', 'placeholder_version': 1, 'placeholder': 'TGcJFww3V2dHuJiAd3eIN8i4iIz7yLgP', 'id': '1312897315056386088', 'height': 480, 'flags': 32, 'filename': 'image0_1.gif', 'content_type': 'image/gif', 'content_scan_version': 1}], 'guild_id': '1292805470117171231'}} -2024-12-02 03:15:11,848 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:15:11,849 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:15:11,849 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:15:14,069 - pytesseract - DEBUG - ['tesseract', 'C:\\Users\\mante\\AppData\\Local\\Temp\\tess_yga80e4v_input.GIF', 'C:\\Users\\mante\\AppData\\Local\\Temp\\tess_yga80e4v', 'txt'] -2024-12-02 03:15:14,149 - discord.client - DEBUG - Dispatching event command_error -2024-12-02 03:15:14,622 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 136, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:45:15.244000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897327144370208', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'fields': [{'value': "Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information.", 'name': 'Error Details', 'inline': True}], 'description': 'An unexpected error occurred. Please try again later.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:15:14,623 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:15:14,623 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:15:14,651 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"fields":[{"inline":true,"name":"Error Details","value":"Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information."}],"color":15158332,"type":"rich","description":"An unexpected error occurred. Please try again later.","title":"An Error Occurred"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:15:14,651 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'description': 'An unexpected error occurred. Please try again later.', 'color': 15158332, 'fields': [{'name': 'Error Details', 'value': "Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information.", 'inline': True}], 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:45:15.244000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897327144370208', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:15:45,711 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 137, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089546, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-02 03:15:45,711 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:15:45,712 - discord.client - DEBUG - Dispatching event typing -2024-12-02 03:15:45,712 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 03:15:48,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 138, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:45:48.783000+00:00', 'pinned': False, 'nonce': '1312897455490072576', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897467817263186', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.scan', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [{'width': 431, 'url': 'https://cdn.discordapp.com/attachments/1292805471643766929/1312897467695763516/Capture.png?ex=674e2a8c&is=674cd90c&hm=dc1d0496334f820ef1a454a8cf3ee9fb4b4c003bbc68ad93798c777d3dee6400&', 'size': 38220, 'proxy_url': 'https://media.discordapp.net/attachments/1292805471643766929/1312897467695763516/Capture.png?ex=674e2a8c&is=674cd90c&hm=dc1d0496334f820ef1a454a8cf3ee9fb4b4c003bbc68ad93798c777d3dee6400&', 'placeholder_version': 1, 'placeholder': 'uPcJFYQHV2WJeIeJeIeHeF9o+YaH', 'id': '1312897467695763516', 'height': 307, 'filename': 'Capture.png', 'content_type': 'image/png', 'content_scan_version': 1}], 'guild_id': '1292805470117171231'}} -2024-12-02 03:15:48,193 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:15:48,193 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:15:48,193 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:15:48,683 - PIL.PngImagePlugin - DEBUG - STREAM b'IHDR' 16 13 -2024-12-02 03:15:48,684 - PIL.PngImagePlugin - DEBUG - STREAM b'sRGB' 41 1 -2024-12-02 03:15:48,684 - PIL.PngImagePlugin - DEBUG - STREAM b'gAMA' 54 4 -2024-12-02 03:15:48,684 - PIL.PngImagePlugin - DEBUG - STREAM b'pHYs' 70 9 -2024-12-02 03:15:48,684 - PIL.PngImagePlugin - DEBUG - STREAM b'IDAT' 91 38087 -2024-12-02 03:15:48,686 - PIL.PngImagePlugin - DEBUG - STREAM b'eXIf' 38190 14 -2024-12-02 03:15:48,695 - pytesseract - DEBUG - ['tesseract', 'C:\\Users\\mante\\AppData\\Local\\Temp\\tess_bo6rsj44_input.PNG', 'C:\\Users\\mante\\AppData\\Local\\Temp\\tess_bo6rsj44', 'txt'] -2024-12-02 03:15:48,704 - discord.client - DEBUG - Dispatching event command_error -2024-12-02 03:15:49,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 139, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:45:49.909000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897472539918387', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'fields': [{'value': "Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information.", 'name': 'Error Details', 'inline': True}], 'description': 'An unexpected error occurred. Please try again later.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:15:49,200 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:15:49,200 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:15:49,203 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"fields":[{"inline":true,"name":"Error Details","value":"Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information."}],"color":15158332,"type":"rich","description":"An unexpected error occurred. Please try again later.","title":"An Error Occurred"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:15:49,204 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'description': 'An unexpected error occurred. Please try again later.', 'color': 15158332, 'fields': [{'name': 'Error Details', 'value': "Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information.", 'inline': True}], 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:45:49.909000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897472539918387', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:15:51,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 139. -2024-12-02 03:15:51,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:15:59,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 140, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089560, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-02 03:15:59,909 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:15:59,909 - discord.client - DEBUG - Dispatching event typing -2024-12-02 03:15:59,909 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 03:16:00,893 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 141, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:01.514000+00:00', 'pinned': False, 'nonce': '1312897516542361600', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897521214816319', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.setup_logs', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:00,894 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:00,895 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:16:00,895 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:16:01,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 142, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:01.985000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897523190464645', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "Failed to create or get channel general-logs: 'Tickets' object has no attribute 'log_channels'", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:01,328 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:01,328 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:16:01,340 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Failed to create or get channel general-logs: 'Tickets' object has no attribute 'log_channels'","components":[],"tts":false} has returned 200 -2024-12-02 03:16:01,341 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "Failed to create or get channel general-logs: 'Tickets' object has no attribute 'log_channels'", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:46:01.985000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897523190464645', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:16:01,341 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:16:10,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 143, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:11.065000+00:00', 'pinned': False, 'nonce': '1312897556304363520', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897561274744875', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ticket', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:10,384 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:10,385 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:16:10,385 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:16:10,910 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 144, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:11.504000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897563116175402', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Please provide a reason for creating a ticket!', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:10,911 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:10,912 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:16:10,977 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Please provide a reason for creating a ticket!","components":[],"tts":false} has returned 200 -2024-12-02 03:16:10,977 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Please provide a reason for creating a ticket!', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:46:11.504000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897563116175402', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:16:10,978 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:16:14,942 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 145, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089575, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:14,943 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:14,943 - discord.client - DEBUG - Dispatching event typing -2024-12-02 03:16:14,943 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 03:16:15,638 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 146, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:16.287000+00:00', 'pinned': False, 'nonce': '1312897578500620288', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897583177535489', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ticket heyo', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:15,640 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:15,640 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:16:15,640 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:16:16,152 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 147, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:16.862000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897585589129266', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Ticket category not configured!', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:16,152 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:16,153 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:16:16,159 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Ticket category not configured!","components":[],"tts":false} has returned 200 -2024-12-02 03:16:16,159 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Ticket category not configured!', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:46:16.862000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897585589129266', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:16:16,160 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:16:26,768 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 148, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:27.457000+00:00', 'pinned': False, 'nonce': '1312897625040617472', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897630027776000', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joim', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:26,769 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:26,769 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:16:26,769 - discord.client - DEBUG - Dispatching event command_error -2024-12-02 03:16:27,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 149, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:27.964000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897632154423367', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:27,304 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:27,304 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:16:27,340 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"The command you tried to use does not exist. Please check the command and try again.","title":"Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:16:27,340 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:46:27.964000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897632154423367', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:16:30,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 150, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:31.102000+00:00', 'pinned': False, 'nonce': '1312897640228192256', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897645315887204', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.join', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:30,393 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:30,393 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:16:30,394 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:16:30,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 151, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:31.630000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897647530479677', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'You are not connected to a voice channel.', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:30,946 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:30,947 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:16:30,965 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"You are not connected to a voice channel.","components":[],"tts":false} has returned 200 -2024-12-02 03:16:30,965 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'You are not connected to a voice channel.', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:46:31.630000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897647530479677', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:16:30,965 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:16:32,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 151. -2024-12-02 03:16:32,762 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:16:33,759 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 152, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '333974e757095cb87cd716d794a0d438', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'discoverable': True, 'deaf': False, 'channel_id': '1292805471933304848'}} -2024-12-02 03:16:33,760 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:33,761 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 03:16:35,827 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:35,828 - discord.client - DEBUG - Dispatching event guild_update -2024-12-02 03:16:37,580 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 154, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:38.292000+00:00', 'pinned': False, 'nonce': '1312897670355877888', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897675473063977', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.join', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:37,581 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:37,581 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:16:37,581 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:16:37,582 - discord.voice_state - INFO - Connecting to voice... -2024-12-02 03:16:37,582 - discord.voice_state - INFO - Starting voice handshake... (connection attempt 1) -2024-12-02 03:16:37,583 - discord.gateway - DEBUG - Updating our voice state to {'op': 4, 'd': {'guild_id': 1292805470117171231, 'channel_id': 1292805471933304848, 'self_mute': False, 'self_deaf': False}}. -2024-12-02 03:16:37,584 - discord.voice_state - DEBUG - Connection state changed to set_guild_voice_state -2024-12-02 03:16:37,921 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 155, 'op': 0, 'd': {'member': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1304755116255088670', 'suppress': False, 'session_id': 'fa2277b53513e5fe00deb778c28808aa', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'deaf': False, 'channel_id': '1292805471933304848'}} -2024-12-02 03:16:37,922 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:37,922 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 03:16:37,923 - discord.voice_state - DEBUG - Connection state changed to got_voice_state_update -2024-12-02 03:16:38,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_SERVER_UPDATE', 's': 156, 'op': 0, 'd': {'token': '42f715c5e7a37c1d', 'guild_id': '1292805470117171231', 'endpoint': 'india10019.discord.media:443'}} -2024-12-02 03:16:38,111 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:38,112 - discord.voice_state - DEBUG - Connection state changed to got_both_voice_updates -2024-12-02 03:16:38,112 - discord.voice_state - INFO - Voice handshake complete. Endpoint found: india10019.discord.media -2024-12-02 03:16:38,261 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 0, 'd': {'server_id': '1292805470117171231', 'user_id': '1304755116255088670', 'session_id': 'fa2277b53513e5fe00deb778c28808aa', 'token': '42f715c5e7a37c1d'}}. -2024-12-02 03:16:38,263 - discord.voice_state - DEBUG - Connection state changed to websocket_connected -2024-12-02 03:16:38,263 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 8, 'd': {'v': 4, 'heartbeat_interval': 13750.0}} -2024-12-02 03:16:38,298 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 2, 'd': {'streams': [{'type': 'video', 'ssrc': 697222, 'rtx_ssrc': 697223, 'rid': '', 'quality': 0, 'active': False}], 'ssrc': 697221, 'port': 50008, 'modes': ['aead_aes256_gcm_rtpsize', 'aead_aes256_gcm', 'aead_xchacha20_poly1305_rtpsize', 'xsalsa20_poly1305_lite_rtpsize', 'xsalsa20_poly1305_lite', 'xsalsa20_poly1305_suffix', 'xsalsa20_poly1305'], 'ip': '35.207.209.118', 'experiments': ['fixed_keyframe_interval']}} -2024-12-02 03:16:38,298 - discord.gateway - DEBUG - Connecting to voice socket -2024-12-02 03:16:38,298 - discord.gateway - DEBUG - Sending ip discovery packet -2024-12-02 03:16:38,300 - discord.voice_state - DEBUG - Registering socket listener callback .get_ip_packet at 0x000001977B2274C0> -2024-12-02 03:16:38,333 - discord.voice_state - DEBUG - Unregistering socket listener callback .get_ip_packet at 0x000001977B2274C0> -2024-12-02 03:16:38,333 - discord.gateway - DEBUG - Received ip discovery packet: b'\x00\x02\x00F\x00\n\xa3\x8549.43.96.179\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xdc\xf6' -2024-12-02 03:16:38,334 - discord.gateway - DEBUG - detected ip: 49.43.96.179 port: 56566 -2024-12-02 03:16:38,334 - discord.gateway - DEBUG - received supported encryption modes: xsalsa20_poly1305_lite, xsalsa20_poly1305_suffix, xsalsa20_poly1305 -2024-12-02 03:16:38,334 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 1, 'd': {'protocol': 'udp', 'data': {'address': '49.43.96.179', 'port': 56566, 'mode': 'xsalsa20_poly1305_lite'}}}. -2024-12-02 03:16:38,335 - discord.gateway - DEBUG - selected the voice protocol for use (xsalsa20_poly1305_lite) -2024-12-02 03:16:38,335 - discord.voice_state - DEBUG - Connection state changed to got_ip_discovery -2024-12-02 03:16:38,335 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 11, 'd': {'user_ids': ['950609706760691752']}} -2024-12-02 03:16:38,336 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 18, 'd': {'user_id': '950609706760691752', 'flags': 2}} -2024-12-02 03:16:38,336 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 20, 'd': {'user_id': '950609706760691752', 'platform': 0}} -2024-12-02 03:16:38,368 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 4, 'd': {'video_codec': 'H264', 'secure_frames_version': 0, 'secret_key': [160, 89, 234, 125, 245, 172, 29, 212, 111, 57, 58, 191, 247, 110, 119, 161, 17, 54, 169, 135, 216, 148, 239, 81, 127, 149, 182, 151, 215, 31, 178, 212], 'mode': 'xsalsa20_poly1305_lite', 'media_session_id': '72970db0ca690b4c65ef7849798f50a9', 'dave_protocol_version': 0, 'audio_codec': 'opus'}} -2024-12-02 03:16:38,369 - discord.gateway - DEBUG - received secret key for voice connection -2024-12-02 03:16:38,369 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 5, 'd': {'speaking': 0, 'delay': 0, 'ssrc': 697221}}. -2024-12-02 03:16:38,369 - discord.voice_state - DEBUG - Connection state changed to connected -2024-12-02 03:16:38,369 - discord.voice_state - INFO - Voice connection complete. -2024-12-02 03:16:38,371 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:16:38,805 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 5, 'd': {'user_id': '950609706760691752', 'ssrc': 697216, 'speaking': 1}} -2024-12-02 03:16:41,560 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 13, 'd': {'user_id': '950609706760691752'}} -2024-12-02 03:16:41,593 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 157, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '333974e757095cb87cd716d794a0d438', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-02 03:16:41,594 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:41,594 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 03:16:43,265 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089603265. -2024-12-02 03:16:43,266 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089603265}. -2024-12-02 03:16:43,303 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089603265} -2024-12-02 03:16:48,269 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089608269. -2024-12-02 03:16:48,270 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089608269}. -2024-12-02 03:16:48,316 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089608269} -2024-12-02 03:16:50,808 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 158, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '333974e757095cb87cd716d794a0d438', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'discoverable': True, 'deaf': False, 'channel_id': '1292805471933304848'}} -2024-12-02 03:16:50,808 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:50,809 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 03:16:51,323 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 11, 'd': {'user_ids': ['950609706760691752']}} -2024-12-02 03:16:51,323 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 18, 'd': {'user_id': '950609706760691752', 'flags': 2}} -2024-12-02 03:16:51,325 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 20, 'd': {'user_id': '950609706760691752', 'platform': 0}} -2024-12-02 03:16:52,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_EFFECT_SEND', 's': 159, 'op': 0, 'd': {'user_id': '950609706760691752', 'sound_volume': 1.0, 'sound_id': '1101662598484729896', 'emoji': None, 'channel_id': '1292805471933304848', 'animation_type': 0, 'animation_id': 0, 'guild_id': '1292805470117171231'}} -2024-12-02 03:16:52,211 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:16:52,211 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_EFFECT_SEND. -2024-12-02 03:16:53,283 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089613283. -2024-12-02 03:16:53,284 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089613283}. -2024-12-02 03:16:53,320 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089613283} -2024-12-02 03:16:54,747 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 5, 'd': {'user_id': '950609706760691752', 'ssrc': 697224, 'speaking': 1}} -2024-12-02 03:16:58,293 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089618293. -2024-12-02 03:16:58,294 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089618293}. -2024-12-02 03:16:58,329 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089618293} -2024-12-02 03:17:03,308 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089623308. -2024-12-02 03:17:03,309 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089623308}. -2024-12-02 03:17:03,346 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089623308} -2024-12-02 03:17:08,323 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089628323. -2024-12-02 03:17:08,324 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089628323}. -2024-12-02 03:17:08,359 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089628323} -2024-12-02 03:17:13,333 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089633333. -2024-12-02 03:17:13,334 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089633333}. -2024-12-02 03:17:13,367 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089633333} -2024-12-02 03:17:13,705 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 159. -2024-12-02 03:17:14,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:17:18,347 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089638347. -2024-12-02 03:17:18,352 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089638347}. -2024-12-02 03:17:18,394 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089638347} -2024-12-02 03:17:23,372 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089643372. -2024-12-02 03:17:23,373 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089643372}. -2024-12-02 03:17:23,410 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089643372} -2024-12-02 03:17:28,379 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089648379. -2024-12-02 03:17:28,379 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089648379}. -2024-12-02 03:17:28,414 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089648379} -2024-12-02 03:17:33,383 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089653383. -2024-12-02 03:17:33,383 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089653383}. -2024-12-02 03:17:33,420 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089653383} -2024-12-02 03:17:38,390 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089658390. -2024-12-02 03:17:38,391 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089658390}. -2024-12-02 03:17:38,425 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089658390} -2024-12-02 03:17:43,398 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089663398. -2024-12-02 03:17:43,398 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089663398}. -2024-12-02 03:17:43,431 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089663398} -2024-12-02 03:17:48,402 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089668402. -2024-12-02 03:17:48,404 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089668402}. -2024-12-02 03:17:48,437 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089668402} -2024-12-02 03:17:53,414 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089673414. -2024-12-02 03:17:53,415 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089673414}. -2024-12-02 03:17:53,455 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089673414} -2024-12-02 03:17:54,975 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 159. -2024-12-02 03:17:55,288 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:17:58,428 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089678428. -2024-12-02 03:17:58,429 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089678428}. -2024-12-02 03:17:58,475 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089678428} -2024-12-02 03:18:03,431 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089683431. -2024-12-02 03:18:03,432 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089683431}. -2024-12-02 03:18:03,466 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089683431} -2024-12-02 03:18:08,437 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089688437. -2024-12-02 03:18:08,439 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089688437}. -2024-12-02 03:18:08,478 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089688437} -2024-12-02 03:18:13,442 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089693442. -2024-12-02 03:18:13,443 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089693442}. -2024-12-02 03:18:13,484 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089693442} -2024-12-02 03:18:18,454 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089698454. -2024-12-02 03:18:18,454 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089698454}. -2024-12-02 03:18:18,488 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089698454} -2024-12-02 03:18:23,467 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089703467. -2024-12-02 03:18:23,467 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089703467}. -2024-12-02 03:18:23,503 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089703467} -2024-12-02 03:18:28,476 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089708476. -2024-12-02 03:18:28,477 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089708476}. -2024-12-02 03:18:28,512 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089708476} -2024-12-02 03:18:33,485 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089713485. -2024-12-02 03:18:33,486 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089713485}. -2024-12-02 03:18:33,520 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089713485} -2024-12-02 03:18:36,229 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 159. -2024-12-02 03:18:36,542 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:18:38,488 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089718488. -2024-12-02 03:18:38,490 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089718488}. -2024-12-02 03:18:38,524 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089718488} -2024-12-02 03:18:43,493 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089723493. -2024-12-02 03:18:43,494 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089723493}. -2024-12-02 03:18:43,530 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089723493} -2024-12-02 03:18:48,508 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089728508. -2024-12-02 03:18:48,510 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089728508}. -2024-12-02 03:18:48,547 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089728508} -2024-12-02 03:18:50,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 160, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089731, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-02 03:18:50,854 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:18:50,855 - discord.client - DEBUG - Dispatching event typing -2024-12-02 03:18:50,855 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 03:18:51,112 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 161, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:48:51.831000+00:00', 'pinned': False, 'nonce': '1312898230723280896', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898235576356895', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.play https://open.spotify.com/playlist/5xoF7BpGAvY7w5DjLCQBf5?si=26436ca027bc4069', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:18:51,112 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:18:51,113 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:18:51,113 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:18:51,114 - discord.player - DEBUG - Spawning ffmpeg process with command: ['ffmpeg', '-reconnect', '1', '-reconnect_streamed', '1', '-reconnect_delay_max', '5', '-i', 'https://open.spotify.com/playlist/5xoF7BpGAvY7w5DjLCQBf5?si=26436ca027bc4069', '-f', 's16le', '-ar', '48000', '-ac', '2', '-loglevel', 'warning', '-blocksize', '8192', '-vn', 'pipe:1'] -2024-12-02 03:18:51,128 - discord.client - DEBUG - Dispatching event command_error -2024-12-02 03:18:51,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 162, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:48:52.291000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898237505601546', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'fields': [{'value': 'Command raised an exception: ClientException: ffmpeg was not found.', 'name': 'Error Details', 'inline': True}], 'description': 'An unexpected error occurred. Please try again later.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:18:51,586 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:18:51,586 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:18:51,622 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"fields":[{"inline":true,"name":"Error Details","value":"Command raised an exception: ClientException: ffmpeg was not found."}],"color":15158332,"type":"rich","description":"An unexpected error occurred. Please try again later.","title":"An Error Occurred"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-02 03:18:51,624 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'description': 'An unexpected error occurred. Please try again later.', 'color': 15158332, 'fields': [{'name': 'Error Details', 'value': 'Command raised an exception: ClientException: ffmpeg was not found.', 'inline': True}], 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:48:52.291000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312898237505601546', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:18:53,518 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089733518. -2024-12-02 03:18:53,518 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089733518}. -2024-12-02 03:18:53,554 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089733518} -2024-12-02 03:18:58,525 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089738525. -2024-12-02 03:18:58,526 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089738525}. -2024-12-02 03:18:58,561 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089738525} -2024-12-02 03:19:03,529 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089743529. -2024-12-02 03:19:03,529 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089743529}. -2024-12-02 03:19:03,566 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089743529} -2024-12-02 03:19:04,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 163, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:49:04.627000+00:00', 'pinned': False, 'nonce': '1312898284607504384', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898289246539878', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.record', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:19:04,005 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:19:04,005 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:19:04,005 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:19:04,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 164, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:49:05.141000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898291402539159', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Recording started...', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:19:04,523 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:19:04,524 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:19:04,532 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Recording started...","components":[],"tts":false} has returned 200 -2024-12-02 03:19:04,533 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Recording started...', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:49:05.141000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312898291402539159', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:19:08,538 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089748538. -2024-12-02 03:19:08,538 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089748538}. -2024-12-02 03:19:08,573 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089748538} -2024-12-02 03:19:09,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 165, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:49:10.549000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898314085072907', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Recording stopped. Converting to text...', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:19:09,928 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:19:09,929 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:19:09,935 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Recording stopped. Converting to text...","components":[],"tts":false} has returned 200 -2024-12-02 03:19:09,935 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Recording stopped. Converting to text...', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:49:10.549000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312898314085072907', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:19:10,319 - discord.http - DEBUG - POST https://discord.com/api/v10/users/@me/channels with {"recipient_id":950609706760691752} has returned 200 -2024-12-02 03:19:10,319 - discord.http - DEBUG - POST /users/@me/channels has found its initial rate limit bucket hash (3f1ecb90c49938368145d0f8794b2707). -2024-12-02 03:19:10,320 - discord.http - DEBUG - POST https://discord.com/api/v10/users/@me/channels has received {'id': '1307917783308308480', 'type': 1, 'last_message_id': '1312484353338638376', 'flags': 0, 'recipients': [{'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': '20ce55985a10915cfafbbf910ab31959', 'accent_color': 0, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': '#000000', 'clan': None, 'primary_guild': None}]} -2024-12-02 03:19:10,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 166, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:49:11.492000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312898318040432660', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Here is the transcription of your recording:\nThis is a sample transcription of the recorded audio.', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} -2024-12-02 03:19:10,783 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:19:10,784 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:19:10,824 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"Here is the transcription of your recording:\nThis is a sample transcription of the recorded audio.","components":[],"tts":false} has returned 200 -2024-12-02 03:19:10,825 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': 'Here is the transcription of your recording:\nThis is a sample transcription of the recorded audio.', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:49:11.492000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312898318040432660', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-02 03:19:10,825 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:19:13,541 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089753541. -2024-12-02 03:19:13,541 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089753541}. -2024-12-02 03:19:13,579 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089753541} -2024-12-02 03:19:17,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 166. -2024-12-02 03:19:17,796 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:19:18,548 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089758548. -2024-12-02 03:19:18,549 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089758548}. -2024-12-02 03:19:18,584 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089758548} -2024-12-02 03:19:21,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 167, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:49:22.421000+00:00', 'pinned': False, 'nonce': '1312898358796353536', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898363879850157', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.leave', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-02 03:19:21,751 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:19:21,751 - discord.client - DEBUG - Dispatching event message -2024-12-02 03:19:21,751 - discord.client - DEBUG - Dispatching event command -2024-12-02 03:19:21,752 - discord.voice_state - INFO - The voice handshake is being terminated for Channel ID 1292805471933304848 (Guild ID 1292805470117171231) -2024-12-02 03:19:21,752 - discord.voice_state - DEBUG - Connection state changed to disconnected -2024-12-02 03:19:21,752 - discord.gateway - DEBUG - Updating our voice state to {'op': 4, 'd': {'guild_id': 1292805470117171231, 'channel_id': None, 'self_mute': False, 'self_deaf': False}}. -2024-12-02 03:19:21,753 - discord.gateway - DEBUG - Received voice WSMessage(type=, data=None, extra=None) -2024-12-02 03:19:22,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 168, 'op': 0, 'd': {'member': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1304755116255088670', 'suppress': False, 'session_id': 'fa2277b53513e5fe00deb778c28808aa', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'deaf': False, 'channel_id': None}} -2024-12-02 03:19:22,065 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:19:22,065 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 03:19:22,066 - discord.client - DEBUG - Dispatching event command_completion -2024-12-02 03:19:25,279 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 169, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '333974e757095cb87cd716d794a0d438', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'discoverable': True, 'deaf': False, 'channel_id': None}} -2024-12-02 03:19:25,279 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:19:25,280 - discord.client - DEBUG - Dispatching event voice_state_update -2024-12-02 03:19:25,280 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 170, 'op': 0, 'd': {'status': None, 'id': '1292805471933304848', 'guild_id': '1292805470117171231'}} -2024-12-02 03:19:25,280 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 03:19:25,281 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. -2024-12-02 03:19:58,747 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:19:59,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:20:40,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:20:40,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:21:21,260 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:21:21,577 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:22:02,520 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:22:02,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:22:43,787 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:22:44,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:23:25,050 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:23:25,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:24:06,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:24:06,627 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:24:47,572 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:24:47,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:25:28,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:25:29,155 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:26:10,095 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:26:10,425 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:26:51,348 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:26:51,667 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:27:32,600 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:27:32,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:28:13,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:28:14,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:28:55,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:28:55,436 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:29:36,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:29:36,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:30:17,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:30:17,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:30:58,898 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:30:59,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:31:40,154 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:31:40,474 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:32:21,414 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:32:21,744 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:33:02,665 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:33:02,993 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:33:43,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:33:44,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:34:25,172 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:34:25,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:35:06,424 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:35:06,751 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:35:47,687 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:35:48,017 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:36:28,951 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:36:29,281 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:37:10,216 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:37:10,536 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:37:51,471 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:37:51,798 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:38:32,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:38:33,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:39:13,992 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:39:14,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:39:55,249 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:39:55,570 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:40:36,511 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:40:36,831 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:41:17,773 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:41:18,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:41:59,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:41:59,357 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:42:40,285 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:42:40,604 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:43:21,537 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:43:21,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:44:02,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:44:03,112 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:44:44,061 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:44:44,394 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:45:25,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:45:25,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:46:06,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:46:06,915 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:46:47,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:46:48,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:47:29,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:47:29,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:48:10,367 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:48:10,687 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:48:51,621 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:48:51,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:49:32,887 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:49:33,205 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:50:14,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:50:14,482 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:50:55,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:50:55,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:51:36,658 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:51:36,990 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:52:17,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:52:18,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:52:59,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:52:59,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:53:40,446 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:53:40,763 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:54:21,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:54:22,047 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:55:02,955 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:55:03,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:55:44,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:55:44,551 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:56:25,471 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:56:25,793 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:57:06,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:57:07,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:57:48,000 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:57:48,318 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:58:29,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:58:29,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:59:10,521 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:59:10,841 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 03:59:51,773 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 03:59:52,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:00:33,030 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:00:33,349 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:01:14,290 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:01:14,617 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:01:55,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:01:55,875 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:02:36,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:02:37,144 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:03:18,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:03:18,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:03:59,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:03:59,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:04:40,586 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:04:40,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:05:21,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:05:22,161 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:06:03,105 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:06:03,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:06:44,366 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:06:44,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:07:25,626 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:07:25,945 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:08:06,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:08:07,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:08:48,134 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:08:48,451 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:09:29,393 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:09:29,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:10:10,648 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:10:10,968 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:10:51,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:10:52,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:11:33,169 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:11:33,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:12:14,428 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:12:14,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:12:55,688 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:12:56,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:13:36,953 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:13:37,268 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:14:18,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:14:18,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:14:59,470 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:14:59,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:15:40,723 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:15:41,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:16:21,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:16:22,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:17:03,236 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:17:03,549 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:17:44,489 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:17:44,805 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:18:25,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:18:26,068 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:19:07,011 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:19:07,328 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:19:48,272 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:19:48,592 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:20:29,537 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:20:29,849 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:21:10,801 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:21:11,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:21:52,063 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:21:52,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:22:33,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:22:33,659 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:23:14,575 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:23:14,889 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:23:55,835 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:23:56,172 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:24:37,088 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:24:37,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:25:18,349 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:25:18,685 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:25:59,609 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:25:59,921 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:26:40,865 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:26:41,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:27:22,119 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:27:22,436 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:28:03,385 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:28:03,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:28:44,643 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:28:44,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:29:25,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:29:26,214 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:30:07,157 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:30:07,470 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:30:48,423 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:30:48,745 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:31:29,690 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:31:30,000 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:32:10,950 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:32:11,272 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:32:52,217 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:32:52,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:33:33,481 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:33:33,792 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:34:14,743 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. -2024-12-02 04:34:15,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:34:24,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 171, 'op': 0, 'd': {'user_id': '777755987825131530', 'timestamp': 1733094265, 'member': {'user': {'username': 'dxkshh', 'public_flags': 128, 'id': '777755987825131530', 'global_name': 'storm', 'display_name': 'storm', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '464c68880f6deac82a29207fce0ca763'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1088037634695241768', '1168311263412113448', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-11T05:19:49.529000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} -2024-12-02 04:34:24,646 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 04:34:24,646 - discord.client - DEBUG - Dispatching event typing -2024-12-02 04:34:24,647 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 04:34:32,732 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 172, 'op': 0, 'd': {'user_id': '777755987825131530', 'timestamp': 1733094273, 'member': {'user': {'username': 'dxkshh', 'public_flags': 128, 'id': '777755987825131530', 'global_name': 'storm', 'display_name': 'storm', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '464c68880f6deac82a29207fce0ca763'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1088037634695241768', '1168311263412113448', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-11T05:19:49.529000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} -2024-12-02 04:34:32,733 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 04:34:32,733 - discord.client - DEBUG - Dispatching event typing -2024-12-02 04:34:32,733 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 04:34:46,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 173, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T23:04:47.156000+00:00', 'sticker_items': [{'name': 'NX_mcemoji_52', 'id': '1169691922600833045', 'format_type': 1}], 'pinned': False, 'nonce': '1312917339838087168', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1088037634695241768', '1168311263412113448', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-11T05:19:49.529000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312917341994094703', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'dxkshh', 'public_flags': 128, 'primary_guild': None, 'id': '777755987825131530', 'global_name': 'storm', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '464c68880f6deac82a29207fce0ca763'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-02 04:34:46,341 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 04:34:46,341 - discord.client - DEBUG - Dispatching event message -2024-12-02 04:34:55,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 173. -2024-12-02 04:34:56,318 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:35:13,231 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 174, 'op': 0, 'd': {'user_id': '777755987825131530', 'timestamp': 1733094314, 'member': {'user': {'username': 'dxkshh', 'public_flags': 128, 'id': '777755987825131530', 'global_name': 'storm', 'display_name': 'storm', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '464c68880f6deac82a29207fce0ca763'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1088037634695241768', '1168311263412113448', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-11T05:19:49.529000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} -2024-12-02 04:35:13,232 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 04:35:13,233 - discord.client - DEBUG - Dispatching event typing -2024-12-02 04:35:13,233 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-02 04:35:16,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 175, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T23:05:17.714000+00:00', 'pinned': False, 'nonce': '1312917467797913600', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1088037634695241768', '1168311263412113448', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-11T05:19:49.529000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312917470163763251', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': ':3', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'dxkshh', 'public_flags': 128, 'primary_guild': None, 'id': '777755987825131530', 'global_name': 'storm', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '464c68880f6deac82a29207fce0ca763'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-02 04:35:16,877 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 04:35:16,878 - discord.client - DEBUG - Dispatching event message -2024-12-02 04:35:37,254 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:35:37,567 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:36:18,509 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:36:18,823 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:36:59,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:37:00,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:37:41,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:37:41,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:38:22,295 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:38:22,608 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:39:03,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:39:03,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:39:44,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:39:45,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:40:26,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:40:26,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:41:07,321 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:41:07,645 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:41:48,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:41:48,887 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:42:29,837 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:42:30,155 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:43:11,094 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:43:11,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:43:52,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:43:52,667 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:44:33,611 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:44:33,924 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:45:14,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:45:15,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:45:56,124 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:45:56,435 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:46:37,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:46:37,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:47:18,645 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:47:18,956 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:47:59,911 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:48:00,237 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:48:41,174 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:48:41,485 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:49:22,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:49:22,777 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:50:03,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:50:04,008 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:50:44,959 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:50:45,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:51:26,217 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:51:26,530 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:52:07,482 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:52:07,806 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:52:48,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:52:49,051 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:53:29,998 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:53:30,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:54:11,261 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:54:11,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:54:52,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:54:52,837 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:55:33,777 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:55:34,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:56:15,029 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:56:15,344 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:56:56,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:56:56,601 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:57:37,546 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:57:37,859 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:58:18,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:58:19,124 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:59:00,068 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:59:00,379 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 04:59:41,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 04:59:41,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:00:22,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:00:22,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:01:03,835 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:01:04,150 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:01:45,089 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:01:45,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:02:26,340 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:02:26,653 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:03:07,598 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:03:07,912 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:03:48,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:03:49,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:04:30,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:04:30,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:05:11,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:05:11,675 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:05:52,629 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:05:52,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:06:33,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:06:34,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:07:15,141 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:07:15,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:07:56,405 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:07:56,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:08:37,662 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:08:37,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:09:18,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:09:19,227 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:10:00,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:10:00,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:10:41,432 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:10:41,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:11:22,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:11:23,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:12:03,957 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:12:04,278 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:12:45,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:12:45,519 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:13:26,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:13:26,788 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:14:07,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:14:08,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:14:49,001 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:14:49,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:15:30,262 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:15:30,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:16:11,525 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:16:11,845 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:16:52,786 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:16:53,113 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:17:34,048 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:17:34,368 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:18:15,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:18:15,629 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:18:56,563 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:18:56,889 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:19:37,818 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:19:38,139 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:20:19,070 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:20:19,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:21:00,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:21:00,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:21:41,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:21:41,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:22:22,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:22:23,174 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:23:04,105 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:23:04,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:23:45,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:23:45,674 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:24:26,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:24:26,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:25:07,876 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:25:08,193 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:25:49,140 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:25:49,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:26:30,406 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:26:30,727 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:27:11,667 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:27:11,979 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:27:52,928 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:27:53,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:28:34,194 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:28:34,506 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:29:15,450 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:29:15,762 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:29:56,712 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:29:57,026 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:30:37,968 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:30:38,284 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:31:19,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:31:19,540 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:32:00,478 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:32:00,794 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:32:41,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:32:42,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:33:23,005 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:33:23,322 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:34:04,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:34:04,577 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:34:45,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:34:45,837 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:35:26,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:35:27,084 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:36:08,029 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:36:08,342 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:36:49,285 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:36:49,604 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:37:30,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:37:30,864 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:38:11,793 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:38:12,113 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:38:53,051 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:38:53,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:39:34,316 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:39:34,634 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:40:15,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:40:15,900 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:40:56,827 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:40:57,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:41:38,085 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:41:38,410 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:42:19,342 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:42:19,661 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:43:00,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:43:00,922 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:43:41,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:43:42,171 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:44:23,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:44:23,434 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:45:04,367 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:45:04,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:45:45,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:45:45,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:46:26,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:46:27,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:47:08,157 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:47:08,478 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:47:49,414 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:47:49,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:48:30,677 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:48:30,995 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:49:11,932 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:49:12,246 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:49:53,189 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:49:53,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:50:34,454 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:50:34,773 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:51:15,709 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:51:16,041 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:51:56,963 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:51:57,279 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:52:38,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:52:38,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:53:19,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:53:19,802 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:54:00,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:54:01,074 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:54:41,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:54:42,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:55:23,254 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:55:23,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:56:04,510 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:56:04,829 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:56:45,775 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:56:46,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:57:27,028 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:57:27,344 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:58:08,287 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:58:08,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:58:49,553 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:58:49,867 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 05:59:30,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 05:59:31,129 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:00:12,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:00:12,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:00:53,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:00:53,646 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:01:34,592 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:01:34,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:02:15,851 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:02:16,167 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:02:57,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:02:57,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:03:38,382 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:03:38,699 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:04:19,639 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:04:19,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:05:00,897 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:05:01,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:05:42,152 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:05:42,471 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:06:23,407 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:06:23,727 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:07:04,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:07:04,992 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:07:45,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:07:46,237 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:08:27,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:08:27,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:09:08,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:09:08,762 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:09:49,707 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:09:50,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:10:30,961 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:10:31,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:11:12,216 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:11:12,541 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:11:53,471 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:11:53,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:12:34,731 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:12:35,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:13:15,998 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:13:16,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:13:57,259 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:13:57,576 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:14:38,513 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:14:38,833 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:15:19,773 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:15:20,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:16:01,028 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:16:01,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:16:42,293 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:16:42,615 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:17:23,548 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:17:23,867 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:18:04,806 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:18:05,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:18:46,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:18:46,383 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:19:27,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:19:27,663 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:20:08,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:20:08,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:20:49,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:20:50,185 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:21:31,101 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:21:31,415 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:22:12,356 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:22:12,687 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:22:53,609 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:22:53,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:23:34,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:23:35,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:24:16,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:24:16,443 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:24:57,386 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:24:57,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:25:38,647 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:25:38,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:26:19,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:26:20,234 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:27:01,166 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:27:01,482 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:27:42,418 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. -2024-12-02 06:27:42,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:28:15,659 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 176, 'op': 0, 'd': {'user': {'username': 'fateen09', 'public_flags': 0, 'id': '360498166216523778', 'global_name': 'F.K', 'display_name': 'F.K', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-01-05T14:54:56.163000+00:00', 'guild_id': '922005348670406667', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-02 06:28:15,660 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 06:28:15,660 - discord.client - DEBUG - Dispatching event user_update -2024-12-02 06:28:15,660 - discord.client - DEBUG - Dispatching event member_update -2024-12-02 06:28:16,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 177, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T00:58:17.556000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312945906882052096', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T00:58:16.910718+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/0.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/2dZVVL6feMSM7lxfFkKVW__LToSOzmToSEmocJV5vcA/https/cdn.discordapp.com/embed/avatars/0.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 360498166216523778'}, 'description': '<@360498166216523778>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/2dZVVL6feMSM7lxfFkKVW__LToSOzmToSEmocJV5vcA/https/cdn.discordapp.com/embed/avatars/0.png', 'name': 'fateen09', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/0.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-02 06:28:16,348 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 06:28:16,349 - discord.client - DEBUG - Dispatching event message -2024-12-02 06:28:16,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 178, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T00:58:17.556000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312945906882052096', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T00:58:16.910000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/0.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/2dZVVL6feMSM7lxfFkKVW__LToSOzmToSEmocJV5vcA/https/cdn.discordapp.com/embed/avatars/0.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 360498166216523778'}, 'description': '<@360498166216523778>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/2dZVVL6feMSM7lxfFkKVW__LToSOzmToSEmocJV5vcA/https/cdn.discordapp.com/embed/avatars/0.png', 'name': 'fateen09', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/0.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-02 06:28:16,434 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 06:28:16,436 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 06:28:16,436 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 06:28:23,684 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:28:23,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:29:04,944 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:29:05,286 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:29:46,195 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:29:46,511 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:30:27,450 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:30:27,766 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:31:08,707 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:31:09,022 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:31:49,966 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:31:50,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:32:31,230 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:32:31,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:33:12,482 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:33:12,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:33:53,747 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:33:54,064 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:34:35,006 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:34:35,323 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:35:16,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:35:16,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:35:57,530 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:35:57,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:36:38,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:36:39,113 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:37:20,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:37:20,366 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:38:01,310 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:38:01,626 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:38:42,577 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:38:42,892 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:39:23,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:39:24,166 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:40:05,101 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:40:05,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:40:46,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:40:46,685 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:41:27,615 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:41:27,932 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:42:08,873 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:42:09,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:42:50,126 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:42:50,443 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:43:31,387 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:43:31,706 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:44:12,649 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:44:12,964 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:44:53,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:44:54,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:45:35,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:45:35,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:46:16,438 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. -2024-12-02 06:46:16,765 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:46:18,497 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 179, 'op': 0, 'd': {'user': {'username': 'xd.snickers.', 'public_flags': 64, 'id': '1160893323721056257', 'global_name': '!xd.Snickers.', 'display_name': '!xd.Snickers.', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '0e9edf73dea06ce7e897e30d975e4e05'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168301657906491523', '1080184984423366726', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-30T20:43:34.469000+00:00', 'guild_id': '922005348670406667', 'flags': 106, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-02 06:46:18,498 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 06:46:18,499 - discord.client - DEBUG - Dispatching event user_update -2024-12-02 06:46:18,501 - discord.client - DEBUG - Dispatching event member_update -2024-12-02 06:46:18,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 180, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T01:16:20.156000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312950447635693668', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T01:16:19.795404+00:00', 'thumbnail': {'width': 549, 'url': 'https://cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/PHs6FyWWXAPFoTX_hFx6AqinaD5z0cdSppoGK_UEwNA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png', 'height': 549, 'flags': 0}, 'footer': {'text': 'ID: 1160893323721056257'}, 'description': '<@1160893323721056257>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/PHs6FyWWXAPFoTX_hFx6AqinaD5z0cdSppoGK_UEwNA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png', 'name': 'xd.snickers.', 'icon_url': 'https://cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-02 06:46:18,907 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 06:46:18,907 - discord.client - DEBUG - Dispatching event message -2024-12-02 06:46:18,955 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 181, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T01:16:20.156000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312950447635693668', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T01:16:19.795000+00:00', 'thumbnail': {'width': 549, 'url': 'https://cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/PHs6FyWWXAPFoTX_hFx6AqinaD5z0cdSppoGK_UEwNA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png', 'height': 549, 'flags': 0}, 'footer': {'text': 'ID: 1160893323721056257'}, 'description': '<@1160893323721056257>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/PHs6FyWWXAPFoTX_hFx6AqinaD5z0cdSppoGK_UEwNA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png', 'name': 'xd.snickers.', 'icon_url': 'https://cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-02 06:46:18,955 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 06:46:18,955 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 06:46:18,956 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 06:46:57,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-02 06:46:58,020 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:47:38,957 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-02 06:47:39,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:48:20,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-02 06:48:20,534 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:49:01,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-02 06:49:01,810 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:49:42,742 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-02 06:49:43,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:50:23,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-02 06:50:24,342 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:51:05,261 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-02 06:51:05,577 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:51:46,527 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-02 06:51:46,866 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:52:27,788 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-02 06:52:28,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:53:09,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. -2024-12-02 06:53:09,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:53:49,860 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 06:53:49,860 - discord.client - DEBUG - Dispatching event user_update -2024-12-02 06:53:49,861 - discord.client - DEBUG - Dispatching event member_update -2024-12-02 06:53:50,317 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 182. -2024-12-02 06:53:50,634 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:53:53,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 183, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T01:23:55.175000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312952356123705425', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T01:23:51.158276+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/tBZh3zlG5IFU1qMU26Q6utfbAPpl1yDgb5iHGuCOAvU/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 813779006595661834'}, 'description': '<@813779006595661834>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/tBZh3zlG5IFU1qMU26Q6utfbAPpl1yDgb5iHGuCOAvU/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png', 'name': 'adhimwol', 'icon_url': 'https://cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-02 06:53:53,920 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 06:53:53,920 - discord.client - DEBUG - Dispatching event message -2024-12-02 06:53:53,983 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 184, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T01:23:55.175000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312952356123705425', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T01:23:51.158000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/tBZh3zlG5IFU1qMU26Q6utfbAPpl1yDgb5iHGuCOAvU/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 813779006595661834'}, 'description': '<@813779006595661834>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/tBZh3zlG5IFU1qMU26Q6utfbAPpl1yDgb5iHGuCOAvU/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png', 'name': 'adhimwol', 'icon_url': 'https://cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-02 06:53:53,985 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 06:53:53,985 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-02 06:53:53,986 - discord.client - DEBUG - Dispatching event message_edit -2024-12-02 06:54:31,581 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 06:54:31,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:55:12,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 06:55:13,151 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:55:54,091 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 06:55:54,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:56:35,346 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 06:56:35,663 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:57:16,599 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 06:57:16,915 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:57:57,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 06:57:58,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:58:39,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 06:58:39,428 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 06:59:20,365 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 06:59:20,680 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:00:01,631 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:00:01,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:00:42,891 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:00:43,206 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:01:24,157 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:01:24,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:02:05,421 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:02:05,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:02:46,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:02:46,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:03:27,932 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:03:28,246 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:04:09,187 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:04:09,503 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:04:50,453 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:04:50,781 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:05:31,717 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:05:32,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:06:12,982 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:06:13,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:06:54,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:06:54,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:07:35,504 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:07:35,821 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:08:16,762 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. -2024-12-02 07:08:17,081 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:08:56,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-02 07:08:56,511 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-02 07:08:56,827 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-02 07:08:56,828 - discord.client - DEBUG - Dispatching event disconnect -2024-12-02 07:08:57,283 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-d.discord.gg -2024-12-02 07:08:57,284 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-k928",{"micros":0.0}]']}} -2024-12-02 07:08:57,286 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-02 07:08:57,604 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:08:57,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 185, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-d-k928",{"micros":415,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":212,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-99",{"micros":22}]}]']}} -2024-12-02 07:08:57,605 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 07:08:57,606 - discord.gateway - INFO - Shard ID None has successfully RESUMED session fa2277b53513e5fe00deb778c28808aa. -2024-12-02 07:08:57,606 - discord.client - DEBUG - Dispatching event resumed -2024-12-02 07:09:38,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:09:38,864 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:10:19,806 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:10:20,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:11:01,063 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:11:01,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:11:42,329 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:11:42,652 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:12:23,585 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:12:23,900 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:13:04,851 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:13:05,174 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:13:46,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:13:46,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:14:27,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:14:27,692 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:15:08,615 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:15:08,931 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:15:49,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:15:50,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:16:31,121 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:16:31,446 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:17:12,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:17:12,702 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:17:53,637 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:17:53,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:18:34,892 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:18:35,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:19:16,153 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:19:16,503 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:19:57,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:19:57,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:20:38,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:20:39,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:21:19,929 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:21:20,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:22:01,188 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:22:01,516 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:22:42,454 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:22:42,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:23:23,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:23:24,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:24:04,977 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:24:05,304 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:24:46,237 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:24:46,565 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:25:27,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:25:27,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:26:08,757 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:26:09,082 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:26:50,011 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:26:50,328 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:27:31,271 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:27:31,609 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:28:12,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:28:12,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:28:53,786 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:28:54,110 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:29:35,047 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:29:35,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:30:16,300 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:30:16,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:30:57,561 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:30:57,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:31:38,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:31:39,130 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:32:20,069 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:32:20,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:33:01,331 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:33:01,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:33:42,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:33:42,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:34:23,857 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:34:24,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:35:05,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:35:05,445 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:35:46,364 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:35:46,692 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:36:27,625 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:36:27,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:37:08,880 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:37:09,214 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:37:50,135 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:37:50,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:38:31,388 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:38:31,722 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:39:12,641 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:39:12,963 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:39:53,898 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:39:54,229 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:40:35,149 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:40:35,470 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:41:16,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:41:16,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:41:57,662 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:41:57,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:42:38,920 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:42:39,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:43:20,184 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:43:20,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:44:01,442 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:44:01,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:44:42,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:44:43,025 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:45:23,955 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:45:24,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:46:05,218 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:46:05,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:46:46,469 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:46:46,799 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:47:27,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:47:28,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:48:08,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:48:09,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:48:50,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:48:50,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:49:31,499 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:49:31,814 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:50:12,751 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:50:13,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:50:54,009 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:50:54,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:51:35,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:51:35,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:52:16,521 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:52:16,850 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:52:57,777 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:52:58,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:53:39,038 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:53:39,365 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:54:20,293 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:54:20,610 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:55:01,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:55:01,891 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:55:42,817 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:55:43,143 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:56:24,071 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:56:24,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:57:05,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:57:05,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:57:46,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:57:46,924 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:58:27,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:58:28,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:59:09,110 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:59:09,440 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 07:59:50,371 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 07:59:50,699 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:00:31,631 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:00:31,967 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:01:12,891 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:01:13,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:01:54,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:01:54,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:02:35,419 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:02:35,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:03:16,680 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:03:17,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:03:57,945 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:03:58,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:04:39,199 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:04:39,525 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:05:20,456 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:05:20,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:06:01,715 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:06:02,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:06:42,973 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:06:43,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:07:24,235 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:07:24,566 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:08:05,493 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:08:05,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:08:46,761 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:08:47,088 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:09:28,027 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:09:28,349 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:10:09,288 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:10:09,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:10:50,548 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:10:50,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:11:31,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:11:32,135 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:12:13,059 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:12:13,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:12:54,320 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:12:54,649 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:13:35,580 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:13:35,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:14:16,835 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:14:17,164 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:14:58,093 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:14:58,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:15:39,355 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:15:39,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:16:20,610 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:16:20,932 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:17:01,872 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:17:02,199 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:17:43,132 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:17:43,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:18:24,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:18:24,721 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:19:05,648 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:19:05,971 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:19:46,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:19:47,237 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:20:28,169 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:20:28,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:21:09,420 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:21:09,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:21:50,681 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:21:51,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:22:31,947 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:22:32,274 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:23:13,204 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:23:13,533 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:23:54,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:23:54,791 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:24:35,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:24:36,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:25:16,991 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:25:17,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:25:58,254 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:25:58,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:26:39,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:26:39,849 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:27:20,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:27:21,105 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:28:02,034 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:28:02,358 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:28:43,287 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:28:43,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:29:24,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:29:24,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:30:05,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:30:06,161 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:30:47,078 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:30:47,404 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:31:28,335 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:31:28,668 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:32:09,592 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:32:09,916 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:32:50,845 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:32:51,171 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:33:32,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:33:32,432 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:34:13,369 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:34:13,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:34:54,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:34:54,947 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:35:35,879 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:35:36,205 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:36:17,132 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:36:17,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:36:58,386 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:36:58,717 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:37:39,647 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:37:39,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:38:20,905 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:38:21,226 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:39:02,159 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:39:02,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:39:43,412 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:39:43,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:40:24,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:40:24,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:41:05,932 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:41:06,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:41:47,190 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:41:47,512 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:42:28,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:42:28,768 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:43:09,711 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:43:10,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:43:50,974 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:43:51,298 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:44:32,234 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:44:32,568 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:45:13,487 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:45:13,814 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:45:54,745 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:45:55,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:46:36,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:46:36,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:47:17,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:47:17,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:47:58,523 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:47:58,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:48:39,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:48:40,115 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:49:21,041 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:49:21,371 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:50:02,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:50:02,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:50:43,558 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:50:43,892 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:51:24,817 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:51:25,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:52:06,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:52:06,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:52:47,338 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:52:47,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:53:28,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:53:28,935 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:54:09,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:54:10,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:54:51,132 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:54:51,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:55:32,385 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:55:32,709 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:56:13,647 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:56:13,985 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:56:54,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:56:55,257 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:57:36,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:57:36,508 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:58:17,443 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:58:17,775 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:58:58,704 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:58:59,038 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 08:59:39,970 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 08:59:40,291 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:00:21,225 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 09:00:21,549 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:01:02,489 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. -2024-12-02 09:01:02,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:01:04,676 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-02 09:01:04,677 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-02 09:01:05,008 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-02 09:01:05,009 - discord.client - DEBUG - Dispatching event disconnect -2024-12-02 09:01:05,431 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-d.discord.gg -2024-12-02 09:01:05,432 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-bh66",{"micros":0.0}]']}} -2024-12-02 09:01:05,433 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-02 09:01:05,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:01:05,751 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 186, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-d-bh66",{"micros":420,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":207,"calls":[]},"session_lookup_finished",{"micros":18,"calls":[]},"discord-sessions-prd-1-99",{"micros":22}]}]']}} -2024-12-02 09:01:05,751 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 09:01:05,751 - discord.gateway - INFO - Shard ID None has successfully RESUMED session fa2277b53513e5fe00deb778c28808aa. -2024-12-02 09:01:05,752 - discord.client - DEBUG - Dispatching event resumed -2024-12-02 09:01:46,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:01:47,011 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:02:27,954 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:02:28,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:03:09,211 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:03:09,527 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:03:50,468 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:03:50,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:04:31,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:04:32,078 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:05:12,989 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:05:13,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:05:54,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:05:54,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:06:35,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:06:35,815 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:07:16,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:07:17,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:07:58,009 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:07:58,342 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:08:39,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:08:39,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:09:20,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:09:20,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:10:01,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:10:02,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:10:43,031 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:10:43,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:11:24,296 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:11:24,616 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:12:05,560 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:12:05,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:12:46,816 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:12:47,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:13:28,079 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:13:28,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:14:09,347 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:14:09,667 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:14:50,606 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:14:50,920 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:15:31,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:15:32,185 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:16:13,130 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:16:13,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:16:54,392 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:16:54,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:17:35,657 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:17:35,978 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:18:16,923 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:18:17,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:18:58,178 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:18:58,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:19:39,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:19:39,745 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:20:20,691 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:20:21,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:21:01,952 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:21:02,274 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:21:43,206 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:21:43,522 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:22:24,459 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:22:24,777 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:23:05,716 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:23:06,038 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:23:46,977 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:23:47,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:24:28,229 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. -2024-12-02 09:24:28,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:24:35,541 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-02 09:24:35,543 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-02 09:24:35,861 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-02 09:24:35,862 - discord.client - DEBUG - Dispatching event disconnect -2024-12-02 09:24:36,276 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-d.discord.gg -2024-12-02 09:24:36,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-37bl",{"micros":0.0}]']}} -2024-12-02 09:24:36,278 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-02 09:24:36,618 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:24:36,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 187, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-d-37bl",{"micros":4180,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":3983,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-99",{"micros":23}]}]']}} -2024-12-02 09:24:36,619 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 09:24:36,619 - discord.gateway - INFO - Shard ID None has successfully RESUMED session fa2277b53513e5fe00deb778c28808aa. -2024-12-02 09:24:36,619 - discord.client - DEBUG - Dispatching event resumed -2024-12-02 09:25:17,529 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:25:17,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:25:58,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:25:59,122 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:26:40,050 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:26:40,366 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:27:21,314 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:27:21,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:28:02,580 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:28:02,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:28:43,833 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:28:44,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:29:25,100 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:29:25,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:30:06,352 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:30:06,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:30:47,616 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:30:47,934 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:31:28,872 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:31:29,203 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:32:10,136 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:32:10,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:32:51,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:32:51,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:33:32,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:33:32,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:34:13,932 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:34:14,250 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:34:55,198 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:34:55,512 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:35:36,455 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:35:36,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:36:17,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:36:18,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:36:58,966 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:36:59,290 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:37:40,217 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:37:40,539 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:38:21,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:38:21,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:39:02,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:39:03,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:39:44,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:39:44,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:40:25,269 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:40:25,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:41:06,523 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:41:06,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:41:47,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:41:48,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:42:29,042 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:42:29,358 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:43:10,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:43:10,628 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:43:51,564 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:43:51,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:44:32,825 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:44:33,140 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:45:14,082 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:45:14,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:45:55,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:45:55,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:46:36,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:46:36,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:47:17,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:47:18,184 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:47:59,119 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:47:59,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:48:40,381 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:48:40,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:49:21,636 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:49:21,966 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:50:02,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:50:03,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:50:44,156 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:50:44,477 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:51:25,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:51:25,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:52:06,664 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:52:06,981 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:52:47,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:52:48,247 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:53:29,178 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:53:29,501 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:54:10,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:54:10,758 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:54:51,692 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:54:52,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:55:32,951 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:55:33,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:56:14,216 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:56:14,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:56:55,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:56:55,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:57:36,736 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:57:37,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:58:17,995 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:58:18,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:58:59,258 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:58:59,575 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 09:59:40,524 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 09:59:40,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:00:21,789 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:00:22,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:01:03,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:01:03,363 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:01:44,311 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:01:44,626 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:02:25,577 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:02:25,893 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:03:06,834 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:03:07,152 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:03:48,092 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:03:48,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:04:29,348 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:04:29,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:05:10,602 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:05:10,921 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:05:51,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:05:52,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:06:33,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:06:33,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:07:14,388 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:07:14,709 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:07:55,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:07:55,970 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:08:36,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:08:37,234 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:09:18,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:09:18,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:09:59,437 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:09:59,757 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:10:40,703 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:10:41,021 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:11:21,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:11:22,284 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:12:03,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:12:03,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:12:44,473 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:12:44,793 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:13:25,727 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:13:26,047 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:14:06,991 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:14:07,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:14:48,257 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:14:48,571 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:15:29,511 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:15:29,826 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:16:10,763 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:16:11,078 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:16:52,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:16:52,343 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:17:33,290 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:17:33,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:18:14,554 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:18:14,868 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:18:55,814 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:18:56,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:19:37,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:19:37,389 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:20:18,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:20:18,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:20:59,575 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:20:59,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:21:40,838 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:21:41,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:22:22,103 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:22:22,426 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:23:03,367 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:23:03,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:23:44,631 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:23:44,951 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:24:25,892 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:24:26,209 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:25:07,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:25:07,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:25:48,405 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:25:48,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:26:29,659 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:26:29,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:27:10,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:27:11,229 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:27:52,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:27:52,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:28:33,443 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:28:33,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:29:14,695 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:29:15,010 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:29:55,954 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:29:56,269 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:30:37,205 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:30:37,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:31:18,472 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:31:18,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:31:59,726 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:32:00,038 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:32:40,988 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:32:41,300 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:33:22,242 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. -2024-12-02 10:33:22,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:33:26,754 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} -2024-12-02 10:33:26,755 - discord.gateway - DEBUG - Received RECONNECT opcode. -2024-12-02 10:33:27,064 - discord.client - DEBUG - Got a request to RESUME the websocket. -2024-12-02 10:33:27,065 - discord.client - DEBUG - Dispatching event disconnect -2024-12-02 10:33:27,487 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-d.discord.gg -2024-12-02 10:33:27,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-x8fh",{"micros":0.0}]']}} -2024-12-02 10:33:27,489 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. -2024-12-02 10:33:27,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:33:27,813 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 188, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-d-x8fh",{"micros":463,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":214,"calls":[]},"session_lookup_finished",{"micros":12,"calls":[]},"discord-sessions-prd-1-99",{"micros":28}]}]']}} -2024-12-02 10:33:27,813 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 10:33:27,813 - discord.gateway - INFO - Shard ID None has successfully RESUMED session fa2277b53513e5fe00deb778c28808aa. -2024-12-02 10:33:27,814 - discord.client - DEBUG - Dispatching event resumed -2024-12-02 10:34:08,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:34:09,062 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:34:50,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:34:50,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:35:31,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:35:31,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:36:12,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:36:12,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:36:53,776 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:36:54,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:37:35,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:37:35,361 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:38:16,289 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:38:16,610 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:38:57,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:38:57,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:39:38,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:39:39,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:40:20,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:40:20,371 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:41:01,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:41:01,629 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:41:42,566 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:41:42,889 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:42:23,827 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:42:24,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:43:05,079 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:43:05,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:43:46,331 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:43:46,653 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:44:27,595 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:44:27,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:45:08,855 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:45:09,181 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:45:50,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:45:50,438 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:46:31,371 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:46:31,697 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:47:12,630 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:47:12,953 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:47:53,893 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:47:54,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:48:35,150 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:48:35,474 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:49:16,414 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:49:16,739 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:49:57,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:49:57,991 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:50:38,921 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:50:39,249 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:51:20,186 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:51:20,512 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:52:01,437 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:52:01,744 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:52:42,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:52:43,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:53:23,966 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:53:24,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:54:05,227 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:54:05,551 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:54:46,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:54:46,808 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:55:27,750 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:55:28,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:56:09,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:56:09,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:56:50,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:56:50,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:57:31,530 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:57:31,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:58:12,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:58:13,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:58:54,055 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:58:54,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 10:59:35,321 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 10:59:35,643 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:00:16,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:00:16,900 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:00:57,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:00:58,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:01:39,101 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:01:39,424 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:02:20,369 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:02:20,692 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:03:01,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:03:01,944 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:03:42,875 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:03:43,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:04:24,128 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:04:24,449 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:05:05,392 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:05:05,716 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:05:46,656 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:05:46,979 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:06:27,922 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:06:28,230 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:07:09,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:07:09,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:07:50,440 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:07:50,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:08:31,694 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:08:32,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:09:12,947 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:09:13,272 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:09:54,199 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:09:54,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:10:35,456 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:10:35,776 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:11:16,708 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:11:17,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:11:57,973 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:11:58,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:12:39,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. -2024-12-02 11:12:39,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:12:51,800 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 189, 'op': 0, 'd': {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-02 11:12:51,800 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 11:12:51,800 - discord.client - DEBUG - Dispatching event user_update -2024-12-02 11:12:51,800 - discord.client - DEBUG - Dispatching event member_update -2024-12-02 11:12:51,800 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 190, 'op': 0, 'd': {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1166279735983230976', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1088037558648311829', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-01T18:35:17.945000+00:00', 'guild_id': '922005348670406667', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-02 11:12:51,800 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-02 11:12:51,800 - discord.client - DEBUG - Dispatching event member_update -2024-12-02 11:13:20,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:13:20,788 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:14:01,735 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:14:02,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:14:42,998 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:14:43,336 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:15:24,265 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:15:24,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:16:05,525 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:16:05,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:16:46,785 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:16:47,093 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:17:28,042 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:17:28,368 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:18:09,295 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:18:09,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:18:50,552 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:18:50,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:19:31,815 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:19:32,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:20:13,079 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:20:13,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:20:54,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:20:54,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:21:35,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:21:35,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:22:16,865 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:22:17,187 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:22:58,117 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:22:58,441 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:23:39,374 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:23:39,698 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:24:20,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:24:20,953 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:25:01,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:25:02,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:25:43,153 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:25:43,480 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:26:24,405 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:26:24,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:27:05,657 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:27:05,980 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:27:46,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:27:47,236 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:28:28,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:28:28,476 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:29:09,419 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:29:09,742 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:29:50,672 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:29:50,980 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:30:31,937 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:30:32,244 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:31:13,203 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:31:13,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:31:54,467 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:31:54,790 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:32:35,729 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:32:36,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:33:16,982 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:33:17,306 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:33:58,242 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:33:58,565 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:34:39,494 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:34:39,816 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:35:20,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:35:21,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:36:02,016 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:36:02,323 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:36:43,268 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:36:43,581 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:37:24,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:37:24,827 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:38:05,772 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:38:06,080 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:38:47,034 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:38:47,341 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:39:28,286 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:39:28,593 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:40:09,552 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:40:09,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:40:50,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:40:51,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:41:32,071 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:41:32,379 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:42:13,331 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:42:13,645 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:42:54,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:42:54,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:43:35,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:43:36,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:44:17,095 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:44:17,401 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:44:58,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:44:58,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:45:39,616 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:45:39,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:46:20,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:46:21,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:47:02,124 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:47:02,431 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:47:43,377 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:47:43,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:48:24,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:48:24,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:49:05,893 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:49:06,200 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:49:47,156 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:49:47,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:50:28,418 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:50:28,726 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:51:09,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:51:09,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:51:50,933 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:51:51,241 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:52:32,191 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:52:32,498 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:53:13,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:53:13,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:53:54,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:53:55,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:54:35,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:54:36,344 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:55:17,227 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:55:17,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:55:58,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:55:58,794 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:56:39,745 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:56:40,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:57:21,011 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:57:21,317 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:58:02,276 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:58:02,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:58:43,532 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:58:43,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 11:59:24,786 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 11:59:25,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:00:06,044 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:00:06,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:00:47,310 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:00:47,623 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:01:28,564 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:01:28,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:02:09,826 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:02:10,156 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:02:51,090 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:02:51,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:03:32,352 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:03:32,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:04:13,611 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:04:13,935 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:04:54,877 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:04:55,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:05:36,142 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:05:36,449 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:06:17,398 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:06:17,706 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:06:58,656 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:06:58,963 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:07:39,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:07:40,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:08:21,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:08:21,489 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:09:02,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:09:02,752 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:09:43,706 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:09:44,013 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:10:24,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:10:25,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:11:06,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:11:06,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:11:47,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:11:47,786 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:12:28,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:12:29,050 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:13:10,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:13:10,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:13:51,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:13:51,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:14:32,521 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:14:32,837 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:15:13,776 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:15:14,082 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:15:55,040 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:15:55,346 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:16:36,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:16:36,616 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:17:17,566 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:17:17,873 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:17:58,818 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:17:59,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:18:40,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:18:40,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:19:21,325 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:19:21,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:20:02,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:20:02,886 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:20:43,837 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:20:44,143 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:21:25,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:21:25,408 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:22:06,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:22:06,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:22:47,619 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:22:47,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:23:28,875 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:23:29,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:24:10,131 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:24:10,437 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:24:51,393 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:24:51,708 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:25:32,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:25:32,950 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:26:13,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:26:14,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:26:55,173 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:26:55,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:27:36,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:27:36,731 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:28:17,692 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:28:17,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:28:58,958 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:28:59,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:29:40,223 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:29:40,530 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:30:21,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:30:21,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:31:02,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:31:03,068 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:31:44,005 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:31:44,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:32:25,266 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:32:25,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:33:06,520 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:33:06,843 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:33:47,783 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:33:48,090 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:34:29,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:34:29,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:35:10,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:35:10,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:35:51,567 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:35:51,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:36:32,829 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:36:33,135 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:37:14,090 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:37:14,471 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:37:55,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:37:55,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:38:36,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:38:36,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:39:17,861 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:39:18,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:39:59,113 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:39:59,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:40:40,375 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:40:40,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:41:21,636 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:41:21,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:42:02,899 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:42:03,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-02 12:42:44,165 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. -2024-12-02 12:42:44,483 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-06 07:12:59,675 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported -2024-12-06 07:12:59,675 - asyncio - DEBUG - Using proactor: IocpProactor -2024-12-06 07:12:59,677 - discord.client - INFO - logging in using static token -2024-12-06 07:13:00,196 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 -2024-12-06 07:13:00,196 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). -2024-12-06 07:13:00,196 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} -2024-12-06 07:13:00,732 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 -2024-12-06 07:13:00,732 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). -2024-12-06 07:13:00,733 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 19439872, 'tags': ['Programming', 'Community', 'productivity', 'Moderation', 'fun'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} -2024-12-06 07:13:00,733 - IndieGOBot - INFO - Starting bot setup... -2024-12-06 07:13:00,734 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors -2024-12-06 07:13:00,746 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base -2024-12-06 07:13:00,754 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help -2024-12-06 07:13:00,761 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general -2024-12-06 07:13:00,773 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-12-06 07:13:00,773 - IndieGOBot - ERROR - Error details: Extension 'cogs.general' raised an error: TypeError: unsupported parameter kind in callback: VAR_POSITIONAL -2024-12-06 07:13:00,774 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 951, in _load_from_module_spec - spec.loader.exec_module(lib) # type: ignore - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 995, in exec_module - File "", line 488, in _call_with_frames_removed - File "C:\Users\Drago\Desktop\IndieGo\cogs\general.py", line 43, in - class General(commands.Cog): - File "C:\Users\Drago\Desktop\IndieGo\cogs\general.py", line 94, in General - @app_commands.command(name="choose", description="Choose between multiple options") - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\commands.py", line 2060, in decorator - return Command( - ^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\commands.py", line 687, in __init__ - self._params: Dict[str, CommandParameter] = _extract_parameters_from_callback(callback, callback.__globals__) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\commands.py", line 383, in _extract_parameters_from_callback - param = annotation_to_parameter(resolved, parameter) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\transformers.py", line 868, in annotation_to_parameter - raise TypeError(f'unsupported parameter kind in callback: {parameter.kind!s}') -TypeError: unsupported parameter kind in callback: VAR_POSITIONAL - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 64, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 954, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.general' raised an error: TypeError: unsupported parameter kind in callback: VAR_POSITIONAL - -2024-12-06 07:13:00,774 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation -2024-12-06 07:13:00,784 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin -2024-12-06 07:13:00,791 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets -2024-12-06 07:13:00,802 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-12-06 07:13:00,802 - IndieGOBot - ERROR - Error details: Extension 'cogs.tickets' raised an error: ImportError: cannot import name 'TICKET_CATEGORY_ID' from 'config' (C:\Users\Drago\Desktop\IndieGo\config.py) -2024-12-06 07:13:00,803 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 951, in _load_from_module_spec - spec.loader.exec_module(lib) # type: ignore - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 995, in exec_module - File "", line 488, in _call_with_frames_removed - File "C:\Users\Drago\Desktop\IndieGo\cogs\tickets.py", line 5, in - from config import TICKET_CATEGORY_ID, STAFF_ROLE_ID, LOG_CHANNEL_ID -ImportError: cannot import name 'TICKET_CATEGORY_ID' from 'config' (C:\Users\Drago\Desktop\IndieGo\config.py) - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 64, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 954, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.tickets' raised an error: ImportError: cannot import name 'TICKET_CATEGORY_ID' from 'config' (C:\Users\Drago\Desktop\IndieGo\config.py) - -2024-12-06 07:13:00,804 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging -2024-12-06 07:13:00,812 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun -2024-12-06 07:13:00,827 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant -2024-12-06 07:13:04,245 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help -2024-12-06 07:13:04,252 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod -2024-12-06 07:13:04,263 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction -2024-12-06 07:13:04,579 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel -2024-12-06 07:13:04,612 - IndieGOBot - ERROR - Error type: ExtensionFailed -2024-12-06 07:13:04,612 - IndieGOBot - ERROR - Error details: Extension 'cogs.voice_channel' raised an error: ImportError: cannot import name 'speech_v1' from 'google.cloud' (unknown location) -2024-12-06 07:13:04,613 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 951, in _load_from_module_spec - spec.loader.exec_module(lib) # type: ignore - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 995, in exec_module - File "", line 488, in _call_with_frames_removed - File "C:\Users\Drago\Desktop\IndieGo\cogs\voice_channel.py", line 10, in - from google.cloud import speech_v1 -ImportError: cannot import name 'speech_v1' from 'google.cloud' (unknown location) - -The above exception was the direct cause of the following exception: - -Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 64, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension - await self._load_from_module_spec(spec, name) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 954, in _load_from_module_spec - raise errors.ExtensionFailed(key, e) from e -discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.voice_channel' raised an error: ImportError: cannot import name 'speech_v1' from 'google.cloud' (unknown location) - -2024-12-06 07:13:04,613 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr -2024-12-06 07:13:04,625 - IndieGOBot - DEBUG - Attempting to load extension: cogs.redditcogs.interactions -2024-12-06 07:13:04,629 - IndieGOBot - ERROR - Error type: ModuleNotFoundError -2024-12-06 07:13:04,629 - IndieGOBot - ERROR - Error details: No module named 'cogs.redditcogs' -2024-12-06 07:13:04,629 - IndieGOBot - ERROR - Traceback (most recent call last): - File "C:\Users\Drago\Desktop\IndieGo\main.py", line 64, in setup_hook - await self.load_extension(extension) - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1025, in load_extension - spec = importlib.util.find_spec(name) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "", line 91, in find_spec -ModuleNotFoundError: No module named 'cogs.redditcogs' - -2024-12-06 07:13:04,630 - IndieGOBot - INFO - Syncing command tree... -2024-12-06 07:13:05,184 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"help","description":"Show help information with a dropdown menu","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"warn","description":"Warn a member","type":1,"options":[{"type":6,"name":"member","description":"The member to warn","required":true},{"type":3,"name":"reason","description":"The reason for the warning","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"automod_setup","description":"Set up AutoMod in the server","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"add_bad_word","description":"Add a bad word to the AutoMod filter","type":1,"options":[{"type":3,"name":"word","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"remove_bad_word","description":"Remove a bad word from the AutoMod filter","type":1,"options":[{"type":3,"name":"word","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 -2024-12-06 07:13:05,184 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). -2024-12-06 07:13:05,185 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1314406734508327023', 'application_id': '1304755116255088670', 'version': '1314406734642811000', 'default_member_permissions': None, 'type': 1, 'name': 'help', 'name_localizations': None, 'description': 'Show help information with a dropdown menu', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734508327024', 'application_id': '1304755116255088670', 'version': '1314406734730756188', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327025', 'application_id': '1304755116255088670', 'version': '1314406734730756189', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327026', 'application_id': '1304755116255088670', 'version': '1314406734730756190', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327027', 'application_id': '1304755116255088670', 'version': '1314406734730756191', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327028', 'application_id': '1304755116255088670', 'version': '1314406734730756192', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734508327029', 'application_id': '1304755116255088670', 'version': '1314406734730756193', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734508327030', 'application_id': '1304755116255088670', 'version': '1314406734730756194', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734508327031', 'application_id': '1304755116255088670', 'version': '1314406734730756195', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327032', 'application_id': '1304755116255088670', 'version': '1314406734730756196', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734642810991', 'application_id': '1304755116255088670', 'version': '1314406734730756197', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810992', 'application_id': '1304755116255088670', 'version': '1314406734751596575', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734642810993', 'application_id': '1304755116255088670', 'version': '1314406734751596576', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810994', 'application_id': '1304755116255088670', 'version': '1314406734751596577', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810995', 'application_id': '1304755116255088670', 'version': '1314406734751596578', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810996', 'application_id': '1304755116255088670', 'version': '1314406734751596579', 'default_member_permissions': None, 'type': 1, 'name': 'warn', 'name_localizations': None, 'description': 'Warn a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': 'The member to warn', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': 'The reason for the warning', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810997', 'application_id': '1304755116255088670', 'version': '1314406734751596580', 'default_member_permissions': None, 'type': 1, 'name': 'automod_setup', 'name_localizations': None, 'description': 'Set up AutoMod in the server', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734642810998', 'application_id': '1304755116255088670', 'version': '1314406734751596581', 'default_member_permissions': None, 'type': 1, 'name': 'add_bad_word', 'name_localizations': None, 'description': 'Add a bad word to the AutoMod filter', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'word', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810999', 'application_id': '1304755116255088670', 'version': '1314406734751596582', 'default_member_permissions': None, 'type': 1, 'name': 'remove_bad_word', 'name_localizations': None, 'description': 'Remove a bad word from the AutoMod filter', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'word', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] -2024-12-06 07:13:05,538 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ -2024-12-06 07:13:05,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-c-qjzf",{"micros":0.0}]']}} -2024-12-06 07:13:05,539 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. -2024-12-06 07:13:05,836 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-06 07:13:05,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': 'bf87607533a26bbe29608d9de2320a7a', 'resume_gateway_url': 'wss://gateway-us-east1-c.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-c-qjzf",{"micros":95461,"calls":["id_created",{"micros":1327,"calls":[]},"session_lookup_time",{"micros":658,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-86",{"micros":93013,"calls":["start_session",{"micros":41896,"calls":["discord-api-rpc-6c7688bf65-7n8xr",{"micros":37408,"calls":["get_user",{"micros":5433},"get_guilds",{"micros":2743},"send_scheduled_deletion_message",{"micros":6},"guild_join_requests",{"micros":493},"authorized_ip_coro",{"micros":5}]}]},"starting_guild_connect",{"micros":78,"calls":[]},"presence_started",{"micros":17006,"calls":[]},"guilds_started",{"micros":143,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":33856,"calls":[]},"connect_finished",{"micros":33863,"calls":[]},"build_ready",{"micros":24,"calls":[]},"clean_ready",{"micros":0,"calls":[]},"optimize_ready",{"micros":1,"calls":[]},"split_ready",{"micros":0,"calls":[]}]}]}]']}} -2024-12-06 07:13:05,933 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:05,934 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: bf87607533a26bbe29608d9de2320a7a). -2024-12-06 07:13:05,934 - discord.client - DEBUG - Dispatching event connect -2024-12-06 07:13:05,940 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:05,948 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:06,006 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:06,047 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:06,316 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:06,352 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:06,370 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:06,380 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '6f73c54a359e4c5e7c65297a89406295', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-06 07:13:06,380 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:06,381 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. -2024-12-06 07:13:06,769 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 10, 'op': 0, 'd': {'nonce': '1be6c0e80973aefd8d97a32e592e51e5', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-06 07:13:06,770 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:06,770 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. -2024-12-06 07:13:07,246 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 11, 'op': 0, 'd': {'nonce': '5616ae4b830a808fee4051c2bd66920c', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-06 07:13:07,247 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:07,247 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. -2024-12-06 07:13:07,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 12, 'op': 0, 'd': {'nonce': '78ac02e28e5596f464d482afc3cbace4', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-06 07:13:07,749 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:07,750 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. -2024-12-06 07:13:08,381 - discord.client - DEBUG - Dispatching event guild_available -2024-12-06 07:13:08,381 - discord.client - DEBUG - Dispatching event guild_available -2024-12-06 07:13:08,381 - discord.client - DEBUG - Dispatching event guild_available -2024-12-06 07:13:08,381 - discord.client - DEBUG - Dispatching event guild_available -2024-12-06 07:13:08,942 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:08,952 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-12-06 07:13:09,207 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:09,218 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-12-06 07:13:09,461 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:09,468 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-12-06 07:13:09,722 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:09,729 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-12-06 07:13:09,967 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:09,985 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. -2024-12-06 07:13:10,009 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:10,015 - discord.state - DEBUG - Processed a chunk for 142 members in guild ID 922005348670406667. -2024-12-06 07:13:10,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': '1224f36facf51f90bf39953deebf5510', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'paws', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': '5ce1e94c9b862cb052f2a19b91889b7e'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd927c73f72eb117b498180ff193a065a'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'cb1c367ed0fd4af89efe07ba45bddc26'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312895927908040785', '1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-06 07:13:10,017 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:10,018 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. -2024-12-06 07:13:10,018 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '5578e07a7036b6364a2caa6ef82db63b', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} -2024-12-06 07:13:10,019 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:10,019 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. -2024-12-06 07:13:10,019 - discord.client - DEBUG - Dispatching event guild_available -2024-12-06 07:13:10,019 - discord.client - DEBUG - Dispatching event guild_available -2024-12-06 07:13:10,019 - discord.client - DEBUG - Dispatching event guild_available -2024-12-06 07:13:10,020 - discord.client - DEBUG - Dispatching event ready -2024-12-06 07:13:10,020 - IndieGOBot - INFO - Logged in as IndieGO#9052 (ID: 1304755116255088670) -2024-12-06 07:13:10,021 - IndieGOBot - INFO - -Cog Status: -2024-12-06 07:13:10,051 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":".help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status -2024-12-06 07:13:10,051 - IndieGOBot - INFO - Bot is ready! -2024-12-06 07:13:30,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INTERACTION_CREATE', 's': 21, 'op': 0, 'd': {'version': 1, 'type': 2, 'token': 'aW50ZXJhY3Rpb246MTMxNDQwNjg0MjcxNzE3OTkxNDpseG5oNU1nMUVHNkpqOW5ZVHo5dVdUZDJxd05leFJyM2Zud1pQR2lyWWQ2OTdZbk9yeTJaZU9La0ZTRExRYk9OYWpWaGx4RHEySmFaNFlpMUR0OXZ0ZENkSVUwVHJjYnpxdWJPWlJ1cXU1Wml6OUxqRlRraExCemdFQ3pleVJaMg', 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'unusual_dm_activity_until': None, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'permissions': '2251799813685247', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'locale': 'en-US', 'id': '1314406842717179914', 'guild_locale': 'en-US', 'guild_id': '1292805470117171231', 'guild': {'locale': 'en-US', 'id': '1292805470117171231', 'features': ['MEMBER_VERIFICATION_GATE_ENABLED', 'NEWS', 'AUTO_MODERATION', 'COMMUNITY', 'SOUNDBOARD', 'PREVIEW_ENABLED', 'ENABLED_MODERATION_EXPERIENCE_FOR_NON_COMMUNITY']}, 'entitlements': [], 'entitlement_sku_ids': [], 'data': {'type': 1, 'name': 'help', 'id': '1314406734508327023'}, 'context': 0, 'channel_id': '1310707299177992262', 'channel': {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 44, 'permissions': '2251799813685247', 'parent_id': None, 'nsfw': False, 'name': 'codes', 'last_message_id': '1314406017546584105', 'id': '1310707299177992262', 'guild_id': '1292805470117171231', 'flags': 0}, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}, 'application_id': '1304755116255088670', 'app_permissions': '2251799813685247'}} -2024-12-06 07:13:30,882 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:30,882 - discord.client - DEBUG - Dispatching event interaction -2024-12-06 07:13:31,467 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:31,468 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:13:31,508 - discord.webhook.async_ - DEBUG - Webhook ID 1314406842717179914 with POST https://discord.com/api/v10/interactions/1314406842717179914/aW50ZXJhY3Rpb246MTMxNDQwNjg0MjcxNzE3OTkxNDpseG5oNU1nMUVHNkpqOW5ZVHo5dVdUZDJxd05leFJyM2Zud1pQR2lyWWQ2OTdZbk9yeTJaZU9La0ZTRExRYk9OYWpWaGx4RHEySmFaNFlpMUR0OXZ0ZENkSVUwVHJjYnpxdWJPWlJ1cXU1Wml6OUxqRlRraExCemdFQ3pleVJaMg/callback has returned status code 204 -2024-12-06 07:13:31,509 - discord.client - DEBUG - Dispatching event app_command_completion -2024-12-06 07:13:34,841 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:34,842 - discord.client - DEBUG - Dispatching event interaction -2024-12-06 07:13:35,349 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:35,349 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-06 07:13:35,349 - discord.client - DEBUG - Dispatching event message_edit -2024-12-06 07:13:35,358 - discord.webhook.async_ - DEBUG - Webhook ID 1314406859477614612 with POST https://discord.com/api/v10/interactions/1314406859477614612/aW50ZXJhY3Rpb246MTMxNDQwNjg1OTQ3NzYxNDYxMjp3aE41bHIwVmw4WnMycnRTaXZ0TXVtdnp3cjE5Z2RlSjlhaURoVGV5bnk1cWhFTjNxbXprTlJEcVFHdjVCc1JUaFhJNVRpTEo4cHQ0RmdXanc3NU03RVhBU2tPZHlJZmZTa1I4NTNSd2lTOW1DYWJTcHBUdkg4M250Z1pPQ0kxMw/callback has returned status code 204 -2024-12-06 07:13:41,424 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:41,424 - discord.client - DEBUG - Dispatching event interaction -2024-12-06 07:13:41,900 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:41,900 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-06 07:13:41,901 - discord.client - DEBUG - Dispatching event message_edit -2024-12-06 07:13:41,901 - discord.webhook.async_ - DEBUG - Webhook ID 1314406887101304923 with POST https://discord.com/api/v10/interactions/1314406887101304923/aW50ZXJhY3Rpb246MTMxNDQwNjg4NzEwMTMwNDkyMzo4eGVhUjlsNkprNjF6a2FvNG5vdVBpSXc5Y2Z1TnlEYVpMUWp2S0RYd2RubWU0a2tQa2FkU3BRV0xWNnhFaW9ob2p0UHA0RjJmRTlTMDZLVlFCb2NFQkxLWFRJeFdoMHBKejF6Zm5zR2VVR09GSjBVZzFpSzFrMkhxS1J0RkFZaQ/callback has returned status code 204 -2024-12-06 07:13:46,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. -2024-12-06 07:13:47,096 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-06 07:13:50,338 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 27, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:43:51.284000+00:00', 'pinned': False, 'nonce': '1314406918109790208', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314406924430872618', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.sacn', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:13:50,339 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:50,339 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:13:50,339 - discord.client - DEBUG - Dispatching event command_error -2024-12-06 07:13:50,807 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:50,808 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:13:50,820 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 29, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:43:51.764000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314406926443872317', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "sacn" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1313300507036749824', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-06 07:13:50,821 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:50,821 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:13:50,828 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"sacn\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:13:50,829 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). -2024-12-06 07:13:50,829 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "sacn" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:43:51.764000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314406926443872317', 'channel_id': '1313300507036749824', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:13:50,859 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `sacn` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:13:50,862 - discord.client - ERROR - Ignoring exception in on_command_error -Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event - await coro(*args, **kwargs) - File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error - log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) - ^^^^^^^^^^^^^^^ -UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value -2024-12-06 07:13:53,686 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 30, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:43:54.660000+00:00', 'pinned': False, 'nonce': '1314406932664025088', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314406938590838804', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.scan', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:13:53,686 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:53,686 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:13:53,687 - discord.client - DEBUG - Dispatching event command -2024-12-06 07:13:54,099 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 31, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:43:55.015000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314406940079685673', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Please attach an image to scan.', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:13:54,100 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:54,100 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:13:54,128 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages with {"content":"Please attach an image to scan.","components":[],"tts":false} has returned 200 -2024-12-06 07:13:54,129 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages has received {'type': 0, 'content': 'Please attach an image to scan.', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-06T01:43:55.015000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314406940079685673', 'channel_id': '1310707299177992262', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:13:54,129 - discord.client - DEBUG - Dispatching event command_completion -2024-12-06 07:13:54,581 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 32, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:43:55.542000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314406942290219098', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'scan was executed by <@950609706760691752>.', 'content_scan_version': 0, 'color': 3066993}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1313300507036749824', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-06 07:13:54,582 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:54,582 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:13:54,585 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages with {"embeds":[{"color":3066993,"type":"rich","description":"scan was executed by <@950609706760691752>.","title":"Command Executed"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:13:54,586 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'scan was executed by <@950609706760691752>.', 'color': 3066993, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:43:55.542000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314406942290219098', 'channel_id': '1313300507036749824', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:13:57,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 33, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733449438, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1310707299177992262', 'guild_id': '1292805470117171231'}} -2024-12-06 07:13:57,728 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:13:57,728 - discord.client - DEBUG - Dispatching event typing -2024-12-06 07:13:57,728 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-06 07:14:10,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 34, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:11.466000+00:00', 'pinned': False, 'nonce': '1314406995083657216', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407009080311940', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.scan', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [{'width': 1500, 'url': 'https://cdn.discordapp.com/attachments/1310707299177992262/1314407008870600734/2bqXuBq.JPG?ex=6753a86b&is=675256eb&hm=7e0f5fb5ad5a9d5e32754a31d39141d23c6b64b2f9e38ecd0c96eb8ced26b30c&', 'size': 35705, 'proxy_url': 'https://media.discordapp.net/attachments/1310707299177992262/1314407008870600734/2bqXuBq.JPG?ex=6753a86b&is=675256eb&hm=7e0f5fb5ad5a9d5e32754a31d39141d23c6b64b2f9e38ecd0c96eb8ced26b30c&', 'placeholder_version': 1, 'placeholder': 'xPcJDwI4hoiId4dwnHeH6EiJo3r4vIcP', 'id': '1314407008870600734', 'height': 1500, 'filename': '2bqXuBq.JPG', 'content_type': 'image/jpeg', 'content_scan_version': 1}], 'guild_id': '1292805470117171231'}} -2024-12-06 07:14:10,599 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:14:10,599 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:14:10,601 - discord.client - DEBUG - Dispatching event command -2024-12-06 07:14:11,475 - pytesseract - DEBUG - ['tesseract', 'C:\\Users\\Drago\\AppData\\Local\\Temp\\tess_8bpwgoib_input.JPEG', 'C:\\Users\\Drago\\AppData\\Local\\Temp\\tess_8bpwgoib', 'txt'] -2024-12-06 07:14:12,061 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 35, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:12.931000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407015224836118', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "An error occurred while processing the image: tesseract is not installed or it's not in your PATH. See README file for more information.", 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:14:12,062 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:14:12,062 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:14:12,069 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages with {"content":"An error occurred while processing the image: tesseract is not installed or it's not in your PATH. See README file for more information.","components":[],"tts":false} has returned 200 -2024-12-06 07:14:12,070 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages has received {'type': 0, 'content': "An error occurred while processing the image: tesseract is not installed or it's not in your PATH. See README file for more information.", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-06T01:44:12.931000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407015224836118', 'channel_id': '1310707299177992262', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:14:12,070 - discord.client - DEBUG - Dispatching event command_completion -2024-12-06 07:14:12,500 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages with {"embeds":[{"color":3066993,"type":"rich","description":"scan was executed by <@950609706760691752>.","title":"Command Executed"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:14:12,500 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'scan was executed by <@950609706760691752>.', 'color': 3066993, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:44:13.461000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407017447686174', 'channel_id': '1313300507036749824', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:14:12,501 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 36, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:13.461000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407017447686174', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'scan was executed by <@950609706760691752>.', 'content_scan_version': 0, 'color': 3066993}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1313300507036749824', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-06 07:14:12,501 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:14:12,501 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:14:28,056 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. -2024-12-06 07:14:28,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-06 07:14:33,673 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 37, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733449474, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1310707299177992262', 'guild_id': '1292805470117171231'}} -2024-12-06 07:14:33,674 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:14:33,674 - discord.client - DEBUG - Dispatching event typing -2024-12-06 07:14:33,674 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-06 07:14:34,485 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 38, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:35.441000+00:00', 'pinned': False, 'nonce': '1314407103699353600', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407109638754344', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:14:34,485 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:14:34,485 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:14:34,485 - discord.client - DEBUG - Dispatching event command -2024-12-06 07:14:34,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 39, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:35.928000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407111681249360', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:14:34,961 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:14:34,961 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:14:34,996 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:14:34,996 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:44:35.928000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407111681249360', 'channel_id': '1310707299177992262', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:14:34,996 - discord.client - DEBUG - Dispatching event command_completion -2024-12-06 07:14:35,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 40, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:36.405000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407113681797180', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'joke was executed by <@950609706760691752>.', 'content_scan_version': 0, 'color': 3066993}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1313300507036749824', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '922005348670406667'}} -2024-12-06 07:14:35,463 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:14:35,464 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:14:35,465 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages with {"embeds":[{"color":3066993,"type":"rich","description":"joke was executed by <@950609706760691752>.","title":"Command Executed"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:14:35,465 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'joke was executed by <@950609706760691752>.', 'color': 3066993, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:44:36.405000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407113681797180', 'channel_id': '1313300507036749824', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:15:02,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INTERACTION_CREATE', 's': 41, 'op': 0, 'd': {'version': 1, 'type': 2, 'token': 'aW50ZXJhY3Rpb246MTMxNDQwNzIyNzg3MTg1NDcyMzpqQnU5a09jdWNrWHF0MWdSTUo3UXRFdXR6WXJJU3ViR0R1Qm9rYnFSTUJFSThjNFFlNjdvZDkzajhSUGJsendEQjRKYUZCN3Y4bkU4N3FYTm9MZHlUZUk3QVl4WXNSaXdFZGdpWWpvU0w3U0JoODhqaGFOTDVFRldJYWE1MnBaTg', 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'unusual_dm_activity_until': None, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'permissions': '2251799813685247', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'locale': 'en-US', 'id': '1314407227871854723', 'guild_locale': 'en-US', 'guild_id': '1292805470117171231', 'guild': {'locale': 'en-US', 'id': '1292805470117171231', 'features': ['AUTO_MODERATION', 'SOUNDBOARD', 'PREVIEW_ENABLED', 'COMMUNITY', 'NEWS', 'ENABLED_MODERATION_EXPERIENCE_FOR_NON_COMMUNITY', 'MEMBER_VERIFICATION_GATE_ENABLED']}, 'entitlements': [], 'entitlement_sku_ids': [], 'data': {'type': 1, 'name': 'setup_logs', 'id': '1314406734508327030'}, 'context': 0, 'channel_id': '1310707299177992262', 'channel': {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 44, 'permissions': '2251799813685247', 'parent_id': None, 'nsfw': False, 'name': 'codes', 'last_message_id': '1314407111681249360', 'id': '1310707299177992262', 'guild_id': '1292805470117171231', 'flags': 0}, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}, 'application_id': '1304755116255088670', 'app_permissions': '2251799813685247'}} -2024-12-06 07:15:02,697 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:02,697 - discord.client - DEBUG - Dispatching event interaction -2024-12-06 07:15:03,269 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_CREATE', 's': 42, 'op': 0, 'd': {'version': 1733449504237, 'type': 4, 'position': 11, 'permission_overwrites': [], 'parent_id': None, 'name': 'Server Logging', 'id': '1314407230375858356', 'guild_id': '1292805470117171231', 'flags': 0}} -2024-12-06 07:15:03,269 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:03,269 - discord.client - DEBUG - Dispatching event guild_channel_create -2024-12-06 07:15:03,302 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 43, 'op': 0, 'd': {'user_id': '1304755116255088670', 'target_id': '1314407230375858356', 'id': '1314407230375858357', 'changes': [{'new_value': 'Server Logging', 'key': 'name'}, {'new_value': 4, 'key': 'type'}, {'new_value': [], 'key': 'permission_overwrites'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 10, 'guild_id': '1292805470117171231'}} -2024-12-06 07:15:03,302 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:03,302 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-06 07:15:03,332 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels with {"type":4,"name":"Server Logging","permission_overwrites":[]} has returned 201 -2024-12-06 07:15:03,333 - discord.http - DEBUG - POST /guilds/{guild_id}/channels has found its initial rate limit bucket hash (be56019ae011689ff5baf218062aacf5). -2024-12-06 07:15:03,333 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels has received {'id': '1314407230375858356', 'type': 4, 'flags': 0, 'guild_id': '1292805470117171231', 'name': 'Server Logging', 'parent_id': None, 'position': 11, 'permission_overwrites': []} -2024-12-06 07:15:03,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_CREATE', 's': 44, 'op': 0, 'd': {'version': 1733449504753, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 50, 'permission_overwrites': [], 'parent_id': '1314407230375858356', 'nsfw': False, 'name': 'admin-logs', 'last_message_id': None, 'id': '1314407232577867868', 'guild_id': '1292805470117171231', 'flags': 0}} -2024-12-06 07:15:03,782 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:03,782 - discord.client - DEBUG - Dispatching event guild_channel_create -2024-12-06 07:15:03,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 45, 'op': 0, 'd': {'user_id': '1304755116255088670', 'target_id': '1314407232577867868', 'id': '1314407232577867869', 'changes': [{'new_value': 'admin-logs', 'key': 'name'}, {'new_value': 0, 'key': 'type'}, {'new_value': [], 'key': 'permission_overwrites'}, {'new_value': False, 'key': 'nsfw'}, {'new_value': 0, 'key': 'rate_limit_per_user'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 10, 'guild_id': '1292805470117171231'}} -2024-12-06 07:15:03,783 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:03,783 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-06 07:15:03,828 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels with {"type":0,"name":"admin-logs","parent_id":1314407230375858356,"permission_overwrites":[]} has returned 201 -2024-12-06 07:15:03,829 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels has received {'id': '1314407232577867868', 'type': 0, 'last_message_id': None, 'flags': 0, 'guild_id': '1292805470117171231', 'name': 'admin-logs', 'parent_id': '1314407230375858356', 'rate_limit_per_user': 0, 'topic': None, 'position': 50, 'permission_overwrites': [], 'nsfw': False} -2024-12-06 07:15:04,344 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_CREATE', 's': 46, 'op': 0, 'd': {'version': 1733449505302, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 51, 'permission_overwrites': [], 'parent_id': '1314407230375858356', 'nsfw': False, 'name': 'server-logs', 'last_message_id': None, 'id': '1314407234599522335', 'guild_id': '1292805470117171231', 'flags': 0}} -2024-12-06 07:15:04,345 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:04,345 - discord.client - DEBUG - Dispatching event guild_channel_create -2024-12-06 07:15:04,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 47, 'op': 0, 'd': {'user_id': '1304755116255088670', 'target_id': '1314407234599522335', 'id': '1314407234599522336', 'changes': [{'new_value': 'server-logs', 'key': 'name'}, {'new_value': 0, 'key': 'type'}, {'new_value': [], 'key': 'permission_overwrites'}, {'new_value': False, 'key': 'nsfw'}, {'new_value': 0, 'key': 'rate_limit_per_user'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 10, 'guild_id': '1292805470117171231'}} -2024-12-06 07:15:04,347 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:04,347 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-06 07:15:04,435 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels with {"type":0,"name":"server-logs","parent_id":1314407230375858356,"permission_overwrites":[]} has returned 201 -2024-12-06 07:15:04,436 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels has received {'id': '1314407234599522335', 'type': 0, 'last_message_id': None, 'flags': 0, 'guild_id': '1292805470117171231', 'name': 'server-logs', 'parent_id': '1314407230375858356', 'rate_limit_per_user': 0, 'topic': None, 'position': 51, 'permission_overwrites': [], 'nsfw': False} -2024-12-06 07:15:04,882 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 48, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-12-06T01:45:05.798000+00:00', 'position': 0, 'pinned': False, 'nonce': '1314407221706096640', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'setup_logs', 'id': '1314407227871854723', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'setup_logs', 'id': '1314407227871854723'}, 'id': '1314407236964978729', 'flags': 64, 'embeds': [], 'edited_timestamp': None, 'content': 'Logging channels setup successfully.', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670'}} -2024-12-06 07:15:04,883 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:04,883 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:15:04,896 - discord.webhook.async_ - DEBUG - Webhook ID 1314407227871854723 with POST https://discord.com/api/v10/interactions/1314407227871854723/aW50ZXJhY3Rpb246MTMxNDQwNzIyNzg3MTg1NDcyMzpqQnU5a09jdWNrWHF0MWdSTUo3UXRFdXR6WXJJU3ViR0R1Qm9rYnFSTUJFSThjNFFlNjdvZDkzajhSUGJsendEQjRKYUZCN3Y4bkU4N3FYTm9MZHlUZUk3QVl4WXNSaXdFZGdpWWpvU0w3U0JoODhqaGFOTDVFRldJYWE1MnBaTg/callback has returned status code 204 -2024-12-06 07:15:04,896 - discord.client - DEBUG - Dispatching event app_command_completion -2024-12-06 07:15:08,312 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_UPDATE', 's': 49, 'op': 0, 'd': {'version': 1733449509283, 'type': 4, 'position': 11, 'permission_overwrites': [{'type': 0, 'id': '1293087512855838722', 'deny': '377957125121', 'allow': '0'}], 'parent_id': None, 'name': 'Server Logging', 'id': '1314407230375858356', 'guild_id': '1292805470117171231', 'flags': 0}} -2024-12-06 07:15:08,312 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:08,312 - discord.client - DEBUG - Dispatching event guild_channel_update -2024-12-06 07:15:08,319 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 50, 'op': 0, 'd': {'user_id': '536991182035746816', 'target_id': '1314407230375858356', 'reason': 'Wick sanitizing the channel after finding bypasses.', 'options': {'type': '0', 'role_name': 'Quarantine', 'id': '1293087512855838722'}, 'id': '1314407251603095632', 'changes': [{'new_value': '1293087512855838722', 'key': 'id'}, {'new_value': 0, 'key': 'type'}, {'new_value': '0', 'key': 'allow'}, {'new_value': '377957125121', 'key': 'deny'}], 'action_type': 13, 'guild_id': '1292805470117171231'}} -2024-12-06 07:15:08,320 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:08,320 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-06 07:15:08,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_UPDATE', 's': 51, 'op': 0, 'd': {'version': 1733449509602, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 50, 'permission_overwrites': [{'type': 0, 'id': '1293087512855838722', 'deny': '377957125121', 'allow': '0'}], 'parent_id': '1314407230375858356', 'nsfw': False, 'name': 'admin-logs', 'last_message_id': None, 'id': '1314407232577867868', 'guild_id': '1292805470117171231', 'flags': 0}} -2024-12-06 07:15:08,648 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:08,648 - discord.client - DEBUG - Dispatching event guild_channel_update -2024-12-06 07:15:08,676 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 52, 'op': 0, 'd': {'user_id': '536991182035746816', 'target_id': '1314407232577867868', 'reason': 'Wick sanitizing the channel after finding bypasses.', 'options': {'type': '0', 'role_name': 'Quarantine', 'id': '1293087512855838722'}, 'id': '1314407252697808907', 'changes': [{'new_value': '1293087512855838722', 'key': 'id'}, {'new_value': 0, 'key': 'type'}, {'new_value': '0', 'key': 'allow'}, {'new_value': '377957125121', 'key': 'deny'}], 'action_type': 13, 'guild_id': '1292805470117171231'}} -2024-12-06 07:15:08,676 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:08,676 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-06 07:15:08,831 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_UPDATE', 's': 53, 'op': 0, 'd': {'version': 1733449509807, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 51, 'permission_overwrites': [{'type': 0, 'id': '1293087512855838722', 'deny': '377957125121', 'allow': '0'}], 'parent_id': '1314407230375858356', 'nsfw': False, 'name': 'server-logs', 'last_message_id': None, 'id': '1314407234599522335', 'guild_id': '1292805470117171231', 'flags': 0}} -2024-12-06 07:15:08,831 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:08,831 - discord.client - DEBUG - Dispatching event guild_channel_update -2024-12-06 07:15:08,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 54, 'op': 0, 'd': {'user_id': '536991182035746816', 'target_id': '1314407234599522335', 'reason': 'Wick sanitizing the channel after finding bypasses.', 'options': {'type': '0', 'role_name': 'Quarantine', 'id': '1293087512855838722'}, 'id': '1314407253809434668', 'changes': [{'new_value': '1293087512855838722', 'key': 'id'}, {'new_value': 0, 'key': 'type'}, {'new_value': '0', 'key': 'allow'}, {'new_value': '377957125121', 'key': 'deny'}], 'action_type': 13, 'guild_id': '1292805470117171231'}} -2024-12-06 07:15:08,847 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:08,847 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-06 07:15:09,315 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 54. -2024-12-06 07:15:09,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-06 07:15:17,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_DELETE', 's': 55, 'op': 0, 'd': {'id': '1313300577555578890', 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-06 07:15:17,398 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:17,399 - discord.client - DEBUG - Dispatching event raw_message_delete -2024-12-06 07:15:48,367 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 56, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733449549, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-06 07:15:48,368 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:48,368 - discord.client - DEBUG - Dispatching event typing -2024-12-06 07:15:48,368 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-06 07:15:49,725 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 57, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:45:50.603000+00:00', 'pinned': False, 'nonce': '1314407419245232128', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407424890896415', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.about', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:15:49,726 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:49,726 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:15:49,726 - discord.client - DEBUG - Dispatching event command_error -2024-12-06 07:15:50,186 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 58, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:45:51.096000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407426958557317', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "about" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:15:50,187 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:50,187 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:15:50,223 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:15:50,223 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:15:50,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 59. -2024-12-06 07:15:50,864 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-06 07:15:53,348 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `about` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:15:53,350 - discord.client - ERROR - Ignoring exception in on_command_error -Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event - await coro(*args, **kwargs) - File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error - log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) - ^^^^^^^^^^^^^^^ -UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value -2024-12-06 07:15:54,169 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"about\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:15:54,170 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "about" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:45:51.096000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407426958557317', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:16:23,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 60, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:24.082000+00:00', 'pinned': False, 'nonce': '1314407559607615488', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407565312000173', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ping', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:23,198 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:23,199 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:23,199 - discord.client - DEBUG - Dispatching event command_error -2024-12-06 07:16:23,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 61, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:24.631000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407567614541898', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "ping" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:23,723 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:23,723 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:23,742 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"ping\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:23,743 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "ping" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:24.631000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407567614541898', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:16:24,559 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:24,559 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:24,652 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `ping` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:24,654 - discord.client - ERROR - Ignoring exception in on_command_error -Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event - await coro(*args, **kwargs) - File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error - log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) - ^^^^^^^^^^^^^^^ -UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value -2024-12-06 07:16:27,885 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 63, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:28.856000+00:00', 'pinned': False, 'nonce': '1314407579098546176', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407585335476267', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.serverinfo', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:27,886 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:27,886 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:27,886 - discord.client - DEBUG - Dispatching event command_error -2024-12-06 07:16:28,291 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 64, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:29.246000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407586971385998', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "serverinfo" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:28,291 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:28,291 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:28,302 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"serverinfo\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:28,302 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "serverinfo" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:29.246000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407586971385998', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:16:28,310 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:28,311 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:28,343 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `serverinfo` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:28,345 - discord.client - ERROR - Ignoring exception in on_command_error -Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event - await coro(*args, **kwargs) - File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error - log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) - ^^^^^^^^^^^^^^^ -UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value -2024-12-06 07:16:31,826 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 65. -2024-12-06 07:16:32,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-06 07:16:33,579 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 66, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:34.482000+00:00', 'pinned': False, 'nonce': '1314407599533195264', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407608932630540', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:33,580 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:33,580 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:33,580 - discord.client - DEBUG - Dispatching event command -2024-12-06 07:16:34,008 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:34,008 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:34,030 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Select a category below to view specific commands"},"fields":[{"inline":false,"name":"Prefix Commands","value":"Use . before commands (e.g. .help)"},{"inline":false,"name":"Slash Commands","value":"Use / to access slash commands"}],"color":3447003,"type":"rich","description":"Select a category from the dropdown menu below to see available commands.","title":"IndieGO Bot Help"}],"content":null,"components":[{"type":1,"components":[{"type":3,"custom_id":"2436ae955fdb2f644fa28f32848bc9b5","min_values":1,"max_values":1,"disabled":false,"placeholder":"Choose a category...","options":[{"label":"General","value":"General","default":false,"emoji":{"id":null,"name":"\ud83e\udd16"},"description":"General bot commands"},{"label":"Moderation","value":"Moderation","default":false,"emoji":{"id":null,"name":"\ud83d\udee1\ufe0f"},"description":"Moderation commands"},{"label":"Fun","value":"Fun","default":false,"emoji":{"id":null,"name":"\ud83c\udfae"},"description":"Fun commands"},{"label":"AI Assistant","value":"AI Assistant","default":false,"emoji":{"id":null,"name":"\ud83e\udde0"},"description":"AI-powered commands"},{"label":"Coding","value":"Coding","default":false,"emoji":{"id":null,"name":"\ud83d\udcbb"},"description":"Programming help commands"},{"label":"Reddit","value":"Reddit","default":false,"emoji":{"id":null,"name":"\ud83d\udd17"},"description":"Reddit commands"},{"label":"AutoMod","value":"AutoMod","default":false,"emoji":{"id":null,"name":"\ud83d\udd12"},"description":"AutoMod commands"},{"label":"DM Interaction","value":"DM Interaction","default":false,"emoji":{"id":null,"name":"\u2709\ufe0f"},"description":"DM interaction commands"},{"label":"Logging","value":"Logging","default":false,"emoji":{"id":null,"name":"\ud83d\udcdc"},"description":"Logging commands"},{"label":"Tickets","value":"Tickets","default":false,"emoji":{"id":null,"name":"\ud83c\udfab"},"description":"Ticketing commands"},{"label":"Voice","value":"Voice","default":false,"emoji":{"id":null,"name":"\ud83d\udd0a"},"description":"Voice channel commands"},{"label":"OCR","value":"OCR","default":false,"emoji":{"id":null,"name":"\ud83d\udcc4"},"description":"OCR commands"}]}]}],"tts":false} has returned 200 -2024-12-06 07:16:34,036 - discord.client - DEBUG - Dispatching event command_completion -2024-12-06 07:16:34,462 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 68, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:35.424000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407612883665036', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'help was executed by <@950609706760691752>.', 'content_scan_version': 0, 'color': 3066993}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:34,463 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:34,463 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:34,507 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":3066993,"type":"rich","description":"help was executed by <@950609706760691752>.","title":"Command Executed"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:34,507 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'help was executed by <@950609706760691752>.', 'color': 3066993, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:35.424000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407612883665036', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:16:38,201 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:38,202 - discord.client - DEBUG - Dispatching event interaction -2024-12-06 07:16:38,623 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:38,623 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-06 07:16:38,623 - discord.client - DEBUG - Dispatching event message_edit -2024-12-06 07:16:38,660 - discord.webhook.async_ - DEBUG - Webhook ID 1314407628344000542 with POST https://discord.com/api/v10/interactions/1314407628344000542/aW50ZXJhY3Rpb246MTMxNDQwNzYyODM0NDAwMDU0Mjo5Tk5HSEdzV21UeXhTZG1kVGxPakZ3S09Fa2JqbkhISEFyNlI1cXU4ZloxUlJHUDBJSDNwbVdMek9Qb2p2TW8xTWVpVm5lcXpFSWdoQXlNQjdtVmhKb1pnTnVyNkNqemJ4cW0zdWRkT2xZY3ZFNUxmMUlOaGF6SXVvZ1RHTm52Uw/callback has returned status code 204 -2024-12-06 07:16:41,280 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 71, 'op': 0, 'd': {'user': {'username': 'vi87659', 'public_flags': 0, 'id': '750762262708355122', 'global_name': '~+*EZ EIRA*+~', 'display_name': '~+*EZ EIRA*+~', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1197344326133502032', 'expires_at': None, 'asset': 'a_e90ebc0114e7bdc30353c8b11953ea41'}, 'avatar': 'ce90374e3aa2d70148cddc979a027e18'}, 'roles': ['1166279735983230976', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1170543505966370927', '1087734833318465587', '1088385891116003380', '1062251705921720411', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-31T21:23:39.626000+00:00', 'guild_id': '922005348670406667', 'flags': 106, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-06 07:16:41,280 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:41,280 - discord.client - DEBUG - Dispatching event user_update -2024-12-06 07:16:41,280 - discord.client - DEBUG - Dispatching event member_update -2024-12-06 07:16:41,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 72, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:42.653000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407643204554775', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar Changed', 'thumbnail': {'width': 0, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/bSYNBTrvtyW-ohMqGUHAQw61zqGFcSsmxLv6VdhI-S8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png', 'height': 0, 'flags': 0}, 'image': {'width': 0, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'height': 0, 'flags': 0}, 'description': '<@750762262708355122> changed their avatar.', 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407234599522335', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:41,691 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:41,692 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:41,738 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407234599522335/messages with {"embeds":[{"image":{"url":"https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024"},"thumbnail":{"url":"https://cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png?size=1024"},"color":3447003,"type":"rich","description":"<@750762262708355122> changed their avatar.","title":"Avatar Changed"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:41,738 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407234599522335/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Avatar Changed', 'description': '<@750762262708355122> changed their avatar.', 'color': 3447003, 'image': {'url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'width': 0, 'height': 0, 'flags': 0}, 'thumbnail': {'url': 'https://cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/bSYNBTrvtyW-ohMqGUHAQw61zqGFcSsmxLv6VdhI-S8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png', 'width': 0, 'height': 0, 'flags': 0}}], 'timestamp': '2024-12-06T01:46:42.653000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407643204554775', 'channel_id': '1314407234599522335', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:16:42,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 73, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:42.653000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407643204554775', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar Changed', 'thumbnail': {'width': 0, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/bSYNBTrvtyW-ohMqGUHAQw61zqGFcSsmxLv6VdhI-S8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png', 'height': 0, 'flags': 0}, 'image': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'height': 256, 'flags': 0}, 'description': '<@750762262708355122> changed their avatar.', 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407234599522335', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:42,095 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:42,095 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-06 07:16:42,095 - discord.client - DEBUG - Dispatching event message_edit -2024-12-06 07:16:43,489 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 74, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:44.412000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1314407650582200474', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-06T01:46:42.339884+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 750762262708355122'}, 'description': '<@750762262708355122>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'name': 'vi87659', 'icon_url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-06 07:16:43,489 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:43,490 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:43,629 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 75, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:44.412000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1314407650582200474', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-06T01:46:42.339000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 750762262708355122'}, 'description': '<@750762262708355122>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'name': 'vi87659', 'icon_url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} -2024-12-06 07:16:43,630 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:43,630 - discord.client - DEBUG - Dispatching event raw_message_edit -2024-12-06 07:16:43,630 - discord.client - DEBUG - Dispatching event message_edit -2024-12-06 07:16:44,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 76, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:45.185000+00:00', 'pinned': False, 'nonce': '1314407647566364672', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407653824270347', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.profil;e', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:44,217 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:44,218 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:44,218 - discord.client - DEBUG - Dispatching event command_error -2024-12-06 07:16:44,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 77, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:45.580000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407655481278565', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "profil;e" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:44,612 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:44,613 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:44,642 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"profil;e\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:44,642 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "profil;e" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:45.580000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407655481278565', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:16:44,710 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:44,710 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:44,755 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `profil;e` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:44,758 - discord.client - ERROR - Ignoring exception in on_command_error -Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event - await coro(*args, **kwargs) - File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error - log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) - ^^^^^^^^^^^^^^^ -UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value -2024-12-06 07:16:47,322 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 79, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:48.288000+00:00', 'pinned': False, 'nonce': '1314407660782616576', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407666839457853', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.profile', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:47,322 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:47,323 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:47,323 - discord.client - DEBUG - Dispatching event command_error -2024-12-06 07:16:47,726 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:47,726 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:47,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 81, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:48.691000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407668529762435', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "profile" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:47,738 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:47,738 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:47,761 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `profile` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:47,764 - discord.client - ERROR - Ignoring exception in on_command_error -Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event - await coro(*args, **kwargs) - File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error - log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) - ^^^^^^^^^^^^^^^ -UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value -2024-12-06 07:16:47,773 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"profile\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:47,774 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "profile" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:48.691000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407668529762435', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:16:52,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 82, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733449613, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:52,378 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:52,378 - discord.client - DEBUG - Dispatching event typing -2024-12-06 07:16:52,378 - discord.client - DEBUG - Dispatching event raw_typing -2024-12-06 07:16:53,035 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 83, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:53.984000+00:00', 'pinned': False, 'nonce': '1314407684774035456', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407690729951232', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': ',support', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:53,035 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:53,036 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:58,389 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 84, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:59.347000+00:00', 'pinned': False, 'nonce': '1314407707200978944', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407713224134656', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.support', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:58,389 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:58,389 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:58,389 - discord.client - DEBUG - Dispatching event command_error -2024-12-06 07:16:58,823 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 85, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:59.715000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407714767638600', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "support" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:16:58,823 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:58,823 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:58,826 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:16:58,826 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:16:58,856 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"support\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:58,856 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "support" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:59.715000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407714767638600', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:16:58,918 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `support` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:16:58,921 - discord.client - ERROR - Ignoring exception in on_command_error -Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event - await coro(*args, **kwargs) - File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error - log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) - ^^^^^^^^^^^^^^^ -UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value -2024-12-06 07:17:01,542 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 87, 'op': 0, 'd': {'user': {'username': 'vi87659', 'public_flags': 0, 'id': '750762262708355122', 'global_name': '~+*EZ EIRA*+~', 'display_name': '~+*EZ EIRA*+~', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1217625794382401577', 'expires_at': None, 'asset': 'a_9867b1ba56601e745cfe741e6b00b835'}, 'avatar': 'ce90374e3aa2d70148cddc979a027e18'}, 'roles': ['1166279735983230976', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1170543505966370927', '1087734833318465587', '1088385891116003380', '1062251705921720411', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-31T21:23:39.626000+00:00', 'guild_id': '922005348670406667', 'flags': 106, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} -2024-12-06 07:17:01,543 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:17:01,543 - discord.client - DEBUG - Dispatching event user_update -2024-12-06 07:17:01,543 - discord.client - DEBUG - Dispatching event member_update -2024-12-06 07:17:04,589 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 88, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:47:05.550000+00:00', 'pinned': False, 'nonce': '1314407733226635264', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407739241529474', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.clear', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:17:04,589 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:17:04,590 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:17:04,590 - discord.client - DEBUG - Dispatching event command_error -2024-12-06 07:17:05,013 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 89, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:47:05.924000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407740810068061', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "clear" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} -2024-12-06 07:17:05,013 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:17:05,013 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:17:05,063 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"clear\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:17:05,063 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "clear" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:47:05.924000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407740810068061', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} -2024-12-06 07:17:05,073 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:17:05,073 - discord.client - DEBUG - Dispatching event message -2024-12-06 07:17:05,107 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `clear` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 -2024-12-06 07:17:05,109 - discord.client - ERROR - Ignoring exception in on_command_error -Traceback (most recent call last): - File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event - await coro(*args, **kwargs) - File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error - log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) - ^^^^^^^^^^^^^^^ -UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value -2024-12-06 07:17:13,082 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 90. -2024-12-06 07:17:13,374 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-06 07:17:54,347 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 90. -2024-12-06 07:17:54,637 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-06 07:18:35,602 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 90. -2024-12-06 07:18:35,895 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-06 07:19:01,156 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_EMOJIS_UPDATE', 's': 91, 'op': 0, 'd': {'guild_id': '1292805470117171231', 'emojis': [{'version': 1733449742032, 'roles': [], 'require_colons': True, 'name': 'IndieGO', 'managed': False, 'id': '1314408227546333194', 'available': True, 'animated': False}]}} -2024-12-06 07:19:01,157 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:19:01,157 - discord.client - DEBUG - Dispatching event guild_emojis_update -2024-12-06 07:19:01,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 92, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1314408227546333194', 'id': '1314408228263694348', 'changes': [{'new_value': 'IndieGO', 'key': 'name'}], 'action_type': 60, 'guild_id': '1292805470117171231'}} -2024-12-06 07:19:01,192 - discord.client - DEBUG - Dispatching event socket_event_type -2024-12-06 07:19:01,193 - discord.client - DEBUG - Dispatching event audit_log_entry_create -2024-12-06 07:19:16,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 92. -2024-12-06 07:19:17,154 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} -2024-12-06 07:19:58,105 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 92. -2024-12-06 07:19:58,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:00:04,295 - IndieGOBot - INFO - Starting bot... +2024-11-29 16:00:04,295 - discord.client - INFO - logging in using static token +2024-11-29 16:00:05,294 - IndieGOBot - INFO - Starting bot setup... +2024-11-29 16:00:05,294 - IndieGOBot - INFO - Syncing command tree... +2024-11-29 16:00:05,768 - IndieGOBot - INFO - Command tree synced successfully +2024-11-29 16:00:05,771 - IndieGOBot - INFO - Loaded extension: cogs.general +2024-11-29 16:00:05,772 - IndieGOBot - INFO - Loaded extension: cogs.moderation +2024-11-29 16:00:05,774 - IndieGOBot - INFO - Loaded extension: cogs.fun +2024-11-29 16:00:05,774 - IndieGOBot - INFO - Loaded extension: cogs.admin +2024-11-29 16:00:05,775 - IndieGOBot - INFO - Loaded extension: cogs.tickets +2024-11-29 16:00:05,776 - IndieGOBot - INFO - Loaded extension: cogs.logging +2024-11-29 16:13:13,275 - IndieGOBot - INFO - Starting bot... +2024-11-29 16:13:13,276 - discord.client - INFO - logging in using static token +2024-11-29 16:13:15,350 - IndieGOBot - INFO - Starting bot setup... +2024-11-29 16:13:15,350 - IndieGOBot - INFO - Syncing command tree... +2024-11-29 16:13:15,851 - IndieGOBot - INFO - Command tree synced successfully +2024-11-29 16:13:15,854 - IndieGOBot - INFO - Loaded extension: cogs.general +2024-11-29 16:13:15,857 - IndieGOBot - INFO - Loaded extension: cogs.moderation +2024-11-29 16:13:15,859 - IndieGOBot - INFO - Loaded extension: cogs.fun +2024-11-29 16:13:15,861 - IndieGOBot - INFO - Loaded extension: cogs.admin +2024-11-29 16:13:15,862 - IndieGOBot - INFO - Loaded extension: cogs.tickets +2024-11-29 16:13:15,864 - IndieGOBot - INFO - Loaded extension: cogs.logging +2024-11-29 16:14:59,674 - discord.client - DEBUG - on_error has successfully been registered as an event +2024-11-29 16:14:59,675 - asyncio - DEBUG - Using proactor: IocpProactor +2024-11-29 16:14:59,676 - IndieGOBot - INFO - Starting bot... +2024-11-29 16:14:59,676 - discord.client - INFO - logging in using static token +2024-11-29 16:15:00,190 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-11-29 16:15:00,194 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-11-29 16:15:00,194 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-11-29 16:15:00,815 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-11-29 16:15:00,815 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-11-29 16:15:00,816 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['productivity', 'Moderation', 'fun', 'Community', 'Programming'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-11-29 16:15:00,816 - IndieGOBot - INFO - Starting bot setup... +2024-11-29 16:15:00,817 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-11-29 16:15:00,819 - IndieGOBot - INFO - Successfully loaded extension: cogs.general +2024-11-29 16:15:00,819 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-11-29 16:15:00,820 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation +2024-11-29 16:15:00,820 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-11-29 16:15:00,823 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun +2024-11-29 16:15:00,823 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-11-29 16:15:00,824 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin +2024-11-29 16:15:00,824 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-11-29 16:15:00,825 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets +2024-11-29 16:15:00,825 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-11-29 16:15:00,825 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging +2024-11-29 16:15:00,826 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-11-29 16:15:03,611 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): huggingface.co:443 +2024-11-29 16:15:03,898 - urllib3.connectionpool - DEBUG - https://huggingface.co:443 "HEAD /nvidia/Llama-3.1-Nemotron-70B-Instruct-HF/resolve/main/tokenizer_config.json HTTP/11" 200 0 +2024-11-29 16:15:04,558 - urllib3.connectionpool - DEBUG - https://huggingface.co:443 "HEAD /nvidia/Llama-3.1-Nemotron-70B-Instruct-HF/resolve/main/config.json HTTP/11" 200 0 +2024-11-29 16:24:06,704 - discord.client - DEBUG - on_error has successfully been registered as an event +2024-11-29 16:24:06,705 - asyncio - DEBUG - Using proactor: IocpProactor +2024-11-29 16:24:06,708 - IndieGOBot - INFO - Starting bot... +2024-11-29 16:24:06,708 - discord.client - INFO - logging in using static token +2024-11-29 16:24:07,307 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-11-29 16:24:07,307 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-11-29 16:24:07,308 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-11-29 16:24:07,810 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-11-29 16:24:07,810 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-11-29 16:24:07,810 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['fun', 'Moderation', 'Programming', 'productivity', 'Community'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-11-29 16:24:07,811 - IndieGOBot - INFO - Starting bot setup... +2024-11-29 16:24:07,811 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-11-29 16:24:07,813 - IndieGOBot - INFO - Successfully loaded extension: cogs.general +2024-11-29 16:24:07,813 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-11-29 16:24:07,814 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation +2024-11-29 16:24:07,814 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-11-29 16:24:07,816 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun +2024-11-29 16:24:07,816 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-11-29 16:24:07,817 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin +2024-11-29 16:24:07,817 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-11-29 16:24:07,819 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets +2024-11-29 16:24:07,819 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-11-29 16:24:07,820 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging +2024-11-29 16:24:07,821 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-11-29 16:24:12,801 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False +2024-11-29 16:24:12,802 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' +2024-11-29 16:24:13,110 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant +2024-11-29 16:24:13,111 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help +2024-11-29 16:24:15,748 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help +2024-11-29 16:24:15,749 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help +2024-11-29 16:24:15,757 - IndieGOBot - ERROR - Failed to load extension cogs.help +2024-11-29 16:24:15,757 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-29 16:24:15,758 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. +2024-11-29 16:24:15,758 - IndieGOBot - ERROR - Traceback: +2024-11-29 16:24:15,760 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup + await bot.add_cog(Help(bot)) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog + cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject + raise e + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject + bot.add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command + super().add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command + raise CommandRegistrationError(command.name) +discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. + +2024-11-29 16:24:15,761 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base +2024-11-29 16:24:15,767 - IndieGOBot - INFO - Successfully loaded extension: cogs.base +2024-11-29 16:24:15,768 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors +2024-11-29 16:24:15,774 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors +2024-11-29 16:24:15,774 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod +2024-11-29 16:24:15,781 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod +2024-11-29 16:24:15,781 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction +2024-11-29 16:24:15,788 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction +2024-11-29 16:24:15,788 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel +2024-11-29 16:24:15,794 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel +2024-11-29 16:24:15,794 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr +2024-11-29 16:24:15,918 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr +2024-11-29 16:24:15,918 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit +2024-11-29 16:24:16,047 - IndieGOBot - ERROR - Failed to load extension cogs.reddit +2024-11-29 16:24:16,047 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-29 16:24:16,047 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. +2024-11-29 16:24:16,047 - IndieGOBot - ERROR - Traceback: +2024-11-29 16:24:16,050 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup + await bot.add_cog(Reddit(bot)) + ^^^^^^^^^^^ + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ + self.reddit = praw.Reddit( + ^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped + return func(**dict(zip(_old_args, args)), **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ + raise MissingRequiredAttributeException( +praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +2024-11-29 16:24:16,050 - IndieGOBot - INFO - Syncing command tree... +2024-11-29 16:24:16,758 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"help","description":"Show bot help and commands","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 +2024-11-29 16:24:16,759 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). +2024-11-29 16:24:16,759 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1308554160815476778', 'application_id': '1304755116255088670', 'version': '1311998121030586388', 'default_member_permissions': None, 'type': 1, 'name': 'help', 'name_localizations': None, 'description': 'Show bot help and commands', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] +2024-11-29 16:24:16,760 - IndieGOBot - INFO - Command tree synced successfully +2024-11-29 16:24:17,276 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ +2024-11-29 16:24:17,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-0l92",{"micros":0.0}]']}} +2024-11-29 16:24:17,279 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. +2024-11-29 16:24:17,617 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:24:17,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '5597777538f910b79b5ab5f775611df8', 'resume_gateway_url': 'wss://gateway-us-east1-d.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-d-0l92",{"micros":106848,"calls":["id_created",{"micros":823,"calls":[]},"session_lookup_time",{"micros":4543,"calls":[]},"session_lookup_finished",{"micros":17,"calls":[]},"discord-sessions-prd-1-279",{"micros":101172,"calls":["start_session",{"micros":80060,"calls":["discord-api-rpc-6cf69f8f4b-jzh9b",{"micros":76278,"calls":["get_user",{"micros":6162},"get_guilds",{"micros":8703},"send_scheduled_deletion_message",{"micros":7},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":5}]}]},"starting_guild_connect",{"micros":36,"calls":[]},"presence_started",{"micros":297,"calls":[]},"guilds_started",{"micros":112,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":20640,"calls":[]},"connect_finished",{"micros":20646,"calls":[]},"build_ready",{"micros":18,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":1,"calls":[]},"split_ready",{"micros":0,"calls":[]}]}]}]']}} +2024-11-29 16:24:17,739 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:17,739 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 5597777538f910b79b5ab5f775611df8). +2024-11-29 16:24:17,741 - discord.client - DEBUG - Dispatching event connect +2024-11-29 16:24:17,741 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 2, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-29 16:24:17,742 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:17,742 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. +2024-11-29 16:24:18,034 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 4, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'guild_id': '1276215268791550055', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-29 16:24:18,037 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,038 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. +2024-11-29 16:24:18,038 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 5, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'guild_id': '1285681923464892437', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-29 16:24:18,038 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,038 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. +2024-11-29 16:24:18,042 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,077 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,081 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 8, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'guild_id': '1288026038189690921', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-29 16:24:18,081 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,081 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. +2024-11-29 16:24:18,086 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 10, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'guild_id': '1292805470117171231', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-29 16:24:18,087 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,087 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. +2024-11-29 16:24:18,215 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 12, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'guild_id': '1276213423038005419', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-29 16:24:18,217 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,218 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. +2024-11-29 16:24:18,241 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,245 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 14, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'guild_id': '1004621739893993573', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-29 16:24:18,246 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:18,246 - discord.state - DEBUG - GUILD_MEMBER_UPDATE referencing an unknown member ID: 1304755116255088670. Discarding. +2024-11-29 16:24:18,305 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:19,042 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:19,050 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 16:24:19,308 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:19,314 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 16:24:19,579 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:19,589 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 16:24:19,837 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:19,844 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 16:24:20,026 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:20,034 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 16:24:20,059 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:20,062 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. +2024-11-29 16:24:20,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 22, 'op': 0, 'd': {'nonce': '9a01f00d4232b9cf058a60bc275453d0', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 16:24:20,063 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:20,064 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. +2024-11-29 16:24:20,064 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 23, 'op': 0, 'd': {'nonce': '565cecb508afb1d806425792dde139e4', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 16:24:20,064 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:20,064 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. +2024-11-29 16:24:20,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 24, 'op': 0, 'd': {'nonce': '299e8c2810cd4f745e942e7962d5f216', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 16:24:20,066 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:20,066 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. +2024-11-29 16:24:20,311 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 16:24:20,311 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 16:24:20,312 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 16:24:20,312 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 16:24:20,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 25, 'op': 0, 'd': {'nonce': '6f84c96e71aaaa899b0663d30b2e0097', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': None, 'identity_guild_id': '1177040176531378256', 'identity_enabled': None, 'badge': None}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 16:24:20,386 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:20,386 - discord.state - DEBUG - Processed a chunk for 22 members in guild ID 1292805470117171231. +2024-11-29 16:24:20,386 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 16:24:20,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 26, 'op': 0, 'd': {'nonce': '21b6e59eea7abc9d8f9a4aa769eb5936', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 16:24:20,906 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:20,906 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. +2024-11-29 16:24:20,906 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 16:24:21,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 27, 'op': 0, 'd': {'nonce': 'ff08677f294eeda34c5fa690bfc6508a', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 16:24:21,397 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:21,397 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. +2024-11-29 16:24:21,398 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 16:24:21,398 - discord.client - DEBUG - Dispatching event ready +2024-11-29 16:24:21,398 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! +2024-11-29 16:24:21,398 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status +2024-11-29 16:24:58,538 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 27. +2024-11-29 16:24:58,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:24:59,869 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 28, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:00.693000+00:00', 'pinned': False, 'nonce': '1312008906926456832', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312008912525852773', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:24:59,869 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:24:59,870 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:24:59,870 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:25:00,460 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 29, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:01.291000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312008915034050620', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:25:00,460 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:25:00,460 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:25:02,484 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-29 16:25:02,485 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). +2024-11-29 16:25:02,485 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T10:55:01.291000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312008915034050620', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:25:02,485 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:25:31,010 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 30, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:31.830000+00:00', 'pinned': False, 'nonce': '1312009037516111872', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009043124162570', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ban', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:25:31,010 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:25:31,010 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:25:31,011 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:25:31,448 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"You must specify a member to ban.","title":"Error"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:25:31,449 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Error', 'description': 'You must specify a member to ban.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:55:32.308000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009045128773632', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:25:31,449 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:25:31,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 31, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:32.308000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009045128773632', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Error', 'description': 'You must specify a member to ban.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:25:31,502 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:25:31,502 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:25:39,801 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 31. +2024-11-29 16:25:40,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:25:43,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 32, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:44.698000+00:00', 'pinned': False, 'nonce': '1312009091769434112', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009097096462467', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.mute', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:25:43,871 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:25:43,872 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:25:43,872 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:25:44,374 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"You must specify a member to mute.","title":"Error"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:25:44,375 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Error', 'description': 'You must specify a member to mute.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:55:45.206000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009099227168868', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:25:44,375 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:25:44,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 33, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:45.206000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009099227168868', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Error', 'description': 'You must specify a member to mute.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:25:44,403 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:25:44,404 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:25:53,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 34, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732877754, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-11-29 16:25:53,909 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:25:53,909 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:25:53,909 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:25:56,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 35, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:57.761000+00:00', 'pinned': False, 'nonce': '1312009145586548736', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009151886397490', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.code a cube rotate', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:25:56,929 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:25:56,930 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:25:56,930 - discord.client - DEBUG - Dispatching event command_error +2024-11-29 16:25:57,477 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 36, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:55:58.242000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009153903984692', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:25:57,477 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:25:57,478 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:25:57,549 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"The command you tried to use does not exist. Please check the command and try again.","title":"Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:25:57,550 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:55:58.242000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009153903984692', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:26:11,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 37, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:12.647000+00:00', 'pinned': False, 'nonce': '1312009208924733440', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009214322806866', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.gift', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:11,812 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:11,813 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:26:11,813 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:26:11,813 - discord.client - DEBUG - Dispatching event command_error +2024-11-29 16:26:12,315 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"You're missing a required argument: `tier`.\nPlease provide all required arguments and try again.","title":"Missing Required Argument"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:26:12,315 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Missing Required Argument', 'description': "You're missing a required argument: `tier`.\nPlease provide all required arguments and try again.", 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:56:13.116000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009216289935402', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:26:12,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 38, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:13.116000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009216289935402', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Missing Required Argument', 'description': "You're missing a required argument: `tier`.\nPlease provide all required arguments and try again.", 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:12,335 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:12,335 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:26:16,356 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 39, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732877777, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:16,356 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:16,358 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:26:16,358 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:26:17,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 40, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:18.006000+00:00', 'pinned': False, 'nonce': '1312009231422980096', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009236800208906', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.tier', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:17,176 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:17,176 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:26:17,178 - discord.client - DEBUG - Dispatching event command_error +2024-11-29 16:26:17,598 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"The command you tried to use does not exist. Please check the command and try again.","title":"Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:26:17,599 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:56:18.451000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009238666805258', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:26:17,640 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 41, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:18.451000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009238666805258', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:17,641 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:17,641 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:26:21,065 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 41. +2024-11-29 16:26:21,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:26:27,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 42, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732877788, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:27,966 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:27,967 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:26:27,967 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:26:28,411 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 43, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:29.229000+00:00', 'pinned': False, 'nonce': '1312009278269161472', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009283873017887', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:28,411 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:28,411 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:26:28,412 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:26:28,955 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do programmers hate nature? It has too many bugs.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:26:28,956 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers hate nature? It has too many bugs.', 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:56:29.703000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009285860851735', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:26:28,956 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:26:28,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 44, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:29.703000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009285860851735', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers hate nature? It has too many bugs.', 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:28,958 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:28,958 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:26:34,343 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INVITE_CREATE', 's': 45, 'op': 0, 'd': {'uses': 0, 'type': 0, 'temporary': False, 'max_uses': 0, 'max_age': 604800, 'inviter': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'guild_id': '1292805470117171231', 'expires_at': '2024-12-06T10:56:35+00:00', 'created_at': '2024-11-29T10:56:35.163545+00:00', 'code': 'QZQMdsA3', 'channel_id': '1295427012722298882'}} +2024-11-29 16:26:34,343 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:34,343 - discord.client - DEBUG - Dispatching event invite_create +2024-11-29 16:26:34,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INVITE_CREATE', 's': 46, 'op': 0, 'd': {'uses': 0, 'type': 0, 'temporary': False, 'max_uses': 0, 'max_age': 604800, 'inviter': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'guild_id': '1292805470117171231', 'expires_at': '2024-12-06T10:56:35+00:00', 'created_at': '2024-11-29T10:56:35.173086+00:00', 'code': 'mAYQzS85', 'channel_id': '1295427012722298882'}} +2024-11-29 16:26:34,345 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:34,345 - discord.client - DEBUG - Dispatching event invite_create +2024-11-29 16:26:34,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 47, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': None, 'id': '1312009308837380156', 'changes': [{'new_value': 'QZQMdsA3', 'key': 'code'}, {'new_value': '1295427012722298882', 'key': 'channel_id'}, {'new_value': '950609706760691752', 'key': 'inviter_id'}, {'new_value': 0, 'key': 'uses'}, {'new_value': 0, 'key': 'max_uses'}, {'new_value': 604800, 'key': 'max_age'}, {'new_value': False, 'key': 'temporary'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 40, 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:34,352 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:34,352 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-11-29 16:26:34,381 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 48, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': None, 'id': '1312009308904624178', 'changes': [{'new_value': 'mAYQzS85', 'key': 'code'}, {'new_value': '1295427012722298882', 'key': 'channel_id'}, {'new_value': '950609706760691752', 'key': 'inviter_id'}, {'new_value': 0, 'key': 'uses'}, {'new_value': 0, 'key': 'max_uses'}, {'new_value': 604800, 'key': 'max_age'}, {'new_value': False, 'key': 'temporary'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 40, 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:34,382 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:34,382 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-11-29 16:26:50,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 49, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732877810, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:50,060 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:50,061 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:26:50,061 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:26:50,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 50, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:51.641000+00:00', 'pinned': False, 'nonce': '1312009372510978048', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009377875755049', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ping', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:50,803 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:50,804 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:26:50,804 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:26:51,315 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Pong! 343ms","components":[],"tts":false} has returned 200 +2024-11-29 16:26:51,315 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Pong! 343ms', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T10:56:52.125000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009379905667123', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:26:51,316 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:26:51,324 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 51, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:52.125000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009379905667123', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Pong! 343ms', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:51,324 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:51,325 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:26:58,024 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 52, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732877818, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:58,024 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:58,024 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:26:58,024 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:26:58,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 53, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:59.424000+00:00', 'pinned': False, 'nonce': '1312009404907782144', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009410520023102', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.quote', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:58,611 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:58,611 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:26:58,612 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:26:59,023 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":10181046,"type":"rich","description":"When to use iterative development? You should use iterative development only on projects that you want to succeed. \u2013 Martin Fowler","title":"Inspirational Quote"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:26:59,024 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'When to use iterative development? You should use iterative development only on projects that you want to succeed. Martin Fowler', 'color': 10181046, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:56:59.886000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009412457529374', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:26:59,024 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:26:59,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 54, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:56:59.886000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009412457529374', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'When to use iterative development? You should use iterative development only on projects that you want to succeed. Martin Fowler', 'content_scan_version': 0, 'color': 10181046}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:26:59,056 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:26:59,056 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:27:02,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 54. +2024-11-29 16:27:02,687 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:27:10,637 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 55, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:57:11.431000+00:00', 'pinned': False, 'nonce': '1312009455113601024', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009460881031188', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-11-29 16:27:10,637 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:27:10,638 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:27:10,638 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:27:11,039 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1285331307228037291/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:27:11,039 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1285331307228037291/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-11-29T10:57:11.866000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312009462705557515', 'channel_id': '1285331307228037291', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:27:11,040 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:27:11,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 56, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T10:57:11.866000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312009462705557515', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-11-29 16:27:11,066 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:27:11,067 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:27:43,595 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-29 16:27:43,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:28:24,862 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-29 16:28:25,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:29:06,126 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-29 16:29:06,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:29:47,387 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-29 16:29:47,741 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:30:28,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-29 16:30:28,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:31:09,909 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-29 16:31:10,273 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:31:51,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-29 16:31:51,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:32:32,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-29 16:32:32,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:33:13,688 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-29 16:33:14,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:33:54,951 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-29 16:33:55,298 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:34:14,859 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 57, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:04:15.678000+00:00', 'pinned': False, 'nonce': '1312011234597404672', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312011240301658112', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.serverinfo', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:34:14,859 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:34:14,859 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:34:14,859 - discord.client - DEBUG - Dispatching event command_error +2024-11-29 16:34:15,358 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"The command you tried to use does not exist. Please check the command and try again.","title":"Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:34:15,358 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T11:04:16.183000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312011242420043816', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:34:15,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 58, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:04:16.183000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312011242420043816', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:34:15,361 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:34:15,361 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:34:36,207 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 58. +2024-11-29 16:34:36,564 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:34:40,866 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:34:40,867 - discord.client - DEBUG - Dispatching event interaction +2024-11-29 16:34:41,389 - discord.webhook.async_ - DEBUG - Webhook ID 1312011348640530453 with POST https://discord.com/api/v10/interactions/1312011348640530453/aW50ZXJhY3Rpb246MTMxMjAxMTM0ODY0MDUzMDQ1MzppY0x4R0lteUhHVXJuVmVxZEp2MGoyelZ5THhBVmVpRXFGZHN1V3A4WXU5bDB2ODNXQ1dRTEpvYjlSS3k2ejNCdUlhcU54U0RmRWxVeVlyRzYycmxubzc0VXhYQTJ0eUczVFh0RmZPNThUaGVkRHNRaE1Zdkx4VnNwb1BvWUVoZg/callback has returned status code 204 +2024-11-29 16:34:41,390 - discord.client - DEBUG - Dispatching event app_command_completion +2024-11-29 16:34:41,401 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 60, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T11:04:42.144000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312011343020163072', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'ping', 'id': '1312011348640530453', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'ping', 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312011348640530453'}, 'id': '1312011351308111953', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Pong! 355ms', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670', 'guild_id': '1292805470117171231'}} +2024-11-29 16:34:41,402 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:34:41,402 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:35:17,462 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. +2024-11-29 16:35:17,808 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:35:58,727 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. +2024-11-29 16:35:59,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:36:39,983 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. +2024-11-29 16:36:40,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:37:21,244 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. +2024-11-29 16:37:21,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:38:02,502 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. +2024-11-29 16:38:02,866 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:38:43,756 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. +2024-11-29 16:38:44,108 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:39:25,015 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. +2024-11-29 16:39:25,361 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:40:06,275 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. +2024-11-29 16:40:06,620 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:40:47,540 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. +2024-11-29 16:40:47,981 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:41:28,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. +2024-11-29 16:41:29,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:42:10,062 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 60. +2024-11-29 16:42:10,419 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:42:18,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 61, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732878739, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-11-29 16:42:18,858 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:42:18,859 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:42:18,859 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:42:20,292 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 62, 'op': 0, 'd': {'type': 19, 'tts': False, 'timestamp': '2024-11-29T11:12:21.073000+00:00', 'referenced_message': {'type': 0, 'tts': False, 'timestamp': '2024-11-19T22:25:11.292000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1308558722511016006', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Tickets Commands', 'fields': [{'value': 'ticket - Create a ticket\nsetup_logs - Setup logging channels', 'name': 'Commands', 'inline': False}], 'description': 'Here are the commands available in the Tickets category:', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': '2024-11-19T22:25:14.102000+00:00', 'content': '', 'components': [{'type': 1, 'id': 1, 'components': [{'type': 3, 'placeholder': 'Choose a category...', 'options': [{'value': 'Programming', 'label': 'Programming', 'description': 'Commands related to programming help'}, {'value': 'Moderation', 'label': 'Moderation', 'description': 'Commands for server moderation'}, {'value': 'Fun', 'label': 'Fun', 'description': 'Fun commands'}, {'value': 'Admin', 'label': 'Admin', 'description': 'Administrative commands'}, {'value': 'Tickets', 'label': 'Tickets', 'description': 'Ticket management commands'}, {'value': 'AI-Developer Assistance', 'label': 'AI-Developer Assistance', 'description': 'AI-powered developer assistance commands'}], 'min_values': 1, 'max_values': 1, 'id': 2, 'custom_id': '9deef0e24f807d53094a65e66c7f68f6'}]}], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}, 'pinned': False, 'nonce': '1312013270164439040', 'message_reference': {'type': 0, 'message_id': '1308558722511016006', 'guild_id': '1292805470117171231', 'channel_id': '1292805471643766929'}, 'mentions': [{'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'member': {'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013276195979294', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '<@752797478394527835>', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:42:20,293 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:42:20,293 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:42:48,859 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 63, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732878769, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-11-29 16:42:48,860 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:42:48,860 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:42:48,860 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:42:49,346 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 64, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:12:50.155000+00:00', 'pinned': False, 'nonce': '1312013392675864576', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013398174859315', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:42:49,346 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:42:49,347 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:42:49,347 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:42:49,895 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-29 16:42:49,895 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:12:50.713000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013400515022980', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:42:49,896 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:42:49,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 65, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:12:50.713000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013400515022980', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:42:49,904 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:42:49,905 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:42:51,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 65. +2024-11-29 16:42:51,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:42:59,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 66, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:00.669000+00:00', 'pinned': False, 'nonce': '1312013307908980736', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013442273644586', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:42:59,918 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:42:59,919 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:42:59,919 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:43:00,371 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 67, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:01.179000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013444412604457', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:43:00,371 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:00,371 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:43:00,385 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-29 16:43:00,386 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:13:01.179000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013444412604457', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:43:00,387 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:43:07,456 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 68, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:08.264000+00:00', 'pinned': False, 'nonce': '1312013339601141760', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013474129248297', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.quote', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:43:07,457 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:07,457 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:43:07,457 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:43:07,880 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":10181046,"type":"rich","description":"Optimism is an occupational hazard of programming: feedback is the treatment. \u2013 Kent Beck","title":"Inspirational Quote"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:43:07,880 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'Optimism is an occupational hazard of programming: feedback is the treatment. Kent Beck', 'color': 10181046, 'content_scan_version': 0}], 'timestamp': '2024-11-29T11:13:08.711000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013476004106243', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:43:07,881 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:43:07,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 69, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:08.711000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013476004106243', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'Optimism is an occupational hazard of programming: feedback is the treatment. Kent Beck', 'content_scan_version': 0, 'color': 10181046}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:43:07,897 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:07,897 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:43:19,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 70, 'op': 0, 'd': {'user_id': '752797478394527835', 'timestamp': 1732878800, 'member': {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-11-29 16:43:19,345 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:19,346 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:43:19,346 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:43:19,708 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 71, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:20.509000+00:00', 'pinned': False, 'nonce': '1312013390960394240', 'mentions': [{'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013525488766986', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ban <@950609706760691752>', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:43:19,708 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:19,709 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:43:19,709 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:43:19,709 - discord.client - DEBUG - Dispatching event command_error +2024-11-29 16:43:20,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 72, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:21.037000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312013527703224321', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Missing Permissions', 'description': 'You do not have the required permissions to use this command.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 16:43:20,284 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:20,284 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:43:20,296 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"You do not have the required permissions to use this command.","title":"Missing Permissions"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:43:20,296 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Missing Permissions', 'description': 'You do not have the required permissions to use this command.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-11-29T11:13:21.037000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013527703224321', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:43:25,882 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 73, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732878806, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-11-29 16:43:25,884 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:25,884 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:43:25,884 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:43:32,596 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. +2024-11-29 16:43:32,951 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:43:44,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 74, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:44.800000+00:00', 'pinned': False, 'nonce': '1312013620825030656', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013627372601435', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': []}} +2024-11-29 16:43:44,056 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:44,056 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:43:44,057 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:43:44,791 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-29 16:43:44,791 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-11-29T11:13:45.435000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013630035722273', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:43:44,791 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:43:44,814 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 75, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:45.435000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013630035722273', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-29 16:43:44,814 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:44,815 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:43:45,225 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 +2024-11-29 16:43:45,225 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:13:45.993000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013632376279112', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:43:45,241 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 76, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:45.993000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013632376279112', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-29 16:43:45,241 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:45,242 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:43:49,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 77, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732878830, 'channel_id': '1307917783308308480'}} +2024-11-29 16:43:49,461 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:49,461 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:43:49,462 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:43:50,061 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 78, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:50.827000+00:00', 'pinned': False, 'nonce': '1312013647144288256', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013652651671552', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'how are you doing', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': []}} +2024-11-29 16:43:50,062 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:50,062 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:43:51,628 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 +2024-11-29 16:43:51,629 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:13:52.373000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013659136069637', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:43:51,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 79, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:52.373000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013659136069637', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-29 16:43:51,666 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:51,666 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:43:56,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 80, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732878836, 'channel_id': '1307917783308308480'}} +2024-11-29 16:43:56,035 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:56,035 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:43:56,035 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:43:56,870 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 81, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:57.441000+00:00', 'pinned': False, 'nonce': '1312013674893803520', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013680392798220', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'can you help me out', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': []}} +2024-11-29 16:43:56,871 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:56,871 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:43:57,336 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 +2024-11-29 16:43:57,337 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:13:58.174000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013683467227207', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:43:57,367 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 82, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:13:58.174000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013683467227207', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-29 16:43:57,368 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:43:57,368 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:13,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 83, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:14.381000+00:00', 'pinned': False, 'nonce': '1312013612545474560', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013751444045865', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'nigga', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': []}} +2024-11-29 16:44:13,632 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:13,632 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:13,861 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 83. +2024-11-29 16:44:14,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:44:14,234 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 +2024-11-29 16:44:14,234 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:14.985000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013753977667606', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:44:14,251 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 84, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:14.985000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013753977667606', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-29 16:44:14,252 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:14,252 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:19,212 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 85, 'op': 0, 'd': {'user_id': '752797478394527835', 'timestamp': 1732878860, 'channel_id': '1312013735191253032'}} +2024-11-29 16:44:19,212 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:19,213 - discord.client - DEBUG - Dispatching event typing +2024-11-29 16:44:19,213 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-29 16:44:19,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 86, 'op': 0, 'd': {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-29 16:44:19,848 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:19,848 - discord.client - DEBUG - Dispatching event member_update +2024-11-29 16:44:19,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 87, 'op': 0, 'd': {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168249317203640550', '1062343535535325235', '1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-03-02T09:43:32.035000+00:00', 'guild_id': '922005348670406667', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-29 16:44:19,853 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:19,854 - discord.client - DEBUG - Dispatching event member_update +2024-11-29 16:44:20,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 88, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:20.782000+00:00', 'pinned': False, 'nonce': '1312013643654627328', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013778291789884', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'why are u gay', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': []}} +2024-11-29 16:44:20,037 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:20,038 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:20,504 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 +2024-11-29 16:44:20,505 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:21.328000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013780582006815', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:44:20,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 89, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:21.328000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013780582006815', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-29 16:44:20,526 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:20,526 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:26,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 90, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:27.238000+00:00', 'pinned': False, 'nonce': '1312013671316062208', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013805370478686', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'nahi kar', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': []}} +2024-11-29 16:44:26,584 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:26,584 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:27,057 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 +2024-11-29 16:44:27,058 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:27.878000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013808054829181', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:44:27,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 91, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:27.878000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013808054829181', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-29 16:44:27,083 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:27,083 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:34,883 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 92, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:35.543000+00:00', 'pinned': False, 'nonce': '1312013705315090432', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013840204173353', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '!help', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': []}} +2024-11-29 16:44:34,884 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:34,884 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:35,331 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 +2024-11-29 16:44:35,332 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:36.129000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013842661769269', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:44:35,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 93, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:36.129000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013842661769269', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-29 16:44:35,384 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:35,385 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:37,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 94, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:37.762000+00:00', 'pinned': False, 'nonce': '1312013714827771904', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013849511071744', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'attachments': []}} +2024-11-29 16:44:37,005 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:37,005 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:37,005 - discord.client - DEBUG - Dispatching event command +2024-11-29 16:44:37,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 95, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:38.278000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013851675463682', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-29 16:44:37,510 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:37,510 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:37,520 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-29 16:44:37,520 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:38.278000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013851675463682', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:44:37,520 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 16:44:37,594 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 +2024-11-29 16:44:37,594 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1312013735191253032/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T11:14:38.380000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312013852103278612', 'channel_id': '1312013735191253032', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 16:44:37,636 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 96, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T11:14:38.380000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312013852103278612', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-29 16:44:37,636 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:37,636 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:52,554 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INTERACTION_CREATE', 's': 97, 'op': 0, 'd': {'version': 1, 'user': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'type': 2, 'token': 'aW50ZXJhY3Rpb246MTMxMjAxMzkxNDk1OTEyMjQzMjo1YzBNYkdVVlV0T2RHQTd2VTIweE9ieXJCeUV4WnJMdnoySDEzeHZhYWVTMk1CTEU3MjRtWEpxYTdTM09lYmJ2bXpyVnFGNm56YjI0d01qWUNJYTdxMTJnMm5reFZvUjI0T3JwS1FkQ0QzTXRSdG92dHRtcjNyMGdwcjNVNlUwbA', 'locale': 'en-GB', 'id': '1312013914959122432', 'entitlements': [], 'data': {'type': 1, 'options': [{'value': 'bot', 'type': 3, 'name': 'question'}], 'name': 'ask', 'id': '1312008731227062346'}, 'context': 1, 'channel_id': '1312013735191253032', 'channel': {'type': 1, 'recipients': [{'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}], 'recipient_flags': 0, 'last_message_id': '1312013852103278612', 'id': '1312013735191253032', 'flags': 0}, 'authorizing_integration_owners': {'0': '0'}, 'application_id': '1304755116255088670', 'app_permissions': '562949953863680'}} +2024-11-29 16:44:52,554 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:52,555 - discord.client - DEBUG - Dispatching event interaction +2024-11-29 16:44:53,045 - discord.webhook.async_ - DEBUG - Webhook ID 1312013914959122432 with POST https://discord.com/api/v10/interactions/1312013914959122432/aW50ZXJhY3Rpb246MTMxMjAxMzkxNDk1OTEyMjQzMjo1YzBNYkdVVlV0T2RHQTd2VTIweE9ieXJCeUV4WnJMdnoySDEzeHZhYWVTMk1CTEU3MjRtWEpxYTdTM09lYmJ2bXpyVnFGNm56YjI0d01qWUNJYTdxMTJnMm5reFZvUjI0T3JwS1FkQ0QzTXRSdG92dHRtcjNyMGdwcjNVNlUwbA/callback has returned status code 204 +2024-11-29 16:44:53,062 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 98, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T11:14:53.770000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312013780225359872', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'interaction_metadata': {'user': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'type': 2, 'name': 'ask', 'id': '1312013914959122432', 'command_type': 1, 'authorizing_integration_owners': {'0': '0'}}, 'interaction': {'user': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'type': 2, 'name': 'ask', 'id': '1312013914959122432'}, 'id': '1312013916653748248', 'flags': 128, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670'}} +2024-11-29 16:44:53,063 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:53,063 - discord.client - DEBUG - Dispatching event message +2024-11-29 16:44:53,508 - discord.webhook.async_ - DEBUG - Webhook ID 1304755116255088670 with POST https://discord.com/api/v10/webhooks/1304755116255088670/aW50ZXJhY3Rpb246MTMxMjAxMzkxNDk1OTEyMjQzMjo1YzBNYkdVVlV0T2RHQTd2VTIweE9ieXJCeUV4WnJMdnoySDEzeHZhYWVTMk1CTEU3MjRtWEpxYTdTM09lYmJ2bXpyVnFGNm56YjI0d01qWUNJYTdxMTJnMm5reFZvUjI0T3JwS1FkQ0QzTXRSdG92dHRtcjNyMGdwcjNVNlUwbA has returned status code 200 +2024-11-29 16:44:53,509 - discord.client - DEBUG - Dispatching event app_command_completion +2024-11-29 16:44:53,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 99, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T11:14:53.770000+00:00', 'position': 0, 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'interaction_metadata': {'user': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'type': 2, 'name': 'ask', 'id': '1312013914959122432', 'command_type': 1, 'authorizing_integration_owners': {'0': '0'}}, 'interaction': {'user': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'type': 2, 'name': 'ask', 'id': '1312013914959122432'}, 'id': '1312013916653748248', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'AI Assistant Response', 'timestamp': '2024-11-29T11:14:53.046396+00:00', 'footer': {'text': 'Requested by adroll | Model: gpt-3.5-turbo'}, 'description': 'OpenAI Error: \n\nYou tried to access openai.ChatCompletion, but this is no longer supported in openai>=1.0.0 - see the README at https://github.com/openai/openai-python for the API.\n\nYou can run `openai migrate` to automatically upgrade your codebase to use the 1.0.0 interface. \n\nAlternatively, you can pin your installation to the old version, e.g. `pip install openai==0.28`\n\nA detailed migration guide is available here: https://github.com/openai/openai-python/discussions/742', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1312013735191253032', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670'}} +2024-11-29 16:44:53,546 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:44:53,546 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-29 16:44:53,547 - discord.client - DEBUG - Dispatching event message_edit +2024-11-29 16:44:55,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 99. +2024-11-29 16:44:55,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:45:36,384 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 99. +2024-11-29 16:45:36,732 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:46:17,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 99. +2024-11-29 16:46:18,000 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:46:58,589 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-11-29 16:46:58,589 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-11-29 16:46:58,934 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-11-29 16:46:58,934 - discord.client - DEBUG - Dispatching event disconnect +2024-11-29 16:46:59,402 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-d.discord.gg +2024-11-29 16:46:59,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-cnkr",{"micros":0.0}]']}} +2024-11-29 16:46:59,403 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-11-29 16:46:59,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:46:59,752 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 100, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-d-cnkr",{"micros":19015,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":1117,"calls":[]},"session_lookup_finished",{"micros":14,"calls":[]},"discord-sessions-prd-1-279",{"micros":27}]}]']}} +2024-11-29 16:46:59,753 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 16:46:59,753 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 5597777538f910b79b5ab5f775611df8. +2024-11-29 16:46:59,753 - discord.client - DEBUG - Dispatching event resumed +2024-11-29 16:47:40,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 100. +2024-11-29 16:47:41,001 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:48:21,916 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 100. +2024-11-29 16:48:22,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:49:03,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 100. +2024-11-29 16:49:03,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 16:49:44,436 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 100. +2024-11-29 16:49:44,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 23:37:01,389 - discord.client - DEBUG - on_error has successfully been registered as an event +2024-11-29 23:37:01,390 - asyncio - DEBUG - Using proactor: IocpProactor +2024-11-29 23:37:01,391 - IndieGOBot - INFO - Starting bot... +2024-11-29 23:37:01,392 - discord.client - INFO - logging in using static token +2024-11-29 23:37:01,914 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-11-29 23:37:01,914 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-11-29 23:37:01,915 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-11-29 23:37:02,455 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-11-29 23:37:02,456 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-11-29 23:37:02,456 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Programming', 'Community', 'Moderation', 'fun', 'productivity'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-11-29 23:37:02,456 - IndieGOBot - INFO - Starting bot setup... +2024-11-29 23:37:02,456 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-11-29 23:37:02,459 - IndieGOBot - INFO - Successfully loaded extension: cogs.general +2024-11-29 23:37:02,459 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-11-29 23:37:02,461 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation +2024-11-29 23:37:02,461 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-11-29 23:37:02,463 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun +2024-11-29 23:37:02,463 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-11-29 23:37:02,464 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin +2024-11-29 23:37:02,465 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-11-29 23:37:02,466 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets +2024-11-29 23:37:02,466 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-11-29 23:37:02,468 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging +2024-11-29 23:37:02,468 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-11-29 23:37:05,446 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False +2024-11-29 23:37:05,446 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' +2024-11-29 23:37:05,765 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant +2024-11-29 23:37:05,765 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help +2024-11-29 23:37:09,888 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help +2024-11-29 23:37:09,888 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help +2024-11-29 23:37:09,891 - IndieGOBot - ERROR - Failed to load extension cogs.help +2024-11-29 23:37:09,891 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-29 23:37:09,891 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. +2024-11-29 23:37:09,891 - IndieGOBot - ERROR - Traceback: +2024-11-29 23:37:09,893 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup + await bot.add_cog(Help(bot)) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog + cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject + raise e + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject + bot.add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command + super().add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command + raise CommandRegistrationError(command.name) +discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. + +2024-11-29 23:37:09,894 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base +2024-11-29 23:37:09,895 - IndieGOBot - INFO - Successfully loaded extension: cogs.base +2024-11-29 23:37:09,895 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors +2024-11-29 23:37:09,896 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors +2024-11-29 23:37:09,896 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod +2024-11-29 23:37:09,897 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod +2024-11-29 23:37:09,897 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction +2024-11-29 23:37:09,899 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction +2024-11-29 23:37:09,899 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel +2024-11-29 23:37:09,900 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel +2024-11-29 23:37:09,900 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr +2024-11-29 23:37:09,906 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr +2024-11-29 23:37:09,906 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit +2024-11-29 23:37:10,020 - IndieGOBot - ERROR - Failed to load extension cogs.reddit +2024-11-29 23:37:10,020 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-29 23:37:10,020 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. +2024-11-29 23:37:10,020 - IndieGOBot - ERROR - Traceback: +2024-11-29 23:37:10,022 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup + await bot.add_cog(Reddit(bot)) + ^^^^^^^^^^^ + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ + self.reddit = praw.Reddit( + ^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped + return func(**dict(zip(_old_args, args)), **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ + raise MissingRequiredAttributeException( +praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +2024-11-29 23:37:10,023 - IndieGOBot - INFO - Syncing command tree... +2024-11-29 23:37:10,651 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"help","description":"Show bot help and commands","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 +2024-11-29 23:37:10,652 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). +2024-11-29 23:37:10,652 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1308554160815476778', 'application_id': '1304755116255088670', 'version': '1311998121030586388', 'default_member_permissions': None, 'type': 1, 'name': 'help', 'name_localizations': None, 'description': 'Show bot help and commands', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] +2024-11-29 23:37:10,656 - IndieGOBot - INFO - Command tree synced successfully +2024-11-29 23:37:11,100 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ +2024-11-29 23:37:11,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-c-rfsr",{"micros":0.0}]']}} +2024-11-29 23:37:11,101 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. +2024-11-29 23:37:11,430 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 23:37:11,495 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': 'b39e548fa39bb437eb6662611fa61bf0', 'resume_gateway_url': 'wss://gateway-us-east1-c.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-c-rfsr",{"micros":58161,"calls":["id_created",{"micros":1248,"calls":[]},"session_lookup_time",{"micros":321,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-119",{"micros":56205,"calls":["start_session",{"micros":37118,"calls":["discord-api-rpc-6cf69f8f4b-25w9h",{"micros":33830,"calls":["get_user",{"micros":5369},"get_guilds",{"micros":3573},"send_scheduled_deletion_message",{"micros":7},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":6}]}]},"starting_guild_connect",{"micros":36,"calls":[]},"presence_started",{"micros":10800,"calls":[]},"guilds_started",{"micros":139,"calls":[]},"guilds_connect",{"micros":1,"calls":[]},"presence_connect",{"micros":8073,"calls":[]},"connect_finished",{"micros":8080,"calls":[]},"build_ready",{"micros":28,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":0,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} +2024-11-29 23:37:11,496 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:11,496 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: b39e548fa39bb437eb6662611fa61bf0). +2024-11-29 23:37:11,496 - discord.client - DEBUG - Dispatching event connect +2024-11-29 23:37:11,755 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:11,897 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:11,902 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:12,009 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:12,013 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:12,052 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:12,086 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:12,090 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '27be2099d665c34fa3a62698eebcd5c4', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:37:12,090 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:12,091 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. +2024-11-29 23:37:13,188 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:13,195 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:37:13,370 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:13,376 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:37:13,495 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:13,501 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:37:13,619 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:13,625 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:37:13,734 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:13,739 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:37:13,754 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:13,755 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. +2024-11-29 23:37:13,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 16, 'op': 0, 'd': {'nonce': 'ac2a4fd09ae8b2421255d01fa854e198', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:37:13,756 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:13,756 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. +2024-11-29 23:37:13,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': '61bed007c7344b1aebb8aab437743956', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:37:13,757 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:13,757 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. +2024-11-29 23:37:14,099 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:37:14,099 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:37:14,099 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:37:14,100 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:37:14,109 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': '69fcc06fbc81d61a93cba59732c29aed', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:37:14,109 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:14,109 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. +2024-11-29 23:37:14,110 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:37:14,601 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': '5d650b74bef096d3e59ff1f3d7658222', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:37:14,601 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:14,602 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. +2024-11-29 23:37:14,602 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:37:15,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '648cf5f73b95d9544ae9c53208524ab8', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:37:15,106 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:15,106 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. +2024-11-29 23:37:15,107 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:37:15,107 - discord.client - DEBUG - Dispatching event ready +2024-11-29 23:37:15,107 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! +2024-11-29 23:37:15,107 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status +2024-11-29 23:37:27,458 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:27,458 - discord.client - DEBUG - Dispatching event interaction +2024-11-29 23:37:27,964 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T18:21:17.024000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312117738948263936', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'id': '1312121218488471562', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312121218488471562'}, 'id': '1312121220598333460', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'IndieGO Bot Help', 'description': 'Here are my available commands:', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670', 'guild_id': '1292805470117171231'}} +2024-11-29 23:37:27,965 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:27,965 - discord.client - DEBUG - Dispatching event message +2024-11-29 23:37:28,003 - discord.webhook.async_ - DEBUG - Webhook ID 1312121218488471562 with POST https://discord.com/api/v10/interactions/1312121218488471562/aW50ZXJhY3Rpb246MTMxMjEyMTIxODQ4ODQ3MTU2Mjo2a3g2RkZ4dzE1eE1YTUl1NTlhbWhweTl1ZTdFYlA1UHltS2xNMzRQZVl3YUl1d1FONkd5VzAzV0U3dnBoWm1xdHJsWG0yNzRVcHFLZ0tKa0FwbmFueWI0SFphWHdpTEJXM05mRUpVR1JmaFdReEo2Q2J0SHdlOTNsY3E4enRpVw/callback has returned status code 204 +2024-11-29 23:37:28,003 - discord.client - DEBUG - Dispatching event app_command_completion +2024-11-29 23:37:35,645 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 23, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:21:24.716000+00:00', 'pinned': False, 'nonce': '1312117773589020672', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312121252860661810', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 23:37:35,645 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:35,645 - discord.client - DEBUG - Dispatching event message +2024-11-29 23:37:35,646 - discord.client - DEBUG - Dispatching event command +2024-11-29 23:37:36,107 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 24, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:21:25.172000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312121254773526578', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 23:37:36,108 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:37:36,108 - discord.client - DEBUG - Dispatching event message +2024-11-29 23:37:36,113 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-29 23:37:36,114 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). +2024-11-29 23:37:36,114 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:21:25.172000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312121254773526578', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 23:37:36,114 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 23:37:52,360 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. +2024-11-29 23:37:52,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 23:38:33,618 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. +2024-11-29 23:38:33,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 23:39:14,876 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. +2024-11-29 23:39:15,205 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 23:39:56,131 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. +2024-11-29 23:39:56,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 23:40:54,884 - discord.client - DEBUG - on_error has successfully been registered as an event +2024-11-29 23:40:54,885 - asyncio - DEBUG - Using proactor: IocpProactor +2024-11-29 23:40:54,886 - IndieGOBot - INFO - Starting bot... +2024-11-29 23:40:54,886 - discord.client - INFO - logging in using static token +2024-11-29 23:40:55,314 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-11-29 23:40:55,315 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-11-29 23:40:55,315 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-11-29 23:40:55,987 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-11-29 23:40:55,987 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-11-29 23:40:55,987 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Community', 'Programming', 'Moderation', 'fun', 'productivity'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-11-29 23:40:55,988 - IndieGOBot - INFO - Starting bot setup... +2024-11-29 23:40:55,988 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-11-29 23:40:55,990 - IndieGOBot - INFO - Successfully loaded extension: cogs.general +2024-11-29 23:40:55,990 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-11-29 23:40:55,992 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation +2024-11-29 23:40:55,992 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-11-29 23:40:55,993 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun +2024-11-29 23:40:55,993 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-11-29 23:40:55,994 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin +2024-11-29 23:40:55,994 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-11-29 23:40:55,995 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets +2024-11-29 23:40:55,995 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-11-29 23:40:55,996 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging +2024-11-29 23:40:55,996 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-11-29 23:40:58,005 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False +2024-11-29 23:40:58,006 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' +2024-11-29 23:40:58,304 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant +2024-11-29 23:40:58,304 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help +2024-11-29 23:41:01,371 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help +2024-11-29 23:41:01,372 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help +2024-11-29 23:41:01,374 - IndieGOBot - ERROR - Failed to load extension cogs.help +2024-11-29 23:41:01,374 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-29 23:41:01,374 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. +2024-11-29 23:41:01,374 - IndieGOBot - ERROR - Traceback: +2024-11-29 23:41:01,377 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup + await bot.add_cog(Help(bot)) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog + cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject + raise e + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject + bot.add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command + super().add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command + raise CommandRegistrationError(command.name) +discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. + +2024-11-29 23:41:01,377 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base +2024-11-29 23:41:01,379 - IndieGOBot - INFO - Successfully loaded extension: cogs.base +2024-11-29 23:41:01,379 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors +2024-11-29 23:41:01,379 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors +2024-11-29 23:41:01,380 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod +2024-11-29 23:41:01,381 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod +2024-11-29 23:41:01,381 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction +2024-11-29 23:41:01,382 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction +2024-11-29 23:41:01,382 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel +2024-11-29 23:41:01,383 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel +2024-11-29 23:41:01,383 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr +2024-11-29 23:41:01,387 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr +2024-11-29 23:41:01,388 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit +2024-11-29 23:41:01,481 - IndieGOBot - ERROR - Failed to load extension cogs.reddit +2024-11-29 23:41:01,481 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-29 23:41:01,481 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. +2024-11-29 23:41:01,481 - IndieGOBot - ERROR - Traceback: +2024-11-29 23:41:01,483 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup + await bot.add_cog(Reddit(bot)) + ^^^^^^^^^^^ + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ + self.reddit = praw.Reddit( + ^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped + return func(**dict(zip(_old_args, args)), **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ + raise MissingRequiredAttributeException( +praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +2024-11-29 23:41:01,483 - IndieGOBot - INFO - Syncing command tree... +2024-11-29 23:41:02,228 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"help","description":"Show bot help and commands","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 +2024-11-29 23:41:02,229 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). +2024-11-29 23:41:02,229 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1308554160815476778', 'application_id': '1304755116255088670', 'version': '1311998121030586388', 'default_member_permissions': None, 'type': 1, 'name': 'help', 'name_localizations': None, 'description': 'Show bot help and commands', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] +2024-11-29 23:41:02,230 - IndieGOBot - INFO - Command tree synced successfully +2024-11-29 23:41:02,663 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ +2024-11-29 23:41:02,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-sr77",{"micros":0.0}]']}} +2024-11-29 23:41:02,665 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. +2024-11-29 23:41:02,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 23:41:03,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '0d8b6ef03a5c588352ddb5791abbd212', 'resume_gateway_url': 'wss://gateway-us-east1-d.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-d-sr77",{"micros":53928,"calls":["id_created",{"micros":1433,"calls":[]},"session_lookup_time",{"micros":1553,"calls":[]},"session_lookup_finished",{"micros":16,"calls":[]},"discord-sessions-prd-1-72",{"micros":50625,"calls":["start_session",{"micros":36755,"calls":["discord-api-rpc-6cf69f8f4b-kdr62",{"micros":32916,"calls":["get_user",{"micros":5219},"get_guilds",{"micros":2555},"send_scheduled_deletion_message",{"micros":5},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":7}]}]},"starting_guild_connect",{"micros":30,"calls":[]},"presence_started",{"micros":7596,"calls":[]},"guilds_started",{"micros":150,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":6063,"calls":[]},"connect_finished",{"micros":6069,"calls":[]},"build_ready",{"micros":21,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":0,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} +2024-11-29 23:41:03,038 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:03,038 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 0d8b6ef03a5c588352ddb5791abbd212). +2024-11-29 23:41:03,039 - discord.client - DEBUG - Dispatching event connect +2024-11-29 23:41:03,072 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:03,085 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:03,115 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:03,120 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:03,137 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:03,152 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:03,155 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:03,423 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '4d68c2be4b4e9272ba770e78a1a34c23', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:41:03,424 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:03,424 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. +2024-11-29 23:41:03,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 10, 'op': 0, 'd': {'nonce': 'd560bc49ba7779fbdfe565ce73841803', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:41:03,904 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:03,904 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. +2024-11-29 23:41:04,854 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:04,863 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:41:04,981 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:04,986 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:41:05,090 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:05,096 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:41:05,203 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:05,211 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:41:05,328 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:05,334 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:41:05,353 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:05,354 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. +2024-11-29 23:41:05,354 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': 'b2b74e4ddc0eea8cdb5022f5d8058c76', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:41:05,354 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:05,354 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. +2024-11-29 23:41:05,356 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:41:05,356 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:41:05,356 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:41:05,356 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:41:05,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': '44916a8fbdc749d4468db392bebe7e4f', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:41:05,400 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:05,400 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. +2024-11-29 23:41:05,401 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:41:05,909 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': 'daf35d42f7b83ec18f1496839039d07e', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:41:05,911 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:05,912 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. +2024-11-29 23:41:05,912 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:41:06,411 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '30f5f987153a13b9c97a7e4dd461afba', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:41:06,411 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:06,411 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. +2024-11-29 23:41:06,412 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:41:06,412 - discord.client - DEBUG - Dispatching event ready +2024-11-29 23:41:06,412 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! +2024-11-29 23:41:06,412 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status +2024-11-29 23:41:33,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 21, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:25:22.604000+00:00', 'pinned': False, 'nonce': '1312118771539771392', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312122250635382845', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 23:41:33,665 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:33,665 - discord.client - DEBUG - Dispatching event message +2024-11-29 23:41:33,666 - discord.client - DEBUG - Dispatching event command +2024-11-29 23:41:34,121 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:25:23.193000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312122253105696830', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-29 23:41:34,122 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:34,122 - discord.client - DEBUG - Dispatching event message +2024-11-29 23:41:34,132 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-29 23:41:34,133 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). +2024-11-29 23:41:34,133 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:25:23.193000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312122253105696830', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-29 23:41:34,133 - discord.client - DEBUG - Dispatching event command_completion +2024-11-29 23:41:38,021 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:38,021 - discord.client - DEBUG - Dispatching event interaction +2024-11-29 23:41:38,492 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 24, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T18:25:27.474000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312118789927600128', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'id': '1312122269421797406', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312122269421797406'}, 'id': '1312122271061643348', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'IndieGO Bot Help', 'description': 'Here are my available commands:', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670', 'guild_id': '1292805470117171231'}} +2024-11-29 23:41:38,493 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:41:38,493 - discord.client - DEBUG - Dispatching event message +2024-11-29 23:41:38,515 - discord.webhook.async_ - DEBUG - Webhook ID 1312122269421797406 with POST https://discord.com/api/v10/interactions/1312122269421797406/aW50ZXJhY3Rpb246MTMxMjEyMjI2OTQyMTc5NzQwNjo0ZTNWbm8xU1daUXc1M2ptNlVLeERvV0JNODdUOFROOE1XNk90QUF3THNSeG5sa25sampxZkhielM2Ynk5WTVxemdCT05IN1FTMEhDTEZ3bmNkbjFLaHlpUHdUd1dKeVhVazVSS09FTUtYWXhCS2pWRVZtd1Y4UDFXUlJBTE9OUA/callback has returned status code 204 +2024-11-29 23:41:38,515 - discord.client - DEBUG - Dispatching event app_command_completion +2024-11-29 23:41:43,930 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. +2024-11-29 23:41:44,249 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 23:59:22,171 - discord.client - DEBUG - on_error has successfully been registered as an event +2024-11-29 23:59:22,171 - asyncio - DEBUG - Using proactor: IocpProactor +2024-11-29 23:59:22,172 - IndieGOBot - INFO - Starting bot... +2024-11-29 23:59:22,173 - discord.client - INFO - logging in using static token +2024-11-29 23:59:22,703 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-11-29 23:59:22,703 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-11-29 23:59:22,703 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-11-29 23:59:23,341 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-11-29 23:59:23,341 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-11-29 23:59:23,341 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Moderation', 'Community', 'fun', 'productivity', 'Programming'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-11-29 23:59:23,342 - IndieGOBot - INFO - Starting bot setup... +2024-11-29 23:59:23,342 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-11-29 23:59:23,345 - IndieGOBot - INFO - Successfully loaded extension: cogs.general +2024-11-29 23:59:23,346 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-11-29 23:59:23,348 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation +2024-11-29 23:59:23,348 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-11-29 23:59:23,351 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun +2024-11-29 23:59:23,351 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-11-29 23:59:23,353 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin +2024-11-29 23:59:23,353 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-11-29 23:59:23,355 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets +2024-11-29 23:59:23,356 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-11-29 23:59:23,357 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging +2024-11-29 23:59:23,357 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-11-29 23:59:26,357 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False +2024-11-29 23:59:26,358 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' +2024-11-29 23:59:26,660 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant +2024-11-29 23:59:26,661 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help +2024-11-29 23:59:29,952 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help +2024-11-29 23:59:29,953 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help +2024-11-29 23:59:29,955 - IndieGOBot - ERROR - Failed to load extension cogs.help +2024-11-29 23:59:29,955 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-29 23:59:29,955 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. +2024-11-29 23:59:29,955 - IndieGOBot - ERROR - Traceback: +2024-11-29 23:59:29,958 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup + await bot.add_cog(Help(bot)) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog + cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject + raise e + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject + bot.add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command + super().add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command + raise CommandRegistrationError(command.name) +discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. + +2024-11-29 23:59:29,958 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base +2024-11-29 23:59:29,959 - IndieGOBot - INFO - Successfully loaded extension: cogs.base +2024-11-29 23:59:29,959 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors +2024-11-29 23:59:29,960 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors +2024-11-29 23:59:29,961 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod +2024-11-29 23:59:29,961 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod +2024-11-29 23:59:29,962 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction +2024-11-29 23:59:29,963 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction +2024-11-29 23:59:29,963 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel +2024-11-29 23:59:29,964 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel +2024-11-29 23:59:29,964 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr +2024-11-29 23:59:29,971 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr +2024-11-29 23:59:29,971 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit +2024-11-29 23:59:30,081 - IndieGOBot - ERROR - Failed to load extension cogs.reddit +2024-11-29 23:59:30,081 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-29 23:59:30,081 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. +2024-11-29 23:59:30,081 - IndieGOBot - ERROR - Traceback: +2024-11-29 23:59:30,083 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup + await bot.add_cog(Reddit(bot)) + ^^^^^^^^^^^ + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ + self.reddit = praw.Reddit( + ^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped + return func(**dict(zip(_old_args, args)), **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ + raise MissingRequiredAttributeException( +praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +2024-11-29 23:59:30,084 - IndieGOBot - INFO - Syncing command tree... +2024-11-29 23:59:30,692 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"help","description":"Show bot help and commands","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 +2024-11-29 23:59:30,693 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). +2024-11-29 23:59:30,693 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1308554160815476778', 'application_id': '1304755116255088670', 'version': '1311998121030586388', 'default_member_permissions': None, 'type': 1, 'name': 'help', 'name_localizations': None, 'description': 'Show bot help and commands', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] +2024-11-29 23:59:30,694 - IndieGOBot - INFO - Command tree synced successfully +2024-11-29 23:59:31,131 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ +2024-11-29 23:59:31,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-llbq",{"micros":0.0}]']}} +2024-11-29 23:59:31,132 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. +2024-11-29 23:59:31,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-29 23:59:31,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '89f0dbeb27e8c89fad886e544bac387b', 'resume_gateway_url': 'wss://gateway-us-east1-d.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-d-llbq",{"micros":78338,"calls":["id_created",{"micros":867,"calls":[]},"session_lookup_time",{"micros":2690,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-264",{"micros":74489,"calls":["start_session",{"micros":44942,"calls":["discord-api-rpc-6cf69f8f4b-gqs7b",{"micros":41113,"calls":["get_user",{"micros":6464},"get_guilds",{"micros":3391},"send_scheduled_deletion_message",{"micros":7},"guild_join_requests",{"micros":734},"authorized_ip_coro",{"micros":6}]}]},"starting_guild_connect",{"micros":39,"calls":[]},"presence_started",{"micros":337,"calls":[]},"guilds_started",{"micros":118,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":29004,"calls":[]},"connect_finished",{"micros":29009,"calls":[]},"build_ready",{"micros":19,"calls":[]},"clean_ready",{"micros":0,"calls":[]},"optimize_ready",{"micros":1,"calls":[]},"split_ready",{"micros":23,"calls":[]}]}]}]']}} +2024-11-29 23:59:31,527 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:31,528 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 89f0dbeb27e8c89fad886e544bac387b). +2024-11-29 23:59:31,528 - discord.client - DEBUG - Dispatching event connect +2024-11-29 23:59:31,758 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:31,889 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:31,894 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:32,027 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:32,034 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:32,076 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:32,093 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:32,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': 'df550a2c8065f01075f5f8117181fd65', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:59:32,098 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:32,098 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. +2024-11-29 23:59:33,252 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:33,257 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:59:33,471 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:33,478 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:59:33,668 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:33,675 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:59:33,854 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:33,860 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:59:34,053 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:34,060 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-29 23:59:34,082 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:34,083 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. +2024-11-29 23:59:34,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 16, 'op': 0, 'd': {'nonce': '98f5a91a1c83a3bdcc1a99252cffd0db', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:59:34,084 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:34,084 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. +2024-11-29 23:59:34,084 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': '3d27b3008bc3ed90924c7fa1e369a720', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:59:34,084 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:34,084 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. +2024-11-29 23:59:34,085 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:59:34,085 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:59:34,085 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:59:34,085 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:59:34,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': '619f73684a7b5c7c1cd6c21614692943', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:59:34,095 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:34,095 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. +2024-11-29 23:59:34,096 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:59:34,597 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': 'c020828dfed5fc93d54b954fa36110ca', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:59:34,599 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:34,599 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. +2024-11-29 23:59:34,599 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:59:35,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '11b28e8088f7f46aac99145198d5cd77', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-29 23:59:35,087 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-29 23:59:35,087 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. +2024-11-29 23:59:35,087 - discord.client - DEBUG - Dispatching event guild_available +2024-11-29 23:59:35,087 - discord.client - DEBUG - Dispatching event ready +2024-11-29 23:59:35,087 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! +2024-11-29 23:59:35,088 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status +2024-11-30 00:00:12,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 00:00:12,707 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 00:00:51,856 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 21, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:44:40.885000+00:00', 'pinned': False, 'nonce': '1312123629537853440', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127108818010154', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:00:51,856 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:00:51,858 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:00:51,858 - discord.client - DEBUG - Dispatching event command +2024-11-30 00:00:52,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:44:41.373000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127110864965632', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:00:52,332 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:00:52,332 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:00:52,352 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-30 00:00:52,352 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). +2024-11-30 00:00:52,353 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:44:41.373000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312127110864965632', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-30 00:00:52,353 - discord.client - DEBUG - Dispatching event command_completion +2024-11-30 00:00:53,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 22. +2024-11-30 00:00:53,971 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 00:00:59,667 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:00:59,667 - discord.client - DEBUG - Dispatching event interaction +2024-11-30 00:01:00,155 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 24, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T18:44:49.177000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312123661934657536', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'id': '1312127141592432671', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127141592432671'}, 'id': '1312127143597183106', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'IndieGO Bot Help', 'description': 'Here are my available commands:', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670', 'guild_id': '1292805470117171231'}} +2024-11-30 00:01:00,156 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:01:00,156 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:01:00,207 - discord.webhook.async_ - DEBUG - Webhook ID 1312127141592432671 with POST https://discord.com/api/v10/interactions/1312127141592432671/aW50ZXJhY3Rpb246MTMxMjEyNzE0MTU5MjQzMjY3MTpLbVBqcG92VUc3Z1pnOVNOOXphNkJHYWdDMk1kTW9heXc0SzNBdTM5VWpraVdxUHV4ZERmQ0ViRk4yZktnbDhCZXZKZFZsYWFoT2Z2RDhqVzNpTjdLdG9KanNPdm43ajM0dzhrMkRYVVU3QlkwVXBva0x0N3B4am9FWEVJdkdXWQ/callback has returned status code 204 +2024-11-30 00:01:00,208 - discord.client - DEBUG - Dispatching event app_command_completion +2024-11-30 00:01:34,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 24. +2024-11-30 00:01:35,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 00:01:42,622 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 25, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:45:31.618000+00:00', 'pinned': False, 'nonce': '1312123842558164992', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127321607766100', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:01:42,623 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:01:42,623 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:01:42,623 - discord.client - DEBUG - Dispatching event command +2024-11-30 00:01:43,166 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 26, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:45:32.184000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127323981746216', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:01:43,167 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:01:43,167 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:01:44,474 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-30 00:01:44,474 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:45:32.184000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312127323981746216', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-30 00:01:44,475 - discord.client - DEBUG - Dispatching event command_completion +2024-11-30 00:01:47,625 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:01:47,625 - discord.client - DEBUG - Dispatching event interaction +2024-11-30 00:01:48,103 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 28, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-11-29T18:45:37.065000+00:00', 'position': 0, 'pinned': False, 'nonce': '1312123863529684992', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'id': '1312127342742605884', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'help', 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127342742605884'}, 'id': '1312127344454144031', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'IndieGO Bot Help', 'description': 'Here are my available commands:', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670', 'guild_id': '1292805470117171231'}} +2024-11-30 00:01:48,103 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:01:48,103 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:01:48,134 - discord.webhook.async_ - DEBUG - Webhook ID 1312127342742605884 with POST https://discord.com/api/v10/interactions/1312127342742605884/aW50ZXJhY3Rpb246MTMxMjEyNzM0Mjc0MjYwNTg4NDpNMUVkSlZUNmpTTmdKaVp1SUZPVm0zUFRWc0ZQQ2NjUEd2ME5kWDdkc2JoUk9QNmdBR3lUa280ZGZETlZsWVNnN2dNN0p1c05VUUxEOXNZaWNmS2xDNzlvblQ4N3p3N1pScXVQWkpINDVIUzhDOHdQb1lRV3J4Q1JiVzlwVFNqVg/callback has returned status code 204 +2024-11-30 00:01:48,134 - discord.client - DEBUG - Dispatching event app_command_completion +2024-11-30 00:01:51,145 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 29, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:45:40.131000+00:00', 'pinned': False, 'nonce': '1312123878155223040', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127357313749013', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:01:51,147 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:01:51,147 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:01:51,147 - discord.client - DEBUG - Dispatching event command +2024-11-30 00:01:51,580 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do programmers hate nature? It has too many bugs.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 +2024-11-30 00:01:51,581 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers hate nature? It has too many bugs.', 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-11-29T18:45:40.620000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312127359364894811', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-30 00:01:51,581 - discord.client - DEBUG - Dispatching event command_completion +2024-11-30 00:01:51,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 30, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:45:40.620000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127359364894811', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers hate nature? It has too many bugs.', 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:01:51,585 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:01:51,585 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:02:12,841 - discord.client - DEBUG - on_error has successfully been registered as an event +2024-11-30 00:02:12,842 - asyncio - DEBUG - Using proactor: IocpProactor +2024-11-30 00:02:12,843 - IndieGOBot - INFO - Starting bot... +2024-11-30 00:02:12,844 - discord.client - INFO - logging in using static token +2024-11-30 00:02:13,380 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-11-30 00:02:13,380 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-11-30 00:02:13,380 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-11-30 00:02:13,945 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-11-30 00:02:13,946 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-11-30 00:02:13,946 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['bot', 'applications.commands'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['bot', 'applications.commands'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Moderation', 'Community', 'productivity', 'fun', 'Programming'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-11-30 00:02:13,946 - IndieGOBot - INFO - Starting bot setup... +2024-11-30 00:02:13,946 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-11-30 00:02:13,948 - IndieGOBot - INFO - Successfully loaded extension: cogs.general +2024-11-30 00:02:13,948 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-11-30 00:02:13,950 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation +2024-11-30 00:02:13,950 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-11-30 00:02:13,952 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun +2024-11-30 00:02:13,952 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-11-30 00:02:13,953 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin +2024-11-30 00:02:13,953 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-11-30 00:02:13,954 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets +2024-11-30 00:02:13,954 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-11-30 00:02:13,955 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging +2024-11-30 00:02:13,955 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-11-30 00:02:16,237 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False +2024-11-30 00:02:16,237 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' +2024-11-30 00:02:16,535 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant +2024-11-30 00:02:16,535 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help +2024-11-30 00:02:19,805 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help +2024-11-30 00:02:19,805 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help +2024-11-30 00:02:19,807 - IndieGOBot - ERROR - Failed to load extension cogs.help +2024-11-30 00:02:19,808 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-30 00:02:19,808 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. +2024-11-30 00:02:19,808 - IndieGOBot - ERROR - Traceback: +2024-11-30 00:02:19,809 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup + await bot.add_cog(Help(bot)) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog + cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject + raise e + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject + bot.add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command + super().add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command + raise CommandRegistrationError(command.name) +discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. + +2024-11-30 00:02:19,810 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base +2024-11-30 00:02:19,811 - IndieGOBot - INFO - Successfully loaded extension: cogs.base +2024-11-30 00:02:19,811 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors +2024-11-30 00:02:19,813 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors +2024-11-30 00:02:19,813 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod +2024-11-30 00:02:19,814 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod +2024-11-30 00:02:19,814 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction +2024-11-30 00:02:19,815 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction +2024-11-30 00:02:19,815 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel +2024-11-30 00:02:19,816 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel +2024-11-30 00:02:19,817 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr +2024-11-30 00:02:19,822 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr +2024-11-30 00:02:19,822 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit +2024-11-30 00:02:19,900 - IndieGOBot - ERROR - Failed to load extension cogs.reddit +2024-11-30 00:02:19,900 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-30 00:02:19,901 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. +2024-11-30 00:02:19,901 - IndieGOBot - ERROR - Traceback: +2024-11-30 00:02:19,902 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup + await bot.add_cog(Reddit(bot)) + ^^^^^^^^^^^ + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ + self.reddit = praw.Reddit( + ^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped + return func(**dict(zip(_old_args, args)), **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ + raise MissingRequiredAttributeException( +praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +2024-11-30 00:02:19,902 - IndieGOBot - INFO - Syncing command tree... +2024-11-30 00:02:20,587 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 +2024-11-30 00:02:20,588 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). +2024-11-30 00:02:20,588 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] +2024-11-30 00:02:20,589 - IndieGOBot - INFO - Command tree synced successfully +2024-11-30 00:02:21,009 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ +2024-11-30 00:02:21,011 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-tbgd",{"micros":0.0}]']}} +2024-11-30 00:02:21,014 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. +2024-11-30 00:02:21,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 00:02:21,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '75fe96230c08e696ce1a6791ccd23a9f', 'resume_gateway_url': 'wss://gateway-us-east1-b.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-b-tbgd",{"micros":162682,"calls":["id_created",{"micros":1056,"calls":[]},"session_lookup_time",{"micros":1047,"calls":[]},"session_lookup_finished",{"micros":18,"calls":[]},"discord-sessions-prd-1-133",{"micros":160307,"calls":["start_session",{"micros":156771,"calls":["discord-api-rpc-6cf69f8f4b-lf6pb",{"micros":150477,"calls":["get_user",{"micros":10340},"get_guilds",{"micros":9971},"send_scheduled_deletion_message",{"micros":8},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":8}]}]},"starting_guild_connect",{"micros":39,"calls":[]},"presence_started",{"micros":3031,"calls":[]},"guilds_started",{"micros":132,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":278,"calls":[]},"connect_finished",{"micros":284,"calls":[]},"build_ready",{"micros":20,"calls":[]},"clean_ready",{"micros":0,"calls":[]},"optimize_ready",{"micros":27,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} +2024-11-30 00:02:21,493 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:21,494 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 75fe96230c08e696ce1a6791ccd23a9f). +2024-11-30 00:02:21,494 - discord.client - DEBUG - Dispatching event connect +2024-11-30 00:02:21,524 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:21,530 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:21,589 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:21,624 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:21,637 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:21,656 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:21,672 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:21,873 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': 'ee8e641670f7c45e79c3926ac8c3f128', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:02:21,873 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:21,874 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. +2024-11-30 00:02:22,359 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 10, 'op': 0, 'd': {'nonce': '49ead65563277e023f65a97b9d48380d', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:02:22,359 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:22,360 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. +2024-11-30 00:02:23,374 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:23,379 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:02:23,562 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:23,573 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:02:23,770 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:23,778 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:02:23,984 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:23,990 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:02:24,158 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:24,167 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:02:24,186 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:24,188 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. +2024-11-30 00:02:24,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': '70f53177c580370a6ed01aeccda07fde', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:02:24,188 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:24,189 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. +2024-11-30 00:02:24,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': '82e57ef85d54e5a19f2a9a85f85f7eb2', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:02:24,189 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:24,189 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. +2024-11-30 00:02:24,189 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:02:24,190 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:02:24,190 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:02:24,190 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:02:24,190 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:02:24,354 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': '44f25936e021142c4b27c067542485e8', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:02:24,356 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:24,356 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. +2024-11-30 00:02:24,357 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:02:24,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '775cd3ee1a74e2e97df5578343caf8ec', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:02:24,864 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:24,864 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. +2024-11-30 00:02:24,864 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:02:24,865 - discord.client - DEBUG - Dispatching event ready +2024-11-30 00:02:24,865 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! +2024-11-30 00:02:24,865 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status +2024-11-30 00:02:26,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 21, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:46:15.219000+00:00', 'pinned': False, 'nonce': '1312124025736003584', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127504483356705', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:02:26,266 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:26,266 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:02:26,266 - discord.client - DEBUG - Dispatching event command +2024-11-30 00:02:26,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:46:15.742000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312127506677108839', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:02:26,733 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:02:26,734 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:02:26,748 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-30 00:02:26,749 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). +2024-11-30 00:02:26,750 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:46:15.742000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312127506677108839', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-30 00:02:26,750 - discord.client - DEBUG - Dispatching event command_completion +2024-11-30 00:05:40,580 - discord.client - DEBUG - on_error has successfully been registered as an event +2024-11-30 00:05:40,580 - asyncio - DEBUG - Using proactor: IocpProactor +2024-11-30 00:05:40,582 - IndieGOBot - INFO - Starting bot... +2024-11-30 00:05:40,582 - discord.client - INFO - logging in using static token +2024-11-30 00:05:41,022 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-11-30 00:05:41,022 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-11-30 00:05:41,022 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-11-30 00:05:41,653 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-11-30 00:05:41,653 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-11-30 00:05:41,653 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Community', 'fun', 'Moderation', 'productivity', 'Programming'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-11-30 00:05:41,653 - IndieGOBot - INFO - Starting bot setup... +2024-11-30 00:05:41,654 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-11-30 00:05:41,656 - IndieGOBot - INFO - Successfully loaded extension: cogs.general +2024-11-30 00:05:41,656 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-11-30 00:05:41,657 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation +2024-11-30 00:05:41,657 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-11-30 00:05:41,659 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun +2024-11-30 00:05:41,659 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-11-30 00:05:41,660 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin +2024-11-30 00:05:41,660 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-11-30 00:05:41,661 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets +2024-11-30 00:05:41,661 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-11-30 00:05:41,663 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging +2024-11-30 00:05:41,663 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-11-30 00:05:43,923 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False +2024-11-30 00:05:43,923 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' +2024-11-30 00:05:44,241 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant +2024-11-30 00:05:44,241 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help +2024-11-30 00:05:47,428 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help +2024-11-30 00:05:47,428 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help +2024-11-30 00:05:47,438 - IndieGOBot - ERROR - Failed to load extension cogs.help +2024-11-30 00:05:47,438 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-30 00:05:47,438 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. +2024-11-30 00:05:47,438 - IndieGOBot - ERROR - Traceback: +2024-11-30 00:05:47,440 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 183, in setup + await bot.add_cog(Help(bot)) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog + cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject + raise e + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject + bot.add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command + super().add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command + raise CommandRegistrationError(command.name) +discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. + +2024-11-30 00:05:47,440 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base +2024-11-30 00:05:47,441 - IndieGOBot - INFO - Successfully loaded extension: cogs.base +2024-11-30 00:05:47,441 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors +2024-11-30 00:05:47,442 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors +2024-11-30 00:05:47,442 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod +2024-11-30 00:05:47,442 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod +2024-11-30 00:05:47,442 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction +2024-11-30 00:05:47,445 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction +2024-11-30 00:05:47,445 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel +2024-11-30 00:05:47,446 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel +2024-11-30 00:05:47,446 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr +2024-11-30 00:05:47,450 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr +2024-11-30 00:05:47,450 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit +2024-11-30 00:05:47,521 - IndieGOBot - ERROR - Failed to load extension cogs.reddit +2024-11-30 00:05:47,522 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-30 00:05:47,522 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. +2024-11-30 00:05:47,522 - IndieGOBot - ERROR - Traceback: +2024-11-30 00:05:47,524 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup + await bot.add_cog(Reddit(bot)) + ^^^^^^^^^^^ + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ + self.reddit = praw.Reddit( + ^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped + return func(**dict(zip(_old_args, args)), **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ + raise MissingRequiredAttributeException( +praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +2024-11-30 00:05:47,524 - IndieGOBot - INFO - Syncing command tree... +2024-11-30 00:05:48,046 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 +2024-11-30 00:05:48,046 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). +2024-11-30 00:05:48,046 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] +2024-11-30 00:05:48,047 - IndieGOBot - INFO - Command tree synced successfully +2024-11-30 00:05:48,448 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ +2024-11-30 00:05:48,449 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-c-7k1t",{"micros":0.0}]']}} +2024-11-30 00:05:48,450 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. +2024-11-30 00:05:48,763 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 00:05:48,826 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '0dfe56f4c4a885adaa528c87e297e7ef', 'resume_gateway_url': 'wss://gateway-us-east1-c.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-c-7k1t",{"micros":60696,"calls":["id_created",{"micros":955,"calls":[]},"session_lookup_time",{"micros":980,"calls":[]},"session_lookup_finished",{"micros":17,"calls":[]},"discord-sessions-prd-1-290",{"micros":58293,"calls":["start_session",{"micros":34243,"calls":["discord-api-rpc-6cf69f8f4b-f79qm",{"micros":30521,"calls":["get_user",{"micros":4807},"get_guilds",{"micros":2993},"send_scheduled_deletion_message",{"micros":6},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":6}]}]},"starting_guild_connect",{"micros":45,"calls":[]},"presence_started",{"micros":13748,"calls":[]},"guilds_started",{"micros":183,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":10044,"calls":[]},"connect_finished",{"micros":10050,"calls":[]},"build_ready",{"micros":21,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":0,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} +2024-11-30 00:05:48,827 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:48,828 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 0dfe56f4c4a885adaa528c87e297e7ef). +2024-11-30 00:05:48,828 - discord.client - DEBUG - Dispatching event connect +2024-11-30 00:05:48,834 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:48,840 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:48,902 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:48,947 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:49,057 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:49,241 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:49,265 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:49,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '479429bbd40eb58c1c54949ca0ef1d11', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:05:49,267 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:49,267 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. +2024-11-30 00:05:49,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 10, 'op': 0, 'd': {'nonce': '8eac38b9a7cae184d7badebe1a9195df', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:05:49,664 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:49,664 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. +2024-11-30 00:05:50,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 11, 'op': 0, 'd': {'nonce': 'd372669fdd6a6666531e45a0c2e4a2f1', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:05:50,154 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:50,154 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. +2024-11-30 00:05:50,673 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 12, 'op': 0, 'd': {'nonce': '790e076eb4fd75cb836f511ce9a6cca1', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:05:50,673 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:50,673 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. +2024-11-30 00:05:51,154 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 13, 'op': 0, 'd': {'nonce': '9ff4bcbc0ea4e0d9257f0f0075106549', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:05:51,155 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:51,156 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. +2024-11-30 00:05:51,276 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:05:51,276 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:05:51,276 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:05:51,276 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:05:51,277 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:05:52,304 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:52,309 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:05:52,515 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:52,522 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:05:52,715 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:52,726 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:05:52,948 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:52,953 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:05:53,135 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:53,143 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:05:53,173 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:53,175 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. +2024-11-30 00:05:53,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': 'fb522439412222c74fe3da705b7603fb', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:05:53,176 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:05:53,178 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. +2024-11-30 00:05:53,178 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:05:53,179 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:05:53,179 - discord.client - DEBUG - Dispatching event ready +2024-11-30 00:05:53,179 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! +2024-11-30 00:05:53,180 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status +2024-11-30 00:06:26,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 21, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:50:15.031000+00:00', 'pinned': False, 'nonce': '1312125030859014144', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312128510327918602', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:06:26,019 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:06:26,019 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:06:26,020 - discord.client - DEBUG - Dispatching event command +2024-11-30 00:06:26,598 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:50:15.617000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312128512785776650', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:06:26,598 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:06:26,599 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:06:26,639 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-30 00:06:26,639 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). +2024-11-30 00:06:26,639 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:50:15.617000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312128512785776650', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-30 00:06:26,640 - discord.client - DEBUG - Dispatching event command_completion +2024-11-30 00:06:29,714 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 22. +2024-11-30 00:06:30,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 00:07:10,971 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 22. +2024-11-30 00:07:11,292 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 00:07:38,282 - discord.client - DEBUG - on_error has successfully been registered as an event +2024-11-30 00:07:38,283 - asyncio - DEBUG - Using proactor: IocpProactor +2024-11-30 00:07:38,285 - IndieGOBot - INFO - Starting bot... +2024-11-30 00:07:38,285 - discord.client - INFO - logging in using static token +2024-11-30 00:07:38,764 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-11-30 00:07:38,764 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-11-30 00:07:38,764 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-11-30 00:07:39,298 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-11-30 00:07:39,298 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-11-30 00:07:39,298 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['bot', 'applications.commands'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['bot', 'applications.commands'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Community', 'Programming', 'productivity', 'Moderation', 'fun'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-11-30 00:07:39,299 - IndieGOBot - INFO - Starting bot setup... +2024-11-30 00:07:39,299 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-11-30 00:07:39,301 - IndieGOBot - INFO - Successfully loaded extension: cogs.general +2024-11-30 00:07:39,301 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-11-30 00:07:39,303 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation +2024-11-30 00:07:39,303 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-11-30 00:07:39,304 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun +2024-11-30 00:07:39,305 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-11-30 00:07:39,306 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin +2024-11-30 00:07:39,306 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-11-30 00:07:39,307 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets +2024-11-30 00:07:39,307 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-11-30 00:07:39,308 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging +2024-11-30 00:07:39,308 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-11-30 00:07:41,345 - httpx - DEBUG - load_ssl_context verify=True cert=None trust_env=True http2=False +2024-11-30 00:07:41,346 - httpx - DEBUG - load_verify_locations cafile='C:\\Users\\Drago\\AppData\\Roaming\\Python\\Python312\\site-packages\\certifi\\cacert.pem' +2024-11-30 00:07:41,641 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant +2024-11-30 00:07:41,641 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help +2024-11-30 00:07:44,666 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help +2024-11-30 00:07:44,667 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help +2024-11-30 00:07:44,675 - IndieGOBot - ERROR - Failed to load extension cogs.help +2024-11-30 00:07:44,675 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-30 00:07:44,675 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. +2024-11-30 00:07:44,676 - IndieGOBot - ERROR - Traceback: +2024-11-30 00:07:44,677 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\help.py", line 221, in setup + await bot.add_cog(Help(bot)) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 799, in add_cog + cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 725, in _inject + raise e + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\cog.py", line 716, in _inject + bot.add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 253, in add_command + super().add_command(command) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\core.py", line 1356, in add_command + raise CommandRegistrationError(command.name) +discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. + +2024-11-30 00:07:44,678 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base +2024-11-30 00:07:44,679 - IndieGOBot - INFO - Successfully loaded extension: cogs.base +2024-11-30 00:07:44,680 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors +2024-11-30 00:07:44,680 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors +2024-11-30 00:07:44,681 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod +2024-11-30 00:07:44,681 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod +2024-11-30 00:07:44,682 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction +2024-11-30 00:07:44,683 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction +2024-11-30 00:07:44,683 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel +2024-11-30 00:07:44,684 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel +2024-11-30 00:07:44,684 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr +2024-11-30 00:07:44,687 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr +2024-11-30 00:07:44,687 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit +2024-11-30 00:07:44,754 - IndieGOBot - ERROR - Failed to load extension cogs.reddit +2024-11-30 00:07:44,755 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-30 00:07:44,755 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. +2024-11-30 00:07:44,755 - IndieGOBot - ERROR - Traceback: +2024-11-30 00:07:44,756 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 29, in setup + await bot.add_cog(Reddit(bot)) + ^^^^^^^^^^^ + File "C:\Users\Drago\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ + self.reddit = praw.Reddit( + ^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\util\deprecate_args.py", line 46, in wrapped + return func(**dict(zip(_old_args, args)), **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\praw\reddit.py", line 259, in __init__ + raise MissingRequiredAttributeException( +praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +2024-11-30 00:07:44,757 - IndieGOBot - INFO - Syncing command tree... +2024-11-30 00:07:45,265 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 +2024-11-30 00:07:45,266 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). +2024-11-30 00:07:45,266 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] +2024-11-30 00:07:45,267 - IndieGOBot - INFO - Command tree synced successfully +2024-11-30 00:07:45,699 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ +2024-11-30 00:07:45,702 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-47g4",{"micros":0.0}]']}} +2024-11-30 00:07:45,703 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. +2024-11-30 00:07:46,026 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 00:07:46,067 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': 'e02496055108bedcb1dd92dfa1eb8709', 'resume_gateway_url': 'wss://gateway-us-east1-d.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-d-47g4",{"micros":49257,"calls":["id_created",{"micros":969,"calls":[]},"session_lookup_time",{"micros":483,"calls":[]},"session_lookup_finished",{"micros":18,"calls":[]},"discord-sessions-prd-1-177",{"micros":46766,"calls":["start_session",{"micros":33754,"calls":["discord-api-rpc-6cf69f8f4b-rrn29",{"micros":30127,"calls":["get_user",{"micros":4488},"get_guilds",{"micros":2974},"send_scheduled_deletion_message",{"micros":7},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":8}]}]},"starting_guild_connect",{"micros":46,"calls":[]},"presence_started",{"micros":11808,"calls":[]},"guilds_started",{"micros":140,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":967,"calls":[]},"connect_finished",{"micros":974,"calls":[]},"build_ready",{"micros":20,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":21,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} +2024-11-30 00:07:46,067 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:46,069 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: e02496055108bedcb1dd92dfa1eb8709). +2024-11-30 00:07:46,069 - discord.client - DEBUG - Dispatching event connect +2024-11-30 00:07:46,077 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:46,436 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:46,468 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:46,590 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:46,597 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:46,622 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:46,691 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:46,692 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '205cb4d1a38997d6a6931ff7a7b7b9bd', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:07:46,692 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:46,692 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. +2024-11-30 00:07:47,565 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:47,571 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:07:47,797 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:47,803 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:07:47,982 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:47,991 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:07:48,154 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:48,162 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:07:48,368 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:48,377 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 00:07:48,398 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:48,399 - discord.state - DEBUG - Processed a chunk for 141 members in guild ID 922005348670406667. +2024-11-30 00:07:48,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 16, 'op': 0, 'd': {'nonce': '33a73b757577980ceacab36946b403c5', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:07:48,400 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:48,401 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. +2024-11-30 00:07:48,401 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': '5cf018f8b5309451f2602e0e69020e4a', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:07:48,401 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:48,402 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. +2024-11-30 00:07:48,435 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': 'c240f90480c0ca277f775de9d3172f01', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:07:48,436 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:48,436 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. +2024-11-30 00:07:48,701 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:07:48,701 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:07:48,701 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:07:48,701 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:07:48,701 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:07:48,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': 'd190773b26152c264255f0d7eeab427e', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'sera', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': 'dea97e909a0211e2479d75cd11c2ec41'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e260b4c2e0e4055f8a14e7a4ef364359'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:07:48,906 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:48,906 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. +2024-11-30 00:07:48,907 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:07:49,412 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': 'd91a3f768c2c090b15bddaf5f047cdc4', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 00:07:49,412 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:49,412 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. +2024-11-30 00:07:49,412 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 00:07:49,412 - discord.client - DEBUG - Dispatching event ready +2024-11-30 00:07:49,413 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! +2024-11-30 00:07:49,413 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status +2024-11-30 00:07:55,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 21, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1732906304, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-11-30 00:07:55,517 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:55,517 - discord.client - DEBUG - Dispatching event typing +2024-11-30 00:07:55,517 - discord.client - DEBUG - Dispatching event raw_typing +2024-11-30 00:07:55,775 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:51:44.763000+00:00', 'pinned': False, 'nonce': '1312125407213912064', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312128886691205160', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:07:55,776 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:55,776 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:07:55,776 - discord.client - DEBUG - Dispatching event command +2024-11-30 00:07:56,202 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 23, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-29T18:51:45.239000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312128888687558686', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-11-30 00:07:56,203 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 00:07:56,203 - discord.client - DEBUG - Dispatching event message +2024-11-30 00:07:56,209 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-30 00:07:56,209 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). +2024-11-30 00:07:56,209 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-29T18:51:45.239000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312128888687558686', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-30 00:07:56,209 - discord.client - DEBUG - Dispatching event command_completion +2024-11-30 13:33:27,355 - discord.client - DEBUG - on_error has successfully been registered as an event +2024-11-30 13:33:27,355 - asyncio - DEBUG - Using proactor: IocpProactor +2024-11-30 13:33:27,355 - IndieGOBot - INFO - Starting bot... +2024-11-30 13:33:27,355 - discord.client - INFO - logging in using static token +2024-11-30 13:33:27,894 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-11-30 13:33:27,894 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-11-30 13:33:27,894 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-11-30 13:33:28,554 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-11-30 13:33:28,554 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-11-30 13:33:28,556 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Moderation', 'productivity', 'Programming', 'Community', 'fun'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-11-30 13:33:28,556 - IndieGOBot - INFO - Starting bot setup... +2024-11-30 13:33:28,556 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-11-30 13:33:28,566 - IndieGOBot - INFO - Successfully loaded extension: cogs.general +2024-11-30 13:33:28,566 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-11-30 13:33:28,589 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation +2024-11-30 13:33:28,589 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-11-30 13:33:28,608 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun +2024-11-30 13:33:28,608 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-11-30 13:33:28,624 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin +2024-11-30 13:33:28,624 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-11-30 13:33:28,640 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets +2024-11-30 13:33:28,640 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-11-30 13:33:28,655 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging +2024-11-30 13:33:28,655 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-11-30 13:33:43,141 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant +2024-11-30 13:33:43,141 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help +2024-11-30 13:34:10,333 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help +2024-11-30 13:34:10,333 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help +2024-11-30 13:34:10,351 - IndieGOBot - ERROR - Failed to load extension cogs.help +2024-11-30 13:34:10,351 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-30 13:34:10,352 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. +2024-11-30 13:34:10,352 - IndieGOBot - ERROR - Traceback: +2024-11-30 13:34:10,384 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\help.py", line 221, in setup + await bot.add_cog(Help(bot)) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 799, in add_cog + cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\cog.py", line 725, in _inject + raise e + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\cog.py", line 716, in _inject + bot.add_command(command) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 253, in add_command + super().add_command(command) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\core.py", line 1356, in add_command + raise CommandRegistrationError(command.name) +discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\mante\OneDrive\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. + +2024-11-30 13:34:10,384 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base +2024-11-30 13:34:10,407 - IndieGOBot - INFO - Successfully loaded extension: cogs.base +2024-11-30 13:34:10,407 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors +2024-11-30 13:34:10,420 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors +2024-11-30 13:34:10,420 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod +2024-11-30 13:34:10,438 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod +2024-11-30 13:34:10,438 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction +2024-11-30 13:34:10,451 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction +2024-11-30 13:34:10,451 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel +2024-11-30 13:34:10,467 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel +2024-11-30 13:34:10,467 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr +2024-11-30 13:34:10,494 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr +2024-11-30 13:34:10,494 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit +2024-11-30 13:34:11,479 - IndieGOBot - ERROR - Failed to load extension cogs.reddit +2024-11-30 13:34:11,479 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-11-30 13:34:11,481 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. +2024-11-30 13:34:11,481 - IndieGOBot - ERROR - Traceback: +2024-11-30 13:34:11,505 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\reddit.py", line 29, in setup + await bot.add_cog(Reddit(bot)) + ^^^^^^^^^^^ + File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ + self.reddit = praw.Reddit( + ^^^^^^^^^^^^ + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\praw\util\deprecate_args.py", line 46, in wrapped + return func(**dict(zip(_old_args, args)), **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\praw\reddit.py", line 259, in __init__ + raise MissingRequiredAttributeException( +praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\mante\OneDrive\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +2024-11-30 13:34:11,505 - IndieGOBot - INFO - Syncing command tree... +2024-11-30 13:34:12,130 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 +2024-11-30 13:34:12,132 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). +2024-11-30 13:34:12,132 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] +2024-11-30 13:34:12,134 - IndieGOBot - INFO - Command tree synced successfully +2024-11-30 13:34:12,588 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ +2024-11-30 13:34:12,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-jkv0",{"micros":0.0}]']}} +2024-11-30 13:34:12,590 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. +2024-11-30 13:34:12,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:34:13,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '954f72c90c0683473eae22136d5d8fb0', 'resume_gateway_url': 'wss://gateway-us-east1-b.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-b-jkv0",{"micros":118939,"calls":["id_created",{"micros":563,"calls":[]},"session_lookup_time",{"micros":310,"calls":[]},"session_lookup_finished",{"micros":19,"calls":[]},"discord-sessions-prd-1-199",{"micros":117679,"calls":["start_session",{"micros":85578,"calls":["discord-api-rpc-6cf69f8f4b-g46pw",{"micros":81038,"calls":["get_user",{"micros":52083},"get_guilds",{"micros":3773},"send_scheduled_deletion_message",{"micros":6},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":8}]}]},"starting_guild_connect",{"micros":63,"calls":[]},"presence_started",{"micros":8102,"calls":[]},"guilds_started",{"micros":139,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":23753,"calls":[]},"connect_finished",{"micros":23759,"calls":[]},"build_ready",{"micros":34,"calls":[]},"clean_ready",{"micros":1,"calls":[]},"optimize_ready",{"micros":0,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} +2024-11-30 13:34:13,030 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:13,030 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 954f72c90c0683473eae22136d5d8fb0). +2024-11-30 13:34:13,030 - discord.client - DEBUG - Dispatching event connect +2024-11-30 13:34:13,395 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:13,427 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:13,443 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:13,443 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:13,522 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:13,586 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:13,599 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:14,336 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:14,351 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 13:34:14,541 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:14,541 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 13:34:14,700 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:14,716 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 13:34:14,858 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:14,874 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 13:34:15,032 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:15,045 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-11-30 13:34:15,063 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:15,063 - discord.state - DEBUG - Processed a chunk for 142 members in guild ID 922005348670406667. +2024-11-30 13:34:15,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 15, 'op': 0, 'd': {'nonce': '58f93fa6388316641885112bde1e3a42', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': None, 'identity_guild_id': '1177040176531378256', 'identity_enabled': None, 'badge': None}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '6c7020c8ad8970495e943afffb350776'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 13:34:15,063 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:15,063 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. +2024-11-30 13:34:15,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 16, 'op': 0, 'd': {'nonce': '66efd4b98b96724a2da67867c7acc8fc', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 13:34:15,063 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:15,063 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. +2024-11-30 13:34:15,255 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 17, 'op': 0, 'd': {'nonce': '831ce572353168e1006440a57d85b171', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 13:34:15,255 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:15,255 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. +2024-11-30 13:34:15,620 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 13:34:15,620 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 13:34:15,620 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 13:34:15,620 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 13:34:15,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 18, 'op': 0, 'd': {'nonce': '270d4d7a572f9195b6eea180f1bc4375', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 13:34:15,764 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:15,764 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. +2024-11-30 13:34:15,764 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 13:34:16,255 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': '3f05ab44dfd82441ce693c06a86c3e9c', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 13:34:16,255 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:16,255 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. +2024-11-30 13:34:16,255 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 13:34:16,763 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '18850957ade88976dea6f0b125c32cbb', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} +2024-11-30 13:34:16,763 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:34:16,763 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. +2024-11-30 13:34:16,763 - discord.client - DEBUG - Dispatching event guild_available +2024-11-30 13:34:16,763 - discord.client - DEBUG - Dispatching event ready +2024-11-30 13:34:16,763 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! +2024-11-30 13:34:16,763 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status +2024-11-30 13:34:53,840 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:34:54,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:35:35,104 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:35:35,431 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:36:16,364 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:36:16,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:36:57,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:36:57,948 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:37:38,879 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:37:39,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:38:20,134 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:38:20,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:39:01,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:39:01,706 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:39:42,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:39:42,993 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:40:23,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:40:24,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:41:05,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:41:05,503 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:41:46,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:41:46,740 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:42:27,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:42:28,001 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:43:08,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:43:09,232 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:43:50,173 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:43:50,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:44:31,429 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:44:31,759 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:45:12,693 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:45:13,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:45:53,948 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:45:54,279 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:46:35,198 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:46:35,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:47:16,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:47:16,781 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:47:57,712 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:47:58,047 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:48:38,977 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:48:39,311 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:49:20,244 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:49:20,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:50:01,505 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:50:01,843 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:50:42,766 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:50:43,088 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:51:24,017 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:51:24,334 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:52:05,282 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:52:05,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:52:46,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:52:46,870 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:53:27,800 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:53:28,116 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:54:09,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:54:09,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:54:50,326 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:54:50,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:55:31,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:55:31,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:56:12,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:56:13,152 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:56:54,099 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:56:54,415 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:57:35,363 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:57:35,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:58:16,615 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 20. +2024-11-30 13:58:16,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:58:49,995 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 21, 'op': 0, 'd': {'user': {'username': 'realsamaira.', 'public_flags': 128, 'id': '1087484384870928394', 'global_name': 'Tessa', 'display_name': 'Tessa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'bddea3ea5494a56da5379b9e7bdc4d91'}, 'roles': ['1166279735983230976', '1170543488555810816', '1079820398490820708', '1088037634695241768', '1168311263412113448', '1062322383303749672', '1062249717427355698', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-17T11:52:05.277000+00:00', 'guild_id': '922005348670406667', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 13:58:49,995 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:58:49,995 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 13:58:49,995 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 13:58:55,371 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 22, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T13:58:55.378000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312417583215153213', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T13:58:50.093005+00:00', 'thumbnail': {'width': 524, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/XhqBS03T2Dm4UdKhC_sC6sI29R2YapIf729vF7I6LvY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png', 'height': 524, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/XhqBS03T2Dm4UdKhC_sC6sI29R2YapIf729vF7I6LvY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 13:58:55,371 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:58:55,371 - discord.client - DEBUG - Dispatching event message +2024-11-30 13:58:55,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 23, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T13:58:55.378000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312417583215153213', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T13:58:50.093000+00:00', 'thumbnail': {'width': 524, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/XhqBS03T2Dm4UdKhC_sC6sI29R2YapIf729vF7I6LvY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png', 'height': 524, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/XhqBS03T2Dm4UdKhC_sC6sI29R2YapIf729vF7I6LvY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/bddea3ea5494a56da5379b9e7bdc4d91.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 13:58:55,439 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 13:58:55,439 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 13:58:55,439 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 13:58:57,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. +2024-11-30 13:58:58,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 13:59:39,122 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. +2024-11-30 13:59:39,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:00:20,375 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. +2024-11-30 14:00:20,709 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:01:01,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. +2024-11-30 14:01:01,950 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:01:42,891 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. +2024-11-30 14:01:43,223 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:02:24,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. +2024-11-30 14:02:24,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:03:05,406 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 23. +2024-11-30 14:03:05,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:03:23,663 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 24, 'op': 0, 'd': {'user': {'username': 'realsamaira.', 'public_flags': 128, 'id': '1087484384870928394', 'global_name': 'Tessa', 'display_name': 'Tessa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '746a37d3681edb298f4b01d69bc7f91d'}, 'roles': ['1166279735983230976', '1170543488555810816', '1079820398490820708', '1088037634695241768', '1168311263412113448', '1062322383303749672', '1062249717427355698', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-17T11:52:05.277000+00:00', 'guild_id': '922005348670406667', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 14:03:23,663 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 14:03:23,663 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 14:03:23,663 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 14:03:25,310 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 25, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:03:25.263000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312418715194621965', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:03:23.755652+00:00', 'thumbnail': {'width': 735, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/o8lEdkKbikyIVNxugFDWCzh69Di3BLBURNdUh_U0Si8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png', 'height': 735, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/o8lEdkKbikyIVNxugFDWCzh69Di3BLBURNdUh_U0Si8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 14:03:25,310 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 14:03:25,310 - discord.client - DEBUG - Dispatching event message +2024-11-30 14:03:25,389 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 26, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:03:25.263000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312418715194621965', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:03:23.755000+00:00', 'thumbnail': {'width': 735, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/o8lEdkKbikyIVNxugFDWCzh69Di3BLBURNdUh_U0Si8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png', 'height': 735, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/o8lEdkKbikyIVNxugFDWCzh69Di3BLBURNdUh_U0Si8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/746a37d3681edb298f4b01d69bc7f91d.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 14:03:25,393 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 14:03:25,393 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 14:03:25,393 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 14:03:46,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. +2024-11-30 14:03:46,996 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:04:27,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. +2024-11-30 14:04:28,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:05:09,192 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. +2024-11-30 14:05:09,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:05:50,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. +2024-11-30 14:05:50,796 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:06:31,703 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. +2024-11-30 14:06:32,020 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:07:12,964 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. +2024-11-30 14:07:13,282 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:07:54,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. +2024-11-30 14:07:54,536 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:08:35,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. +2024-11-30 14:08:35,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:09:16,740 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. +2024-11-30 14:09:17,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:09:44,477 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 27, 'op': 0, 'd': {'user': {'username': 'realsamaira.', 'public_flags': 128, 'id': '1087484384870928394', 'global_name': 'Tessa', 'display_name': 'Tessa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5e9d176173c357d39609ed2ccc0430b5'}, 'roles': ['1166279735983230976', '1170543488555810816', '1079820398490820708', '1088037634695241768', '1168311263412113448', '1062322383303749672', '1062249717427355698', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-17T11:52:05.277000+00:00', 'guild_id': '922005348670406667', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 14:09:44,477 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 14:09:44,479 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 14:09:44,479 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 14:09:46,070 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 28, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:09:46.094000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312420312515743805', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:09:44.599821+00:00', 'thumbnail': {'width': 736, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/O-5vUxhDcTSK0gsipICY1GdX03GxFMWEYNG5xEjGxFs/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png', 'height': 736, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/O-5vUxhDcTSK0gsipICY1GdX03GxFMWEYNG5xEjGxFs/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 14:09:46,072 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 14:09:46,072 - discord.client - DEBUG - Dispatching event message +2024-11-30 14:09:46,143 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 29, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:09:46.094000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312420312515743805', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:09:44.599000+00:00', 'thumbnail': {'width': 736, 'url': 'https://cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/O-5vUxhDcTSK0gsipICY1GdX03GxFMWEYNG5xEjGxFs/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png', 'height': 736, 'flags': 0}, 'footer': {'text': 'ID: 1087484384870928394'}, 'description': '<@1087484384870928394>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/O-5vUxhDcTSK0gsipICY1GdX03GxFMWEYNG5xEjGxFs/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png', 'name': 'realsamaira.', 'icon_url': 'https://cdn.discordapp.com/avatars/1087484384870928394/5e9d176173c357d39609ed2ccc0430b5.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 14:09:46,143 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 14:09:46,146 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 14:09:46,146 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 14:09:58,005 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:09:58,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:10:39,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:10:39,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:11:20,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:11:20,870 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:12:01,778 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:12:02,099 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:12:43,031 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:12:43,394 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:13:24,294 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:13:24,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:14:05,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:14:05,883 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:14:46,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:14:47,132 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:15:28,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:15:28,395 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:16:09,332 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:16:09,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:16:50,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:16:50,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:17:31,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:17:32,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:18:13,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:18:13,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:18:54,370 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:18:54,695 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:19:35,622 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:19:35,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:20:16,886 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:20:17,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:20:58,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:20:58,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:21:39,407 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:21:39,724 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:22:20,658 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:22:20,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:23:01,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:23:02,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:23:43,179 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:23:43,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:24:24,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 29. +2024-11-30 14:24:24,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:24:47,311 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 30, 'op': 0, 'd': {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '58f02fae979f179fb8091ba440347122'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 14:24:47,311 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 14:24:47,311 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 14:24:47,311 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 14:25:05,709 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. +2024-11-30 14:25:06,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:25:46,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. +2024-11-30 14:25:47,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:26:28,229 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. +2024-11-30 14:26:28,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:27:09,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. +2024-11-30 14:27:09,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:27:50,746 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. +2024-11-30 14:27:51,078 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:28:32,007 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. +2024-11-30 14:28:32,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:29:13,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. +2024-11-30 14:29:13,595 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:29:54,525 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 30. +2024-11-30 14:29:54,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:30:12,339 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 31, 'op': 0, 'd': {'user': {'username': 'roronoa_doraemon', 'public_flags': 64, 'id': '852888084098056242', 'global_name': 'v', 'display_name': 'v', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '2a5bfaea2ea2594244bff5aaab1ee81c'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 14:30:12,339 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 14:30:12,339 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 14:30:12,339 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 14:30:15,241 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 32, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:30:15.347000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312425468376649811', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:30:12.491151+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/5UYFfW-n5ZmEtpVNbbu5_pDFhY6SlYPjm1EFrqehbUY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/5UYFfW-n5ZmEtpVNbbu5_pDFhY6SlYPjm1EFrqehbUY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 14:30:15,241 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 14:30:15,241 - discord.client - DEBUG - Dispatching event message +2024-11-30 14:30:15,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 33, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T14:30:15.347000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312425468376649811', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T14:30:12.491000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/5UYFfW-n5ZmEtpVNbbu5_pDFhY6SlYPjm1EFrqehbUY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/5UYFfW-n5ZmEtpVNbbu5_pDFhY6SlYPjm1EFrqehbUY/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/avatars/852888084098056242/2a5bfaea2ea2594244bff5aaab1ee81c.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 14:30:15,321 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 14:30:15,321 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 14:30:15,321 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 14:30:35,789 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:30:36,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:31:17,046 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:31:17,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:31:58,302 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:31:58,626 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:32:39,565 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:32:39,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:33:20,827 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:33:21,150 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:34:02,092 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:34:02,415 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:34:43,346 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:34:43,670 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:35:24,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:35:24,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:36:05,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:36:06,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:36:47,105 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:36:47,427 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:37:28,366 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:37:28,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:38:09,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:38:09,958 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:38:50,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:38:51,214 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:39:32,139 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:39:32,468 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:40:13,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:40:13,712 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:40:54,655 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:40:54,993 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:41:35,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:41:36,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:42:17,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:42:17,507 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:42:58,438 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:42:58,760 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:43:39,764 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:43:40,096 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:44:21,016 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:44:21,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:45:02,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:45:02,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:45:43,528 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:45:43,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:46:24,789 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:46:25,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:47:06,050 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:47:06,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:47:47,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:47:47,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:48:28,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:48:28,886 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:49:09,818 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:49:10,140 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:49:51,069 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:49:51,408 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:50:32,333 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:50:32,657 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:51:13,594 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:51:13,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:51:54,845 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:51:55,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:52:36,096 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:52:36,435 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:53:17,349 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:53:17,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:53:58,612 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:53:58,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:54:39,865 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:54:40,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:55:21,119 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:55:21,458 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:56:02,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:56:02,712 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:56:43,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:56:43,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:57:24,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:57:25,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:58:06,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:58:06,490 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:58:47,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:58:47,763 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 14:59:28,693 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 14:59:29,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:00:09,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 15:00:10,287 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:00:51,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 15:00:51,543 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:01:32,481 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 15:01:32,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:02:13,732 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 15:02:14,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:02:54,985 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 15:02:55,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:03:36,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 15:03:36,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:04:17,501 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 15:04:17,824 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:04:58,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 15:04:59,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:05:40,031 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 15:05:40,362 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:06:21,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 33. +2024-11-30 15:06:21,621 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:06:47,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 34, 'op': 0, 'd': {'user': {'username': 'stalkedbycreeps', 'public_flags': 64, 'id': '813021090972041246', 'global_name': 'nightmare', 'display_name': 'nightmare', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1220513989729976411', 'expires_at': None, 'asset': 'a_a87e3efa4de2956331831681231ce63b'}, 'avatar': 'ab24b33ca7ce44e57d71bd2c419389e7'}, 'roles': ['1166279735983230976', '1170543488555810816', '1079820398490820708', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-20T18:15:53.437000+00:00', 'guild_id': '922005348670406667', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 15:06:47,888 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 15:06:47,888 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 15:06:47,888 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 15:07:02,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:07:02,868 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:07:43,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:07:44,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:08:25,062 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:08:25,389 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:09:06,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:09:06,670 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:09:47,583 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:09:47,910 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:10:28,840 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:10:29,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:11:10,097 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:11:10,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:11:51,354 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:11:51,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:12:32,612 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:12:32,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:13:13,873 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:13:14,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:13:55,126 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:13:55,448 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:14:36,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:14:36,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:15:17,655 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:15:17,990 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:15:58,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:15:59,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:16:40,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:16:40,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:17:21,434 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:17:21,768 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:18:02,691 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:18:03,014 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:18:43,944 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:18:44,576 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:19:25,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:19:25,543 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:20:06,474 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:20:06,798 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:20:47,730 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:20:48,068 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:21:28,986 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:21:29,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:22:10,251 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:22:10,598 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:22:51,515 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:22:51,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:23:32,769 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:23:33,108 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:24:14,026 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:24:14,348 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:24:55,287 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 34. +2024-11-30 15:24:55,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:25:13,125 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 35, 'op': 0, 'd': {'user': {'username': 'tejas01', 'public_flags': 64, 'id': '742431818233544747', 'global_name': '` Tejas', 'display_name': '` Tejas', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '9fe9a5bbbfc76155e1132104235547ce'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-02-21T16:03:14.352000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 15:25:13,125 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 15:25:13,125 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 15:25:13,133 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 15:25:36,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:25:36,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:26:17,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:26:18,133 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:26:59,062 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:26:59,385 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:27:40,316 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:27:40,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:28:21,575 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:28:21,898 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:29:02,838 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:29:03,161 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:29:44,098 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:29:44,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:30:25,357 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:30:25,689 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:31:06,615 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:31:06,953 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:31:47,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:31:48,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:32:29,129 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:32:29,467 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:33:10,395 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:33:10,751 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:33:51,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:33:51,995 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:34:32,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:34:33,251 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:35:14,174 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:35:14,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:35:55,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:35:55,771 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:36:36,695 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:36:37,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:37:17,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:37:18,262 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:37:59,223 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:37:59,547 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:38:40,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:38:40,796 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:39:21,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:39:22,040 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:40:02,999 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:40:03,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:40:44,251 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:40:44,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:41:25,505 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:41:25,828 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:42:06,756 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:42:07,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:42:48,022 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:42:48,330 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:43:29,285 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:43:29,592 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:44:10,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:44:10,862 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:44:51,803 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:44:52,118 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:45:33,058 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 35. +2024-11-30 15:45:33,383 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:45:41,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 36, 'op': 0, 'd': {'user': {'username': 'heminx', 'public_flags': 0, 'id': '808170668608061461', 'global_name': 'heminx', 'display_name': 'heminx', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '6638834687a34525e3dbec60a6ddf3d9'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-04-13T13:26:55.381000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 15:45:41,448 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 15:45:41,448 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 15:45:41,448 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 15:46:14,316 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:46:14,638 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:46:55,572 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:46:55,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:47:36,824 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:47:37,146 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:48:18,081 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:48:18,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:48:59,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:48:59,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:49:40,595 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:49:40,902 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:50:21,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:50:22,169 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:51:03,108 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:51:03,430 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:51:44,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:51:44,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:52:25,629 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:52:25,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:53:06,893 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:53:07,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:53:48,160 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:53:48,483 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:54:29,410 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:54:29,732 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:55:10,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:55:10,969 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:55:51,925 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:55:52,255 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:56:33,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:56:33,488 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:57:14,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:57:14,765 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:57:55,702 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:57:56,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:58:36,967 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:58:37,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:59:18,222 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:59:18,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 15:59:59,478 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 15:59:59,786 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:00:40,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:00:41,051 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:01:21,997 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:01:22,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:02:03,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:02:03,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:02:44,530 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:02:44,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:03:25,793 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:03:26,108 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:04:07,045 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:04:07,353 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:04:48,296 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:04:48,601 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:05:29,558 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:05:29,884 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:06:10,810 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:06:11,137 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:06:52,065 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:06:52,371 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:07:33,328 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:07:33,633 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:08:14,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:08:14,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:08:55,837 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:08:56,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:09:37,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:09:37,425 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:10:18,352 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:10:18,678 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:10:59,611 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:10:59,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:11:40,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:11:41,186 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:12:22,122 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:12:22,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:13:03,375 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:13:03,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:13:44,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:13:44,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:14:25,893 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:14:26,215 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:15:07,159 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:15:07,467 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:15:48,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:15:48,745 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:16:29,686 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:16:29,992 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:17:10,938 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:17:11,244 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:17:52,190 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:17:52,497 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:18:33,446 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:18:33,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:19:14,700 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:19:15,006 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:19:55,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:19:56,293 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:20:37,231 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:20:37,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:21:18,490 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:21:18,820 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:21:59,752 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:22:00,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:22:41,012 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:22:41,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:23:22,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:23:22,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:24:03,525 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:24:03,851 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:24:44,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:24:45,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:25:26,051 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:25:26,383 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:26:07,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:26:07,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:26:48,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:26:48,869 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:27:29,816 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-11-30 16:27:30,141 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:28:00,276 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-11-30 16:28:00,276 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-11-30 16:28:00,657 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-11-30 16:28:00,657 - discord.client - DEBUG - Dispatching event disconnect +2024-11-30 16:28:01,139 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-11-30 16:28:01,139 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-b62v",{"micros":0.0}]']}} +2024-11-30 16:28:01,154 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-11-30 16:28:01,485 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:28:01,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 37, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-b62v",{"micros":2789,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":2042,"calls":[]},"session_lookup_finished",{"micros":17,"calls":[]},"discord-sessions-prd-1-199",{"micros":48}]}]']}} +2024-11-30 16:28:01,491 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:28:01,491 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-11-30 16:28:01,504 - discord.client - DEBUG - Dispatching event resumed +2024-11-30 16:28:42,411 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. +2024-11-30 16:28:42,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:29:23,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. +2024-11-30 16:29:23,972 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:30:04,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. +2024-11-30 16:30:05,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:30:46,176 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. +2024-11-30 16:30:46,483 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:31:27,441 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. +2024-11-30 16:31:27,748 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:32:08,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. +2024-11-30 16:32:09,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:32:49,952 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. +2024-11-30 16:32:50,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:33:31,208 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. +2024-11-30 16:33:31,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:34:12,467 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. +2024-11-30 16:34:12,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:34:53,718 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 37. +2024-11-30 16:34:54,040 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:35:02,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 38, 'op': 0, 'd': {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'hazelcast2', 'display_name': 'hazelcast2', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9e1bcc1a10399b53289971f3f9e6b105'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 16:35:02,192 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:35:02,192 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 16:35:02,192 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 16:35:34,983 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 38. +2024-11-30 16:35:35,307 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:35:54,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 39, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 16:35:54,718 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:35:54,738 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 16:35:58,343 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 40, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 16:35:58,343 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:35:58,343 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 16:35:58,748 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:35:58,748 - discord.client - DEBUG - Dispatching event message +2024-11-30 16:35:58,844 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:35:58,844 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 16:35:58,844 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 16:36:16,241 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 42. +2024-11-30 16:36:16,567 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:36:57,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 42. +2024-11-30 16:36:57,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:37:38,755 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 42. +2024-11-30 16:37:39,072 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:38:20,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 42. +2024-11-30 16:38:20,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:38:27,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 43, 'op': 0, 'd': {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e3fc9f81235eab66f41bd1f30754e886'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 16:38:27,733 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:38:27,735 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 16:38:27,735 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 16:39:01,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. +2024-11-30 16:39:01,600 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:39:42,532 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. +2024-11-30 16:39:42,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:40:23,788 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. +2024-11-30 16:40:24,096 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:41:05,055 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. +2024-11-30 16:41:05,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:41:46,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. +2024-11-30 16:41:46,624 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:42:27,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 43. +2024-11-30 16:42:27,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:42:40,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 44, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 16:42:40,631 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:42:40,631 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 16:42:43,753 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:42:43,753 - discord.client - DEBUG - Dispatching event message +2024-11-30 16:42:43,865 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:42:43,865 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 16:42:43,865 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 16:43:08,828 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 46. +2024-11-30 16:43:09,136 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:43:50,081 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 46. +2024-11-30 16:43:50,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:44:31,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 46. +2024-11-30 16:44:31,643 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:44:58,885 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 47, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 16:44:58,885 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:44:58,885 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 16:45:12,594 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:45:12,912 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:45:53,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:45:54,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:46:35,112 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:46:35,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:47:16,376 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:47:16,700 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:47:57,630 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:47:57,937 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:48:38,886 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:48:39,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:49:20,149 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:49:20,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:50:01,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:50:01,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:50:42,665 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:50:42,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:51:23,921 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:51:24,260 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:52:05,178 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:52:05,507 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:52:46,436 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:52:46,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:53:27,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:53:28,024 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:54:08,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:54:09,279 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:54:50,222 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:54:50,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:55:31,478 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:55:31,800 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:56:12,734 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:56:13,039 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:56:53,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:56:54,311 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:57:35,240 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:57:35,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:58:16,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:58:16,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:58:57,754 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 47. +2024-11-30 16:58:58,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 16:59:04,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 48, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '2bee10eeace7a673ea73683be6cdfb22', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 16:59:04,217 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:59:04,217 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 16:59:08,864 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:59:08,864 - discord.client - DEBUG - Dispatching event message +2024-11-30 16:59:08,942 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 16:59:08,942 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 16:59:08,942 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 16:59:39,015 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 16:59:39,338 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:00:20,279 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:00:20,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:01:01,531 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:01:01,902 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:01:42,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:01:43,112 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:02:24,046 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:02:24,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:03:05,296 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:03:05,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:03:46,559 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:03:46,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:04:27,810 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:04:28,118 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:05:09,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:05:09,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:05:50,341 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:05:50,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:06:31,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:06:31,943 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:07:12,866 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:07:13,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:07:54,126 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:07:54,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:08:35,387 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:08:35,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:09:16,641 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:09:16,950 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:09:57,900 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:09:58,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:10:39,164 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:10:39,488 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:11:20,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:11:20,734 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:12:01,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-11-30 17:12:01,986 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:12:29,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 51, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 17:12:29,961 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:12:29,961 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:12:42,934 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 51. +2024-11-30 17:12:43,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:13:24,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 51. +2024-11-30 17:13:24,504 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:14:05,457 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 51. +2024-11-30 17:14:05,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:14:46,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 51. +2024-11-30 17:14:47,035 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:14:53,228 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-11-30 17:14:53,228 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-11-30 17:14:53,553 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-11-30 17:14:53,553 - discord.client - DEBUG - Dispatching event disconnect +2024-11-30 17:14:53,984 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-11-30 17:14:54,000 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-9m0d",{"micros":0.0}]']}} +2024-11-30 17:14:54,000 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-11-30 17:14:54,323 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:14:54,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 52, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-9m0d",{"micros":6154,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":3677,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-199",{"micros":29}]}]']}} +2024-11-30 17:14:54,345 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:14:54,345 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-11-30 17:14:54,345 - discord.client - DEBUG - Dispatching event resumed +2024-11-30 17:15:35,265 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 52. +2024-11-30 17:15:35,589 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:16:16,530 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 52. +2024-11-30 17:16:16,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:16:48,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 53, 'op': 0, 'd': {'user': {'username': 'haruki_xd', 'public_flags': 128, 'id': '772328603537899550', 'global_name': 'Maze_xD', 'display_name': 'Maze_xD', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9248c4e10316226e224c4161cd49c69b'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Haruki', 'mute': False, 'joined_at': '2022-06-27T15:32:00.441000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 17:16:48,316 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:16:48,316 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 17:16:48,316 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 17:16:48,945 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 54, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T17:16:49.464000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312467386741428286', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T17:16:48.900836+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/lKiuWmNrF-tjVlztk86W3HLnpMQwImLgvI69Vq0zAeM/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 772328603537899550'}, 'description': '<@772328603537899550>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/lKiuWmNrF-tjVlztk86W3HLnpMQwImLgvI69Vq0zAeM/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png', 'name': 'haruki_xd', 'icon_url': 'https://cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 17:16:48,945 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:16:48,945 - discord.client - DEBUG - Dispatching event message +2024-11-30 17:16:49,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 55, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T17:16:49.464000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312467386741428286', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T17:16:48.900000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/lKiuWmNrF-tjVlztk86W3HLnpMQwImLgvI69Vq0zAeM/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 772328603537899550'}, 'description': '<@772328603537899550>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/lKiuWmNrF-tjVlztk86W3HLnpMQwImLgvI69Vq0zAeM/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png', 'name': 'haruki_xd', 'icon_url': 'https://cdn.discordapp.com/avatars/772328603537899550/9248c4e10316226e224c4161cd49c69b.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 17:16:49,028 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:16:49,028 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 17:16:49,028 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 17:16:57,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:16:58,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:17:39,047 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:17:39,376 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:18:20,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:18:20,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:19:01,559 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:19:01,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:19:42,821 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:19:43,127 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:20:24,078 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:20:24,401 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:21:05,329 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:21:05,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:21:46,583 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:21:46,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:22:27,848 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:22:28,171 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:23:09,113 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:23:09,434 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:23:50,369 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:23:50,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:24:31,624 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 55. +2024-11-30 17:24:31,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:24:38,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 56, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 17:24:38,170 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:24:38,170 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:25:12,879 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-30 17:25:13,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:25:54,133 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-30 17:25:54,456 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:26:35,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 56. +2024-11-30 17:26:35,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:27:03,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 57, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 17:27:03,153 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:27:03,155 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:27:16,661 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 57. +2024-11-30 17:27:16,983 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:27:57,925 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 57. +2024-11-30 17:27:58,251 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:28:01,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 58, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 17:28:01,326 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:28:01,326 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:28:11,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 59, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-11-30 17:28:11,874 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:28:11,874 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:28:14,040 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:28:14,040 - discord.client - DEBUG - Dispatching event message +2024-11-30 17:28:14,154 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:28:14,154 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 17:28:14,154 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 17:28:39,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:28:39,507 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:29:20,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:29:20,784 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:30:01,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:30:02,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:30:42,976 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:30:43,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:31:24,227 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:31:24,550 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:32:05,480 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:32:05,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:32:46,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:32:47,065 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:33:28,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:33:28,346 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:34:09,258 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:34:09,581 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:34:50,512 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:34:50,854 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:35:31,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:35:32,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:36:13,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 61. +2024-11-30 17:36:13,348 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:36:36,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 62, 'op': 0, 'd': {'user': {'username': 'roronoa_doraemon', 'public_flags': 64, 'id': '852888084098056242', 'global_name': 'v', 'display_name': 'v', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-11-30 17:36:36,594 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:36:36,594 - discord.client - DEBUG - Dispatching event user_update +2024-11-30 17:36:36,594 - discord.client - DEBUG - Dispatching event member_update +2024-11-30 17:36:39,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 63, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T17:36:39.687000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312472378898382998', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T17:36:37.268990+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/5.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 17:36:39,083 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:36:39,083 - discord.client - DEBUG - Dispatching event message +2024-11-30 17:36:40,156 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 64, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-11-30T17:36:39.687000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312472378898382998', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-11-30T17:36:37.268000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/5.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-11-30 17:36:40,165 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:36:40,165 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 17:36:40,165 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 17:36:54,292 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 64. +2024-11-30 17:36:54,638 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:37:35,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 64. +2024-11-30 17:37:35,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:38:10,744 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 65, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 17:38:10,744 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:38:10,744 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:38:11,681 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:38:11,681 - discord.client - DEBUG - Dispatching event message +2024-11-30 17:38:11,721 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:38:11,721 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 17:38:11,721 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 17:38:16,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 67. +2024-11-30 17:38:17,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:38:58,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 67. +2024-11-30 17:38:58,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:39:21,965 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 68, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-11-30 17:39:21,965 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:39:21,965 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:39:24,615 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:39:24,615 - discord.client - DEBUG - Dispatching event message +2024-11-30 17:39:24,695 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:39:24,695 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 17:39:24,695 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 17:39:39,329 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. +2024-11-30 17:39:39,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:40:20,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. +2024-11-30 17:40:20,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:41:01,857 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. +2024-11-30 17:41:02,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:41:43,118 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. +2024-11-30 17:41:43,426 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:42:24,381 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. +2024-11-30 17:42:24,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:43:05,636 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 70. +2024-11-30 17:43:05,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:43:38,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 71, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 17:43:38,313 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:43:38,315 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:43:39,676 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:43:39,676 - discord.client - DEBUG - Dispatching event message +2024-11-30 17:43:39,729 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:43:39,729 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 17:43:39,729 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 17:43:46,896 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. +2024-11-30 17:43:47,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:44:28,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. +2024-11-30 17:44:28,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:45:09,417 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. +2024-11-30 17:45:09,741 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:45:50,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. +2024-11-30 17:45:50,992 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:46:31,927 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. +2024-11-30 17:46:32,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:47:13,184 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. +2024-11-30 17:47:13,507 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:47:54,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 73. +2024-11-30 17:47:54,628 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 74, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-11-30 17:47:54,628 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:47:54,628 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:47:54,757 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:47:59,657 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:47:59,657 - discord.client - DEBUG - Dispatching event message +2024-11-30 17:47:59,705 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:47:59,705 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 17:47:59,705 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 17:48:04,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 77, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329550670172231'}} +2024-11-30 17:48:04,178 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:48:04,178 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:48:04,740 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:48:04,740 - discord.client - DEBUG - Dispatching event message +2024-11-30 17:48:04,800 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:48:04,800 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 17:48:04,800 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 17:48:19,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 80, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '2bee10eeace7a673ea73683be6cdfb22', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329550670172231'}} +2024-11-30 17:48:19,210 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:48:19,210 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:48:19,820 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:48:19,820 - discord.client - DEBUG - Dispatching event message +2024-11-30 17:48:19,916 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:48:19,916 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 17:48:19,916 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 17:48:20,011 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 83, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 17:48:20,012 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:48:20,012 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:48:22,264 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 84, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329550670172231'}} +2024-11-30 17:48:22,265 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:48:22,265 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 17:48:24,650 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:48:24,650 - discord.client - DEBUG - Dispatching event message +2024-11-30 17:48:24,698 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 17:48:24,698 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 17:48:24,698 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 17:48:35,712 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:48:36,036 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:49:16,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:49:17,281 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:49:58,223 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:49:58,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:50:39,477 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:50:39,801 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:51:20,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:51:21,074 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:52:01,984 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:52:02,323 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:52:43,270 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:52:43,591 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:53:24,535 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:53:24,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:54:05,791 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:54:06,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:54:47,045 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:54:47,368 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:55:28,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:55:28,629 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:56:09,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:56:09,886 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:56:50,829 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:56:51,158 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:57:32,093 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:57:32,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:58:13,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:58:13,652 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:58:54,600 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:58:54,927 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 17:59:35,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 17:59:36,186 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:00:17,125 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 18:00:17,466 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:00:58,387 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 18:00:58,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:01:39,639 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 18:01:39,979 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:02:20,891 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 18:02:21,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:03:02,145 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 18:03:02,485 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:03:43,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 18:03:43,722 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:04:24,649 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 18:04:24,985 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:05:05,902 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 18:05:06,250 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:05:47,162 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 86. +2024-11-30 18:05:47,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:06:20,212 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 87, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '2bee10eeace7a673ea73683be6cdfb22', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 18:06:20,212 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 18:06:20,213 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 18:06:24,749 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 18:06:24,749 - discord.client - DEBUG - Dispatching event message +2024-11-30 18:06:24,820 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 18:06:24,821 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 18:06:24,821 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 18:06:28,429 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 89. +2024-11-30 18:06:28,776 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:06:36,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 90, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 18:06:36,880 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 18:06:36,881 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 18:06:36,882 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 91, 'op': 0, 'd': {'status': None, 'id': '1285329550670172231', 'guild_id': '922005348670406667'}} +2024-11-30 18:06:36,882 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 18:06:36,882 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. +2024-11-30 18:06:39,845 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 18:06:39,846 - discord.client - DEBUG - Dispatching event message +2024-11-30 18:06:39,948 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 18:06:39,948 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 18:06:39,948 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 18:07:09,693 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 93. +2024-11-30 18:07:10,024 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:07:44,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 94, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 18:07:44,044 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 18:07:44,044 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 18:07:50,951 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 18:07:51,282 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:08:32,208 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 18:08:32,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:09:13,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 18:09:13,796 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:09:54,728 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 18:09:55,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:10:35,984 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 18:10:36,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:11:17,240 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 18:11:17,570 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:11:58,492 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 18:11:58,815 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:12:39,751 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 18:12:40,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:13:21,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 18:13:21,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 18:14:02,271 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 18:14:02,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:44:44,410 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 23:44:44,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:45:25,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 23:45:25,991 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:46:06,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 23:46:07,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:46:48,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 23:46:48,513 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:47:29,437 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 94. +2024-11-30 23:47:29,598 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 95, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'e04348471c06d4cd0e510392a9184ad7', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 23:47:29,598 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:47:29,598 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 23:47:29,775 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:47:30,810 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:47:30,810 - discord.client - DEBUG - Dispatching event message +2024-11-30 23:47:30,874 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:47:30,874 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 23:47:30,874 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 23:47:36,567 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 98, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'e04348471c06d4cd0e510392a9184ad7', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 23:47:36,567 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:47:36,567 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 23:48:10,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 98. +2024-11-30 23:48:11,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:48:51,964 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 98. +2024-11-30 23:48:52,302 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:49:33,218 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 98. +2024-11-30 23:49:33,540 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:50:10,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 99, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'e04348471c06d4cd0e510392a9184ad7', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-11-30 23:50:10,303 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:50:10,303 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 23:50:11,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 100, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'e04348471c06d4cd0e510392a9184ad7', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-11-30 23:50:11,157 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:50:11,157 - discord.client - DEBUG - Dispatching event voice_state_update +2024-11-30 23:50:11,964 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:50:11,964 - discord.client - DEBUG - Dispatching event message +2024-11-30 23:50:12,040 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:50:12,040 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 23:50:12,040 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 23:50:14,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 102. +2024-11-30 23:50:14,801 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:50:15,820 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:50:15,820 - discord.client - DEBUG - Dispatching event message +2024-11-30 23:50:15,868 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:50:15,868 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-11-30 23:50:15,868 - discord.client - DEBUG - Dispatching event message_edit +2024-11-30 23:50:55,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 104. +2024-11-30 23:50:56,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:51:36,994 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 104. +2024-11-30 23:51:37,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:52:18,251 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 104. +2024-11-30 23:52:18,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:52:59,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 104. +2024-11-30 23:52:59,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:53:40,768 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 104. +2024-11-30 23:53:41,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:54:13,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 105, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-30T18:24:13.616000+00:00', 'pinned': False, 'nonce': '1312484345969115136', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312484349144338554', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': []}} +2024-11-30 23:54:13,780 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:54:13,800 - discord.client - DEBUG - Dispatching event message +2024-11-30 23:54:13,800 - discord.client - DEBUG - Dispatching event command +2024-11-30 23:54:14,300 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 106, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-30T18:24:14.134000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312484351317114950', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-30 23:54:14,300 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:54:14,300 - discord.client - DEBUG - Dispatching event message +2024-11-30 23:54:14,336 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-11-30 23:54:14,336 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). +2024-11-30 23:54:14,336 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-30T18:24:14.134000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312484351317114950', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-30 23:54:14,340 - discord.client - DEBUG - Dispatching event command_completion +2024-11-30 23:54:14,774 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"Hello! How can I assist you today?","components":[],"tts":false} has returned 200 +2024-11-30 23:54:14,774 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': 'Hello! How can I assist you today?', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-11-30T18:24:14.616000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312484353338638376', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-11-30 23:54:14,790 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 107, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-30T18:24:14.616000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312484353338638376', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Hello! How can I assist you today?', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-11-30 23:54:14,791 - discord.client - DEBUG - Dispatching event socket_event_type +2024-11-30 23:54:14,792 - discord.client - DEBUG - Dispatching event message +2024-11-30 23:54:22,032 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-11-30 23:54:22,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:55:03,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-11-30 23:55:03,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:55:44,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-11-30 23:55:44,884 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:56:25,804 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-11-30 23:56:26,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:57:07,066 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-11-30 23:57:07,435 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:57:48,325 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-11-30 23:57:48,646 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:58:29,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-11-30 23:58:29,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:59:10,832 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-11-30 23:59:11,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-11-30 23:59:52,095 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-11-30 23:59:52,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:00:33,350 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:00:33,672 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:01:14,608 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:01:15,029 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:01:55,874 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:01:56,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:02:37,137 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:02:37,543 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:03:18,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:03:18,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:03:59,647 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:04:00,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:04:40,907 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:04:41,280 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:05:22,163 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:05:22,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:06:03,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:06:03,817 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:06:44,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:06:45,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:07:25,933 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:07:26,336 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:08:07,195 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:08:07,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:08:48,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:08:48,772 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:09:29,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:09:30,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:10:10,970 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:10:11,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:10:52,227 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:10:52,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:11:33,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:11:33,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:12:14,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:12:15,130 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:12:56,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:12:56,406 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:13:37,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:13:37,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:14:18,520 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:14:18,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:14:59,775 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:15:00,161 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:15:41,029 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:15:41,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:16:22,281 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:16:22,679 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:17:03,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:17:03,944 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:17:44,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:17:45,197 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:18:26,047 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:18:26,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:19:07,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:19:07,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:19:48,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:19:48,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:20:29,823 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:20:30,230 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:21:11,080 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:21:11,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:21:52,333 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:21:53,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:22:33,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:22:33,922 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:23:14,856 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:23:15,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:23:56,110 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 107. +2024-12-01 00:23:56,516 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:24:06,299 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 108, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:24:06,299 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:24:06,315 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:24:37,364 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 108. +2024-12-01 00:24:37,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:25:13,722 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 109, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:25:13,722 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:25:13,722 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:25:18,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 110, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 00:25:18,046 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:25:18,046 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:25:18,336 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:25:18,336 - discord.client - DEBUG - Dispatching event message +2024-12-01 00:25:18,401 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:25:18,401 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 00:25:18,401 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 00:25:18,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 112. +2024-12-01 00:25:19,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:25:59,879 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 112. +2024-12-01 00:26:00,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:26:04,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 113, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 00:26:04,694 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:26:04,694 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:26:08,216 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:26:08,216 - discord.client - DEBUG - Dispatching event message +2024-12-01 00:26:08,264 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:26:08,264 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 00:26:08,264 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 00:26:41,137 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 115. +2024-12-01 00:26:41,525 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:26:55,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 116, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:26:55,878 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:26:55,878 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:26:58,094 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:26:58,094 - discord.client - DEBUG - Dispatching event message +2024-12-01 00:26:58,165 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:26:58,165 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 00:26:58,165 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 00:27:20,529 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 119, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:27:20,529 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:27:20,529 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:27:21,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 120, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:27:21,982 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:27:21,982 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:27:22,399 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 120. +2024-12-01 00:27:22,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:27:24,043 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:27:24,043 - discord.client - DEBUG - Dispatching event message +2024-12-01 00:27:24,189 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:27:24,189 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 00:27:24,189 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 00:28:03,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 122. +2024-12-01 00:28:03,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:28:44,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 122. +2024-12-01 00:28:45,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:28:59,540 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 123, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'e04348471c06d4cd0e510392a9184ad7', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 00:28:59,556 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:28:59,556 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:29:03,120 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:29:03,120 - discord.client - DEBUG - Dispatching event message +2024-12-01 00:29:03,155 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:29:03,155 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 00:29:03,155 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 00:29:26,171 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 125. +2024-12-01 00:29:26,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:29:54,074 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 126, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:29:54,074 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:29:54,074 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:29:58,133 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:29:58,133 - discord.client - DEBUG - Dispatching event message +2024-12-01 00:29:58,181 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:29:58,181 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 00:29:58,181 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 00:30:01,348 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 129, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 00:30:01,348 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:30:01,348 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:30:02,270 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 130, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:30:02,270 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:30:02,270 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:30:03,255 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:30:03,255 - discord.client - DEBUG - Dispatching event message +2024-12-01 00:30:03,334 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:30:03,334 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 00:30:03,334 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 00:30:07,423 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 132. +2024-12-01 00:30:07,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:30:48,685 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 132. +2024-12-01 00:30:49,008 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:31:29,936 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 132. +2024-12-01 00:31:30,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:31:47,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 133, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 00:31:47,830 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:31:47,830 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:31:48,119 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:31:48,119 - discord.client - DEBUG - Dispatching event message +2024-12-01 00:31:48,233 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:31:48,233 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 00:31:48,233 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 00:31:57,421 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 136, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:31:57,421 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:31:57,421 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:31:58,163 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:31:58,163 - discord.client - DEBUG - Dispatching event message +2024-12-01 00:31:58,212 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:31:58,212 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 00:31:58,212 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 00:32:03,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 139, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:32:03,735 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:32:03,735 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:32:10,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 140, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:32:10,908 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:32:10,908 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:32:11,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 140. +2024-12-01 00:32:11,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:32:13,112 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:32:13,112 - discord.client - DEBUG - Dispatching event message +2024-12-01 00:32:13,160 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:32:13,160 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 00:32:13,160 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 00:32:52,457 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. +2024-12-01 00:32:52,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:33:33,718 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. +2024-12-01 00:33:34,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:34:14,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. +2024-12-01 00:34:15,301 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:34:56,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. +2024-12-01 00:34:56,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:35:37,497 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. +2024-12-01 00:35:37,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:36:18,750 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 142. +2024-12-01 00:36:19,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:36:40,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 143, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:36:40,888 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:36:40,888 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:37:00,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. +2024-12-01 00:37:00,343 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:37:41,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. +2024-12-01 00:37:41,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:38:22,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. +2024-12-01 00:38:22,875 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:39:03,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. +2024-12-01 00:39:04,100 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:39:45,042 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. +2024-12-01 00:39:45,349 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:40:26,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 143. +2024-12-01 00:40:26,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:40:43,358 - discord.gateway - DEBUG - Received WSMessage(type=, data=None, extra=None) +2024-12-01 00:40:43,374 - discord.gateway - DEBUG - Websocket closed with 1006, attempting a reconnect. +2024-12-01 00:40:43,374 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 00:40:43,374 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 00:40:43,826 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 00:40:43,826 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-j7b7",{"micros":0.0}]']}} +2024-12-01 00:40:43,826 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 00:40:44,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:40:44,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 144, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-j7b7",{"micros":1179,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":946,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-199",{"micros":25}]}]']}} +2024-12-01 00:40:44,153 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:40:44,153 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 00:40:44,153 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 00:41:25,079 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 144. +2024-12-01 00:41:25,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:42:06,341 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 144. +2024-12-01 00:42:06,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:42:47,594 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 144. +2024-12-01 00:42:47,916 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:42:50,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 145, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 00:42:50,538 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:42:50,538 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:42:51,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 146, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 00:42:51,736 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:42:51,736 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 00:42:53,251 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:42:53,251 - discord.client - DEBUG - Dispatching event message +2024-12-01 00:42:53,412 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 00:42:53,412 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 00:42:53,412 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 00:43:28,846 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:43:29,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:44:10,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:44:10,424 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:44:51,355 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:44:51,668 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:45:32,622 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:45:32,945 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:46:13,881 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:46:14,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:46:55,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:46:55,470 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:47:36,402 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:47:36,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:48:17,661 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:48:17,976 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:48:58,927 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:48:59,251 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:49:40,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:49:40,514 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:50:21,442 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:50:21,751 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:51:02,703 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:51:03,041 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:51:43,964 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:51:44,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:52:25,221 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:52:25,550 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:53:06,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:53:06,802 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:53:47,736 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:53:48,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:54:28,991 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:54:29,318 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:55:10,258 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:55:10,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:55:51,514 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:55:51,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:56:32,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:56:33,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:57:14,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:57:14,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:57:55,290 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:57:55,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:58:36,554 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:58:36,862 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:59:17,814 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:59:18,125 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 00:59:59,075 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 00:59:59,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:00:40,328 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:00:40,633 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:01:21,586 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:01:21,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:02:02,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:02:03,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:02:44,107 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:02:44,428 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:03:25,372 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:03:25,678 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:04:06,638 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:04:06,945 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:04:47,902 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:04:48,215 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:05:29,165 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:05:29,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:06:10,417 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:06:10,724 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:06:51,674 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:06:51,980 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:07:32,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:07:33,232 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:08:14,186 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:08:14,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:08:55,448 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:08:55,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:09:36,706 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:09:37,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:10:17,969 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:10:18,291 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:10:59,221 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 148. +2024-12-01 01:10:59,317 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 149, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:10:59,317 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:10:59,317 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:10:59,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:10:59,768 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 150, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:10:59,768 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:10:59,768 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:11:00,127 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:11:00,127 - discord.client - DEBUG - Dispatching event message +2024-12-01 01:11:00,204 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:11:00,204 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 01:11:00,204 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 01:11:40,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 152. +2024-12-01 01:11:40,792 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:12:21,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 152. +2024-12-01 01:12:22,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:12:59,629 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 153, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:12:59,629 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:12:59,629 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:13:02,988 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 153. +2024-12-01 01:13:03,311 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:13:44,239 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 153. +2024-12-01 01:13:44,547 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:13:49,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 154, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:13:49,392 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:13:49,392 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:14:25,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 154. +2024-12-01 01:14:25,810 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:15:06,760 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 154. +2024-12-01 01:15:07,090 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:15:14,525 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 155, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:15:14,525 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:15:14,525 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:15:48,012 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 155. +2024-12-01 01:15:48,339 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:15:54,992 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 156, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:15:54,992 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:15:54,992 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:16:29,274 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 156. +2024-12-01 01:16:29,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:17:07,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 157, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:17:07,908 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:17:07,908 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:17:10,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 157. +2024-12-01 01:17:10,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 158, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:17:10,846 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:17:10,846 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:17:10,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:17:26,000 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 159, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:17:26,004 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:17:26,004 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:17:31,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 160, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:17:31,904 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:17:31,904 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:17:33,663 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 161, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:17:33,663 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:17:33,663 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:17:51,804 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 161. +2024-12-01 01:17:52,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:18:18,116 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 162, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:18:18,116 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:18:18,116 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:18:33,058 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 162. +2024-12-01 01:18:33,250 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 163, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:18:33,250 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:18:33,250 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:18:33,380 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:18:35,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 164, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '2bee10eeace7a673ea73683be6cdfb22', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 01:18:35,192 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:18:35,192 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:18:39,181 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:18:39,181 - discord.client - DEBUG - Dispatching event message +2024-12-01 01:18:39,256 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:18:39,256 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 01:18:39,256 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 01:18:49,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 167, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:18:49,648 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:18:49,648 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:19:03,927 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 168, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:19:03,927 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:19:03,927 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:19:07,931 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 169, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:19:07,931 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:19:07,931 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:19:14,314 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 169. +2024-12-01 01:19:14,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:19:23,382 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 170, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:19:23,382 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:19:23,382 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:19:29,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 171, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:19:29,112 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:19:29,112 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:19:48,353 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 172, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:19:48,353 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:19:48,353 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:19:49,353 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 173, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:19:49,353 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:19:49,353 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:19:55,498 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 174, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:19:55,498 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:19:55,498 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:19:55,577 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 174. +2024-12-01 01:19:55,932 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:20:23,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 175, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '7c687f6664a5920b24e229f6776cb280', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 01:20:23,399 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:20:23,399 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:20:24,286 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:20:24,286 - discord.client - DEBUG - Dispatching event message +2024-12-01 01:20:24,366 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:20:24,366 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 01:20:24,366 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 01:20:36,885 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 177. +2024-12-01 01:20:37,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:20:53,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 178, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:20:53,734 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:20:53,734 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:21:18,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-01 01:21:18,469 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:21:56,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 179, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:21:56,404 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:21:56,404 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:21:59,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 179. +2024-12-01 01:21:59,714 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:22:07,776 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 180, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:22:07,776 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:22:07,776 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:22:31,851 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 181, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:22:31,857 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:22:31,857 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:22:40,667 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-01 01:22:40,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:23:21,922 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-01 01:23:22,246 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:24:03,188 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-01 01:24:03,495 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:24:44,441 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-01 01:24:44,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:24:52,618 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 182, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-30T19:54:52.668000+00:00', 'pinned': False, 'nonce': '1312507167001018368', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312507162181898241', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'https://tenor.com/view/shunsui-anime-gif-9421128', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-01 01:24:52,634 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:24:52,634 - discord.client - DEBUG - Dispatching event message +2024-12-01 01:24:52,800 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 183, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-11-30T19:54:52.668000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312507162181898241', 'flags': 0, 'embeds': [{'video': {'width': 528, 'url': 'https://media.tenor.com/-Kq-WxiFPosAAAPo/shunsui-anime.mp4', 'proxy_url': 'https://images-ext-1.discordapp.net/external/QMXJgiuxikzRoDc5C8OyCwjMVs3p3K-I6LYdNGG1JgE/https/media.tenor.com/-Kq-WxiFPosAAAPo/shunsui-anime.mp4', 'placeholder_version': 1, 'placeholder': 'UigSDYQIaGhzd4uIiJd4dgh2qRB2', 'height': 354, 'flags': 0}, 'url': 'https://tenor.com/view/shunsui-anime-gif-9421128', 'type': 'gifv', 'thumbnail': {'width': 528, 'url': 'https://media.tenor.com/-Kq-WxiFPosAAAAe/shunsui-anime.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/R-sOpL1zULqwAygrc-RwCjXzo8z8t765dBsusmcL7eY/https/media.tenor.com/-Kq-WxiFPosAAAAe/shunsui-anime.png', 'placeholder_version': 1, 'placeholder': 'UigSDYQIaGhzd4uIiJd4dgh2qRB2', 'height': 354, 'flags': 0}, 'provider': {'url': 'https://tenor.co', 'name': 'Tenor'}, 'content_scan_version': 1}], 'edited_timestamp': None, 'content': 'https://tenor.com/view/shunsui-anime-gif-9421128', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-01 01:24:52,800 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:24:52,800 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 01:24:52,800 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 01:25:25,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 183. +2024-12-01 01:25:26,009 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:26:06,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 183. +2024-12-01 01:26:07,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:26:48,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 183. +2024-12-01 01:26:48,524 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:26:55,228 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 184, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:26:55,228 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:26:55,228 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:27:29,478 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-01 01:27:29,802 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:27:47,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 185, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '0e8c4aef129a217590179d1caedafc78', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 01:27:47,313 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:27:47,313 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:27:49,219 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:27:49,219 - discord.client - DEBUG - Dispatching event message +2024-12-01 01:27:49,250 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:27:49,250 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 01:27:49,250 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 01:28:10,734 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:28:11,041 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:28:51,990 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:28:52,301 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:29:33,254 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:29:33,558 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:30:14,508 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:30:14,813 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:30:55,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:30:56,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:31:37,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:31:37,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:32:18,281 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:32:18,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:32:59,537 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:32:59,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:33:40,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:33:41,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:34:22,059 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:34:22,367 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:35:03,319 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:35:03,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:35:44,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:35:44,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:36:25,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:36:26,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:37:07,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:37:07,432 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:37:48,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:37:48,680 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:38:29,611 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:38:29,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:39:10,875 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:39:11,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:39:52,131 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:39:52,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:40:33,392 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:40:33,717 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:41:14,652 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:41:14,958 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:41:55,905 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:41:56,229 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:42:37,170 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:42:37,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:43:18,435 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:43:18,741 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:43:59,700 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:44:00,010 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:44:40,963 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:44:41,293 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:45:22,228 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:45:22,551 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:46:03,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-01 01:46:03,808 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:46:29,494 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 188, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:46:29,494 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:46:29,494 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:46:37,909 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 189, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:46:37,925 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:46:37,925 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:46:38,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 190, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '3c139ee2615c904f70fbc426a17729fa', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:46:38,405 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:46:38,405 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:46:41,718 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:46:41,718 - discord.client - DEBUG - Dispatching event message +2024-12-01 01:46:42,716 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:46:42,716 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 01:46:42,716 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 01:46:44,353 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 193, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '3c139ee2615c904f70fbc426a17729fa', 'self_video': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:46:44,353 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:46:44,353 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:46:44,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 193. +2024-12-01 01:46:45,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:47:26,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 193. +2024-12-01 01:47:26,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:47:43,489 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 194, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '3c139ee2615c904f70fbc426a17729fa', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:47:43,489 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:47:43,489 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:48:01,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 195, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '3c139ee2615c904f70fbc426a17729fa', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 01:48:01,392 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:48:01,392 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:48:01,716 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:48:01,716 - discord.client - DEBUG - Dispatching event message +2024-12-01 01:48:01,764 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:48:01,764 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 01:48:01,764 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 01:48:07,261 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 197. +2024-12-01 01:48:07,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:48:48,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 197. +2024-12-01 01:48:48,843 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:49:29,781 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 197. +2024-12-01 01:49:30,088 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:49:58,791 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 198, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:49:58,791 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:49:58,791 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:50:09,127 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 199, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:50:09,127 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:50:09,127 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:50:11,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. +2024-12-01 01:50:11,356 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:50:52,293 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. +2024-12-01 01:50:52,600 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:51:33,554 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. +2024-12-01 01:51:33,862 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:52:14,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. +2024-12-01 01:52:15,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:52:56,064 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. +2024-12-01 01:52:56,374 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:53:37,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. +2024-12-01 01:53:37,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:54:18,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. +2024-12-01 01:54:18,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:54:59,853 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 199. +2024-12-01 01:55:00,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:55:24,177 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 200, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:55:24,177 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:55:24,177 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:55:37,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 201, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:55:37,904 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:55:37,904 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:55:40,279 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 202, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:55:40,279 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:55:40,279 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:55:41,117 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 202. +2024-12-01 01:55:41,431 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:56:11,159 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 203, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 01:56:11,163 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 01:56:11,163 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 01:56:22,372 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. +2024-12-01 01:56:22,676 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:57:03,629 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. +2024-12-01 01:57:03,955 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:57:44,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. +2024-12-01 01:57:45,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:58:26,150 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. +2024-12-01 01:58:26,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:59:07,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. +2024-12-01 01:59:07,708 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 01:59:48,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 203. +2024-12-01 01:59:48,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:00:26,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 204, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 02:00:26,587 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:00:26,587 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:00:29,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:00:30,230 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:01:11,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:01:11,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:01:52,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:01:52,727 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:02:33,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:02:34,040 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:03:14,980 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:03:15,302 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:03:56,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:03:56,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:04:37,495 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:04:37,833 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:05:18,747 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:05:19,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:06:00,013 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:06:00,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:06:41,266 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:06:41,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:07:22,527 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:07:22,840 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:08:03,782 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:08:04,169 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:08:45,046 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:08:45,401 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:09:26,300 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:09:26,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:10:07,557 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:10:07,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:10:48,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:10:49,200 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:11:30,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:11:30,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:12:11,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:12:11,637 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:12:52,581 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:12:52,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:13:33,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:13:34,440 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:14:15,100 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 204. +2024-12-01 02:14:15,478 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:14:33,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 205, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 02:14:33,175 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:14:33,175 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:14:36,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 206, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'f34ee3be0877099d4c8d6f2e5321219b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 02:14:36,906 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:14:36,906 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:14:40,326 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:14:40,326 - discord.client - DEBUG - Dispatching event message +2024-12-01 02:14:40,427 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:14:40,427 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 02:14:40,427 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 02:14:56,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:14:56,765 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:15:37,621 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:15:38,024 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:16:18,881 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:16:19,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:17:00,138 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:17:00,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:17:41,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:17:42,029 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:18:22,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:18:22,981 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:19:03,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:19:04,237 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:19:45,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:19:45,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:20:26,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:20:26,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:21:07,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:21:08,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:21:48,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:21:49,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:22:30,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:22:30,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:23:11,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:23:11,799 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:23:52,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:23:53,132 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:24:33,994 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:24:34,306 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:25:15,247 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:25:15,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:25:56,502 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:25:56,810 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:26:37,762 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:26:38,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:27:19,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:27:19,336 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:28:00,287 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:28:00,674 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:28:41,550 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:28:41,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:29:22,814 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:29:23,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:30:04,076 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:30:04,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:30:45,336 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:30:45,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:31:26,588 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:31:26,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:32:07,850 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 208. +2024-12-01 02:32:08,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:32:38,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 209, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 02:32:38,131 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:32:38,131 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:32:40,551 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 210, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 02:32:40,551 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:32:40,551 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:32:41,232 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 211, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 02:32:41,232 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:32:41,232 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:32:43,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 212, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 02:32:43,563 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:32:43,563 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:32:49,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:32:49,505 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:33:30,370 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:33:30,771 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:34:11,626 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:34:11,996 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:34:52,890 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:34:53,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:35:34,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:35:34,466 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:36:15,394 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:36:15,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:36:56,648 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:36:56,987 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:37:37,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:37:38,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:38:19,154 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:38:19,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:39:00,420 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:39:00,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:39:41,675 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:39:42,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:40:22,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:40:23,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:41:04,190 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:41:04,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:41:45,456 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:41:45,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:42:26,721 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:42:27,061 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:43:07,982 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:43:08,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:43:49,236 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:43:49,621 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:44:30,501 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:44:30,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:45:11,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:45:12,088 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:45:53,031 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:45:53,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:46:34,285 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:46:34,689 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:47:15,551 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:47:15,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:47:56,810 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:47:57,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:48:38,073 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:48:38,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:49:19,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:49:19,652 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:50:00,592 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:50:00,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:50:41,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:50:42,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:51:23,118 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:51:23,424 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:52:04,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:52:04,675 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:52:45,625 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:52:45,931 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:53:26,882 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:53:27,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:54:08,145 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:54:08,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:54:49,406 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:54:49,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:55:30,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:55:30,970 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:56:11,921 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:56:12,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:56:53,172 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:56:53,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:57:34,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 212. +2024-12-01 02:57:34,731 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:57:51,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 213, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 02:57:51,189 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:57:51,189 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:58:05,440 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 214, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': 'f62caa1b587693a2379734d2746a22a1', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 02:58:05,440 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:58:05,440 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:58:08,283 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:58:08,283 - discord.client - DEBUG - Dispatching event message +2024-12-01 02:58:08,363 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:58:08,379 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 02:58:08,379 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 02:58:15,689 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 216. +2024-12-01 02:58:16,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:58:56,949 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 216. +2024-12-01 02:58:57,261 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 02:59:18,281 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 217, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '23fe9d706779618977fd8976f868b663', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 02:59:18,283 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:59:18,283 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:59:20,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 218, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '514ff4d5d28e0a2f179f1434283a5742', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 02:59:20,746 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:59:20,746 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:59:21,018 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 219, 'op': 0, 'd': {'member': {'user': {'username': 'hellraiser007', 'public_flags': 256, 'id': '851746583590600714', 'global_name': 'Desty', 'display_name': 'Desty', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e9d4857dbcc9d7721d66b0396d454ef7'}, 'roles': ['1166279735983230976', '1062340890439463012', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1088385891116003380', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-01-18T08:20:54.869000+00:00', 'flags': 4, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '851746583590600714', 'suppress': False, 'session_id': '219534db91225595e0cf349b4206170c', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 02:59:21,018 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:59:21,018 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 02:59:21,018 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 220, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} +2024-12-01 02:59:21,018 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:59:21,018 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. +2024-12-01 02:59:23,230 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:59:23,230 - discord.client - DEBUG - Dispatching event message +2024-12-01 02:59:23,278 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 02:59:23,278 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 02:59:23,278 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 02:59:38,203 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 02:59:38,529 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:00:19,464 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:00:19,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:01:00,719 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:01:01,047 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:01:41,978 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:01:42,301 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:02:23,233 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:02:23,555 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:03:04,497 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:03:04,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:03:45,749 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:03:46,072 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:04:27,012 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:04:27,319 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:05:08,266 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:05:08,570 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:05:49,532 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:05:49,854 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:06:30,791 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:06:31,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:07:12,043 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:07:12,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:07:53,307 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:07:53,614 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:08:34,559 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:08:34,865 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:09:15,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:09:16,121 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:09:57,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:09:57,372 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:10:38,333 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:10:38,657 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:11:19,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:11:19,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:12:00,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:12:01,154 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:12:42,101 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:12:42,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:13:23,356 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:13:23,677 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:14:04,616 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:14:04,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:14:45,873 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:14:46,195 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:15:27,129 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:15:27,437 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:16:08,380 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:16:08,703 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:16:49,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:16:49,944 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:17:30,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:17:31,206 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:18:12,148 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:18:12,456 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:18:53,402 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:18:53,729 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:19:34,664 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:19:34,971 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:20:15,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:20:16,254 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:20:57,188 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:20:57,494 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:21:38,442 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:21:38,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:22:19,695 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:22:20,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:23:00,950 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:23:01,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:23:42,212 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:23:42,534 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:24:23,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:24:23,795 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:25:04,730 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:25:05,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:25:45,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:25:46,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:26:27,256 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:26:27,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:27:08,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:27:08,835 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:27:49,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:27:50,082 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:28:31,042 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:28:31,357 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:29:12,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:29:12,614 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:29:53,565 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:29:53,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:30:34,819 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:30:35,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:31:16,080 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:31:16,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:31:57,332 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:31:57,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:32:38,585 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:32:38,892 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:33:19,848 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:33:20,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:34:01,098 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:34:01,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:34:42,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:34:42,683 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:35:23,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:35:23,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:36:04,894 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:36:05,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:36:46,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:36:46,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:37:27,399 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:37:27,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:38:08,650 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:38:08,956 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:38:49,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:38:50,223 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:39:31,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:39:31,488 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:40:12,435 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:40:12,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:40:53,694 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:40:54,001 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:41:34,948 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:41:35,255 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:42:16,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:42:16,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:42:57,464 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:42:57,788 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:43:38,721 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:43:39,027 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:44:19,984 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:44:20,323 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:45:01,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:45:01,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:45:42,492 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:45:42,798 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:46:23,752 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:46:24,057 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:47:05,016 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:47:05,324 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:47:46,270 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:47:46,577 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:48:27,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 222. +2024-12-01 03:48:27,841 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:49:01,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 03:49:01,392 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 03:49:01,706 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 03:49:01,706 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 03:49:02,198 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 03:49:02,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-t8hc",{"micros":0.0}]']}} +2024-12-01 03:49:02,198 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 03:49:02,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:49:02,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 223, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-t8hc",{"micros":2193,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":1875,"calls":[]},"session_lookup_finished",{"micros":12,"calls":[]},"discord-sessions-prd-1-199",{"micros":42}]}]']}} +2024-12-01 03:49:02,528 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 03:49:02,528 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 03:49:02,528 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 03:49:43,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:49:43,789 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:50:24,731 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:50:25,039 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:51:05,995 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:51:06,302 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:51:47,249 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:51:47,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:52:28,513 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:52:28,821 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:53:09,780 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:53:10,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:53:51,039 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:53:51,363 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:54:32,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:54:32,610 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:55:13,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:55:13,885 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:55:54,816 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:55:55,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:56:36,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:56:36,390 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:57:17,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:57:17,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:57:58,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:57:58,901 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:58:39,830 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:58:40,152 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 03:59:21,080 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 03:59:21,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:00:02,335 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:00:02,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:00:43,586 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:00:43,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:01:24,853 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:01:25,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:02:06,119 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:02:06,441 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:02:47,382 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:02:47,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:03:28,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:03:28,955 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:04:09,890 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:04:10,215 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:04:51,144 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:04:51,466 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:05:32,398 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:05:32,724 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:06:13,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:06:13,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:06:54,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:06:55,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:07:36,179 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:07:36,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:08:17,440 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:08:17,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:08:58,693 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:08:59,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:09:39,946 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:09:40,284 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:10:21,206 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:10:21,529 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:11:02,472 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:11:02,811 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:11:43,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:11:44,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:12:24,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:12:25,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:13:06,261 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:13:06,576 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:13:47,512 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:13:47,841 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:14:28,774 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:14:29,090 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:15:10,032 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:15:10,359 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:15:51,284 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:15:51,591 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:16:32,544 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:16:32,866 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:17:13,806 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:17:14,129 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:17:55,064 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:17:55,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:18:36,322 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:18:36,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:19:17,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:19:17,900 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:19:58,839 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:19:59,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:20:40,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:20:40,408 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:21:21,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:21:21,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:22:02,627 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:22:02,934 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:22:43,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:22:44,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:23:25,136 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:23:25,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:24:06,398 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:24:06,721 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:24:47,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:24:47,958 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:25:28,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:25:29,232 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:26:10,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:26:10,486 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:26:51,419 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:26:51,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:27:32,674 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:27:32,980 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:28:13,938 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:28:14,245 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:28:55,203 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:28:55,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:29:36,461 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:29:36,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:30:17,727 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:30:18,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:30:58,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:30:59,305 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:31:40,235 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:31:40,548 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:32:21,491 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:32:21,813 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:33:02,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:33:03,075 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:33:44,011 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:33:44,334 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:34:25,275 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:34:25,581 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:35:06,531 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:35:06,839 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:35:47,786 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:35:48,091 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:36:29,040 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:36:29,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:37:10,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:37:10,628 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:37:51,555 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:37:51,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:38:32,807 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:38:33,114 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:39:14,071 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:39:14,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:39:55,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:39:55,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:40:36,588 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:40:36,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:41:17,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:41:18,167 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:41:59,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:41:59,436 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:42:40,364 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:42:40,672 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:43:21,617 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:43:21,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:44:02,870 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 223. +2024-12-01 04:44:03,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:44:21,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 04:44:21,418 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 04:44:21,730 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 04:44:21,730 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 04:44:22,144 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 04:44:22,144 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-h123",{"micros":0.0}]']}} +2024-12-01 04:44:22,144 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 04:44:22,467 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:44:22,467 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 224, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-h123",{"micros":3234,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":2984,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-199",{"micros":31}]}]']}} +2024-12-01 04:44:22,467 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 04:44:22,467 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 04:44:22,467 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 04:45:03,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:45:03,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:45:44,688 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:45:44,996 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:46:25,950 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:46:26,273 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:47:07,210 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:47:07,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:47:48,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:47:48,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:48:29,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:48:30,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:49:10,994 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:49:11,316 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:49:52,252 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:49:52,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:50:33,513 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:50:33,826 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:51:14,764 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:51:15,084 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:51:56,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:51:56,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:52:37,288 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:52:37,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:53:18,544 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:53:18,849 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:53:59,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:54:00,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:54:41,072 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:54:41,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:55:22,336 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:55:22,642 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:56:03,591 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:56:03,914 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:56:44,855 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:56:45,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:57:26,111 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:57:26,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:58:07,365 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:58:07,670 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:58:48,618 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:58:48,930 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 04:59:29,870 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 04:59:30,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:00:11,123 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:00:11,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:00:52,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:00:52,697 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:01:33,645 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:01:33,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:02:14,907 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:02:15,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:02:56,166 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:02:56,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:03:37,431 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:03:37,740 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:04:18,683 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:04:18,990 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:04:59,948 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:05:00,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:05:41,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:05:41,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:06:22,465 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:06:22,772 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:07:03,723 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:07:04,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:07:44,989 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:07:45,297 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:08:26,240 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:08:26,547 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:09:07,493 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:09:07,799 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:09:48,746 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:09:49,068 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:10:30,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:10:30,334 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:11:11,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:11:11,591 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:11:52,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:11:52,824 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:12:33,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:12:34,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:13:15,028 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:13:15,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:13:56,286 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:13:56,609 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:14:37,542 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 224. +2024-12-01 05:14:37,848 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:14:45,482 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 05:14:45,482 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 05:14:45,804 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 05:14:45,804 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 05:14:46,208 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 05:14:46,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-vf82",{"micros":0.0}]']}} +2024-12-01 05:14:46,208 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 05:14:46,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:14:46,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 225, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-vf82",{"micros":1094,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":789,"calls":[]},"session_lookup_finished",{"micros":14,"calls":[]},"discord-sessions-prd-1-199",{"micros":25}]}]']}} +2024-12-01 05:14:46,531 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 05:14:46,531 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 05:14:46,531 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 05:15:27,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:15:27,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:16:08,742 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:16:09,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:16:50,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:16:50,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:17:31,256 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:17:31,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:18:12,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:18:12,843 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:18:53,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:18:54,084 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:19:35,046 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:19:35,353 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:20:16,313 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:20:16,620 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:20:57,567 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:20:57,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:21:38,821 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:21:39,127 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:22:20,087 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:22:20,394 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:23:01,342 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:23:01,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:23:42,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:23:42,910 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:24:23,857 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:24:24,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:25:05,118 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:25:05,431 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:25:46,375 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:25:46,687 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:26:27,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:26:27,939 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:27:08,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:27:09,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:27:50,136 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:27:50,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:28:31,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:28:31,695 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:29:12,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:29:12,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:29:53,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:29:54,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:30:35,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:30:35,500 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:31:16,429 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:31:16,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:31:57,692 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:31:58,014 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:32:38,957 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:32:39,296 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:33:20,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:33:20,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:34:01,470 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:34:01,800 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:34:42,725 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:34:43,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:35:23,976 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:35:24,300 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:36:05,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:36:05,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:36:46,502 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:36:46,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:37:27,763 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:37:28,071 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:38:09,015 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:38:09,324 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:38:50,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:38:50,574 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:39:31,527 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:39:31,852 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:40:12,778 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:40:13,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:40:54,035 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:40:54,359 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:41:35,298 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:41:35,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:42:16,561 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:42:16,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:42:57,826 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:42:58,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:43:39,084 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:43:39,423 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:44:20,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:44:20,668 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:45:01,604 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:45:01,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:45:42,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:45:43,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:46:24,123 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:46:24,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:47:05,384 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:47:05,707 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:47:46,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:47:46,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:48:27,912 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:48:28,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:49:09,176 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:49:09,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:49:50,435 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:49:50,758 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:50:31,692 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:50:31,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:51:12,946 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:51:13,268 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:51:54,213 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:51:54,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:52:35,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:52:35,790 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:53:16,718 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:53:17,040 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:53:57,984 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:53:58,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:54:39,249 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:54:39,565 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:55:20,508 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:55:20,815 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:56:01,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:56:02,087 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:56:43,028 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:56:43,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:57:24,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:57:24,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:58:05,552 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:58:05,873 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:58:46,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:58:47,136 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 05:59:28,068 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 05:59:28,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:00:09,326 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:00:09,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:00:50,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:00:50,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:01:31,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:01:32,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:02:13,104 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:02:13,427 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:02:54,363 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:02:54,687 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:03:35,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:03:35,936 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:04:16,894 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:04:17,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:04:58,145 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:04:58,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:05:39,398 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:05:39,720 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:06:20,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:06:20,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:07:01,912 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:07:02,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:07:43,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:07:43,490 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:08:24,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:08:24,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:09:05,685 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:09:06,013 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:09:46,948 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:09:47,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:10:28,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:10:28,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:11:09,467 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:11:09,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:11:50,729 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:11:51,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:12:31,983 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:12:32,290 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:13:13,247 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:13:13,570 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:13:54,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:13:54,805 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:14:35,756 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:14:36,079 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:15:17,020 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:15:17,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:15:58,283 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:15:58,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:16:39,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:16:39,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:17:20,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:17:21,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:18:02,063 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:18:02,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:18:43,328 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:18:43,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:19:24,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:19:24,899 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:20:05,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:20:06,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:20:47,125 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:20:47,447 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:21:28,387 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:21:28,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:22:09,652 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:22:09,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:22:50,909 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:22:51,233 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:23:32,173 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:23:32,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:24:13,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:24:13,763 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:24:54,702 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:24:55,025 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:25:35,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:25:36,270 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:26:17,225 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:26:17,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:26:58,481 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:26:58,805 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:27:39,748 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:27:40,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:28:21,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:28:21,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:29:02,272 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:29:02,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:29:43,531 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:29:43,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:30:24,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:30:25,112 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:31:06,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:31:06,381 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:31:47,325 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:31:47,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:32:28,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:32:28,885 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:33:09,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:33:10,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:33:51,098 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:33:51,421 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:34:32,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:34:32,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:35:13,622 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 225. +2024-12-01 06:35:13,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:35:40,406 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 06:35:40,406 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 06:35:40,729 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 06:35:40,729 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 06:35:41,133 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 06:35:41,133 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-tbgd",{"micros":0.0}]']}} +2024-12-01 06:35:41,133 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 06:35:41,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:35:41,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 226, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-tbgd",{"micros":3020,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":1572,"calls":[]},"session_lookup_finished",{"micros":10,"calls":[]},"discord-sessions-prd-1-199",{"micros":27}]}]']}} +2024-12-01 06:35:41,455 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 06:35:41,455 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 06:35:41,455 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 06:36:22,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:36:22,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:37:03,657 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:37:03,980 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:37:44,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:37:45,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:38:26,178 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:38:26,501 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:39:07,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:39:07,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:39:48,695 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:39:49,005 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:40:29,948 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:40:30,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:41:11,213 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:41:11,520 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:41:52,476 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:41:52,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:42:33,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:42:34,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:43:15,004 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:43:15,310 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:43:56,270 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:43:56,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:44:37,524 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:44:37,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:45:18,787 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:45:19,093 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:46:00,038 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:46:00,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:46:41,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:46:41,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:47:22,555 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:47:22,865 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:48:03,815 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:48:04,122 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:48:45,070 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:48:45,376 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:49:26,324 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:49:26,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:50:07,585 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:50:07,892 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:50:48,846 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:50:49,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:51:30,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:51:30,414 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:52:11,367 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:52:11,678 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:52:52,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:52:52,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:53:33,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:53:34,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:54:15,157 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:54:15,464 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:54:56,419 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:54:56,754 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:55:37,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:55:37,985 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:56:18,945 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:56:19,252 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:57:00,196 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:57:00,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:57:41,448 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:57:41,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:58:22,712 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:58:23,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:59:03,976 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:59:04,282 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 06:59:45,232 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 06:59:45,571 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:00:26,488 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:00:26,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:01:07,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:01:08,080 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:01:48,994 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:01:49,317 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:02:30,260 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:02:30,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:03:11,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:03:11,833 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:03:52,778 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:03:53,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:04:34,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:04:34,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:05:15,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:05:15,598 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:05:56,551 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:05:56,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:06:37,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:06:38,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:07:19,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:07:19,368 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:08:00,322 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:08:00,631 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:08:41,582 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:08:41,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:09:22,846 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:09:23,154 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:10:04,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:10:04,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:10:45,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:10:45,675 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:11:26,621 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:11:26,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:12:07,883 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:12:08,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:12:49,137 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:12:49,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:13:30,389 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:13:30,716 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:14:11,641 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:14:11,947 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:14:52,904 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:14:53,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:15:34,165 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:15:34,477 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:16:15,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:16:15,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:16:56,694 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:16:57,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:17:37,945 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:17:38,264 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:18:19,198 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:18:19,511 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:19:00,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:19:00,755 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:19:41,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:19:42,020 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:20:22,967 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:20:23,276 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:21:04,232 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:21:04,539 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:21:45,495 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:21:45,805 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:22:26,747 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:22:27,053 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:23:08,007 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:23:08,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:23:49,266 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:23:49,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:24:30,523 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:24:30,829 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:25:11,780 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:25:12,085 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:25:53,039 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:25:53,365 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:26:34,300 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:26:34,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:27:15,554 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:27:15,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:27:56,816 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:27:57,132 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:28:38,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:28:38,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:29:19,340 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:29:19,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:30:00,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:30:00,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:30:41,862 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:30:42,179 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:31:23,126 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:31:23,448 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:32:04,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:32:04,698 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:32:45,643 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:32:45,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:33:26,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:33:27,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:34:08,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:34:08,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:34:49,420 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:34:49,741 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:35:30,678 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:35:30,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:36:11,942 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:36:12,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:36:53,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:36:53,504 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:37:34,453 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:37:34,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:38:15,714 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:38:16,021 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:38:56,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:38:57,270 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:39:38,217 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:39:38,524 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:40:19,470 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:40:19,777 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:41:00,727 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:41:01,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:41:41,988 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:41:42,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:42:23,242 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:42:23,550 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:43:04,495 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:43:04,813 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:43:45,759 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:43:46,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:44:27,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:44:27,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:45:08,279 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:45:08,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:45:49,535 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:45:49,841 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:46:30,798 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:46:31,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:47:12,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:47:12,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:47:53,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:47:53,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:48:34,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:48:34,869 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:49:15,825 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:49:16,140 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:49:57,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:49:57,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:50:38,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:50:38,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:51:19,588 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:51:19,895 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:52:00,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:52:01,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:52:42,093 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:52:42,407 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:53:23,357 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:53:23,673 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:54:04,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:54:04,930 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:54:45,879 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:54:46,186 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:55:27,130 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:55:27,437 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:56:08,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:56:08,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:56:49,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:56:49,968 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:57:30,916 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:57:31,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:58:12,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:58:12,481 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:58:53,434 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:58:53,747 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 07:59:34,693 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 07:59:35,021 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:00:15,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:00:16,262 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:00:57,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:00:57,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:01:38,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:01:38,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:02:19,718 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:02:20,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:03:00,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:03:01,278 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:03:42,232 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:03:42,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:04:23,484 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:04:23,790 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:05:04,746 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:05:05,067 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:05:46,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:05:46,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:06:27,272 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:06:27,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:07:08,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:07:08,848 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:07:49,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:07:50,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:08:31,047 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:08:31,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:09:12,299 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:09:12,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:09:53,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:09:53,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:10:34,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:10:35,118 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:11:16,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:11:16,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:11:57,340 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:11:57,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:12:38,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:12:38,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:13:19,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:13:20,151 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:14:01,098 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:14:01,410 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:14:42,350 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:14:42,667 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:15:23,616 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:15:23,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:16:04,873 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:16:05,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:16:46,139 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:16:46,462 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:17:27,396 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:17:27,703 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:18:08,662 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:18:08,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:18:49,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:18:50,230 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:19:31,172 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:19:31,485 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:20:12,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:20:12,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:20:53,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:20:54,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:21:34,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:21:35,270 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:22:16,228 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:22:16,536 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:22:57,482 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:22:57,788 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:23:38,734 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:23:39,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:24:19,986 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:24:20,292 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:25:01,241 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:25:01,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:25:42,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:25:42,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:26:23,754 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:26:24,062 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:27:05,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:27:05,316 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:27:46,270 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:27:46,575 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:28:27,535 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:28:27,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:29:08,793 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:29:09,099 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:29:50,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 226. +2024-12-01 08:29:50,367 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:30:03,941 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 227, 'op': 0, 'd': {'user': {'username': 'duccheese', 'public_flags': 64, 'id': '796701370237059072', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '154497eff6b19da5b4e71189c70b187e'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T10:04:02.135000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 08:30:03,941 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 08:30:03,985 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 08:30:03,985 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 08:30:31,315 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:30:31,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:31:12,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:31:12,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:31:53,840 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:31:54,146 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:32:35,092 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:32:35,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:33:16,348 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:33:16,654 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:33:57,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:33:57,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:34:38,861 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:34:39,184 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:35:20,121 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:35:20,427 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:36:01,380 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:36:01,689 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:36:42,639 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:36:42,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:37:23,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:37:24,223 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:38:05,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:38:05,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:38:46,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:38:46,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:39:27,682 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:39:27,988 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:40:08,937 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:40:09,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:40:50,194 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:40:50,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:41:31,456 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:41:31,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:42:12,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:42:13,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:42:53,970 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:42:54,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:43:35,226 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:43:35,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:44:16,482 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:44:16,789 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:44:57,744 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:44:58,067 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:45:39,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:45:39,317 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:46:20,274 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:46:20,579 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:47:01,527 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:47:01,834 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:47:42,790 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:47:43,113 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:48:24,045 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:48:24,350 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:49:05,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:49:05,624 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:49:46,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:49:46,882 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:50:27,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:50:28,143 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:51:09,099 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:51:09,404 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:51:50,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:51:50,668 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:52:31,627 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:52:31,937 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:53:12,890 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:53:13,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:53:54,151 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:53:54,458 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:54:35,412 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:54:35,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:55:16,667 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:55:16,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:55:57,931 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:55:58,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:56:39,186 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:56:39,494 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:57:20,448 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:57:20,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:58:01,711 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:58:02,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:58:42,971 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:58:43,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 08:59:24,231 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 08:59:24,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:00:05,484 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:00:05,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:00:46,734 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:00:47,052 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:01:27,992 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:01:28,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:02:09,249 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:02:09,555 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:02:50,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:02:50,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:03:31,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:03:32,075 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:04:13,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:04:13,336 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:04:54,278 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:04:54,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:05:35,542 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:05:35,851 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:06:16,801 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:06:17,124 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:06:58,059 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:06:58,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:07:39,318 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:07:39,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:08:20,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:08:20,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:09:01,840 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:09:02,156 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:09:43,091 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:09:43,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:10:24,353 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:10:24,661 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:11:05,613 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:11:05,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:11:46,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:11:47,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:12:28,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:12:28,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:13:09,382 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:13:09,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:13:50,646 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:13:50,953 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:14:31,906 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:14:32,209 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:15:13,162 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:15:13,470 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:15:54,429 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:15:54,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:16:35,680 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:16:35,986 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:17:16,936 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:17:17,246 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:17:58,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:17:58,506 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:18:39,462 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:18:39,769 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:19:20,722 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:19:21,026 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:20:01,982 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:20:02,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:20:43,241 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:20:43,556 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:21:24,495 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:21:24,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:22:05,751 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:22:06,057 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:22:47,006 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:22:47,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:23:28,272 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:23:28,580 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:24:09,536 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:24:09,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:24:50,791 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:24:51,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:25:32,047 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:25:32,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:26:13,309 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:26:13,615 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:26:54,573 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:26:54,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:27:35,827 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:27:36,141 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:28:17,091 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:28:17,414 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:28:58,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:28:58,652 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:29:39,600 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:29:39,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:30:20,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:30:21,187 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:31:02,123 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:31:02,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:31:43,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:31:43,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:32:24,642 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:32:24,967 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:33:05,902 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:33:06,228 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:33:47,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:33:47,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:34:28,420 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:34:28,727 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:35:09,684 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:35:09,990 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:35:50,946 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:35:51,260 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:36:32,198 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:36:32,521 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:37:13,462 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:37:13,792 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:37:54,722 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:37:55,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:38:35,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:38:36,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:39:17,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:39:17,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:39:58,495 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:39:58,820 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:40:39,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:40:40,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:41:21,009 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:41:21,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:42:02,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:42:02,574 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:42:43,527 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:42:43,845 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:43:24,785 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:43:25,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:44:06,048 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:44:06,356 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:44:47,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:44:47,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:45:28,561 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:45:28,867 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:46:09,824 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:46:10,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:46:51,076 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:46:51,382 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:47:32,341 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:47:32,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:48:13,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:48:13,912 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:48:54,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:48:55,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:49:36,122 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:49:36,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:50:17,377 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:50:17,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:50:58,643 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:50:58,956 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:51:39,906 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:51:40,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:52:21,164 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:52:21,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:53:02,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:53:02,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:53:43,685 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:53:44,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:54:24,946 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:54:25,252 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:55:06,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:55:06,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:55:47,464 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:55:47,769 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:56:28,725 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:56:29,048 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:57:09,990 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:57:10,316 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:57:51,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:57:51,571 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:58:32,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:58:32,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:59:13,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:59:14,076 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 09:59:55,017 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 09:59:55,341 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:00:36,275 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 10:00:36,596 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:01:17,533 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 10:01:17,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:01:58,793 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 10:01:59,114 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:02:40,053 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 227. +2024-12-01 10:02:40,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:02:48,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 10:02:48,630 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 10:02:48,953 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 10:02:48,953 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 10:02:49,373 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 10:02:49,373 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-50mj",{"micros":0.0}]']}} +2024-12-01 10:02:49,373 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 10:02:49,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:02:49,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 228, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-50mj",{"micros":547,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":231,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-199",{"micros":27}]}]']}} +2024-12-01 10:02:49,696 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 10:02:49,696 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 10:02:49,696 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 10:03:30,633 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:03:30,956 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:04:11,898 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:04:12,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:04:53,163 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:04:53,476 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:05:34,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:05:34,748 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:06:15,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:06:16,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:06:56,934 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:06:57,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:07:38,201 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:07:38,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:08:19,455 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:08:19,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:09:00,714 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:09:01,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:09:41,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:09:42,285 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:10:23,242 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:10:23,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:11:04,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:11:04,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:11:45,761 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:11:46,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:12:27,026 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:12:27,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:13:08,283 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:13:08,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:13:49,546 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:13:49,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:14:30,800 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:14:31,107 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:15:12,055 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:15:12,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:15:53,318 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:15:53,626 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:16:34,577 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:16:34,884 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:17:15,830 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:17:16,152 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:17:57,097 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:17:57,404 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:18:38,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:18:38,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:19:19,614 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:19:19,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:20:00,876 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:20:01,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:20:42,132 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:20:42,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:21:23,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:21:23,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:22:04,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:22:04,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:22:45,908 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:22:46,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:23:27,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:23:27,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:24:08,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:24:08,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:24:49,678 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:24:50,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:25:30,936 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:25:31,257 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:26:12,192 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:26:12,504 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:26:53,455 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:26:53,771 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:27:34,711 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:27:35,036 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:28:15,975 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:28:16,300 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:28:57,226 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:28:57,550 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:29:38,484 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:29:38,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:30:19,743 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:30:20,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:31:01,001 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:31:01,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:31:42,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:31:42,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:32:23,528 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:32:23,852 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:33:04,780 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:33:05,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:33:46,043 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:33:46,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:34:27,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:34:27,643 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:35:08,573 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:35:08,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:35:49,825 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:35:50,164 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:36:31,078 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:36:31,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:37:12,329 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:37:12,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:37:53,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:37:53,901 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:38:34,835 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:38:35,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:39:16,094 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:39:16,407 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:39:57,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:39:57,680 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:40:38,618 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:40:38,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:41:19,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:41:20,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:42:01,122 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:42:01,427 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:42:42,385 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:42:42,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:43:23,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:43:23,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:44:04,905 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:44:05,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:44:46,165 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:44:46,477 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:45:27,418 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 228. +2024-12-01 10:45:27,742 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:45:47,100 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 10:45:47,100 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 10:45:47,416 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 10:45:47,416 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 10:45:47,851 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 10:45:47,851 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-mks2",{"micros":0.0}]']}} +2024-12-01 10:45:47,851 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 10:45:48,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:45:48,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 229, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-mks2",{"micros":479,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":254,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-199",{"micros":22}]}]']}} +2024-12-01 10:45:48,176 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 10:45:48,176 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 10:45:48,176 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 10:46:29,105 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:46:29,428 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:47:10,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:47:10,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:47:51,625 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:47:51,948 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:48:32,885 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:48:33,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:49:14,149 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:49:14,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:49:55,408 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:49:55,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:50:36,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:50:36,979 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:51:17,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:51:18,249 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:51:59,177 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:51:59,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:52:40,437 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:52:40,760 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:53:21,703 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:53:22,026 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:54:02,955 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:54:03,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:54:44,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:54:44,543 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:55:25,480 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:55:25,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:56:06,740 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:56:07,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:56:47,991 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:56:48,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:57:29,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:57:29,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:58:10,513 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:58:10,827 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:58:51,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:58:52,074 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 10:59:33,032 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 10:59:33,338 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:00:14,286 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 11:00:14,593 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:00:55,547 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 11:00:55,854 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:01:36,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 11:01:37,141 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:02:18,073 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 11:02:18,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:02:59,336 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 11:02:59,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:03:40,592 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 11:03:40,898 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:04:21,846 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 11:04:22,169 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:05:03,097 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 229. +2024-12-01 11:05:03,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:05:27,202 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 230, 'op': 0, 'd': {'type': 19, 'tts': False, 'timestamp': '2024-12-01T05:35:28.810000+00:00', 'sticker_items': [{'name': 'Omniman', 'id': '1219037230832685108', 'format_type': 1}], 'referenced_message': {'type': 19, 'tts': False, 'timestamp': '2024-11-24T18:21:22.730000+00:00', 'position': 0, 'pinned': False, 'message_reference': {'type': 0, 'message_id': '1310153494866559046', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}], 'mention_roles': [], 'mention_everyone': False, 'id': '1310309305202901002', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'ching chong', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': []}, 'pinned': False, 'nonce': '1312653273525649408', 'message_reference': {'type': 0, 'message_id': '1310309305202901002', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'id': '1312653275551498252', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-01 11:05:27,202 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 11:05:27,259 - discord.client - DEBUG - Dispatching event message +2024-12-01 11:05:44,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. +2024-12-01 11:05:44,683 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:06:25,626 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. +2024-12-01 11:06:25,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:07:06,885 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. +2024-12-01 11:07:07,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:07:48,149 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. +2024-12-01 11:07:48,475 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:08:29,407 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. +2024-12-01 11:08:29,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:09:10,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. +2024-12-01 11:09:10,986 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:09:51,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 230. +2024-12-01 11:09:52,249 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:10:14,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 231, 'op': 0, 'd': {'user': {'username': 'roronoa_doraemon', 'public_flags': 64, 'id': '852888084098056242', 'global_name': 'v', 'display_name': 'v', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '4a2cf36a271a4926e350188d3826f8a5'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 11:10:14,719 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 11:10:14,719 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 11:10:14,719 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 11:10:18,352 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 232, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:40:19.947000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312654496668581959', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T05:40:16.446871+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/K2b3-cx4ntGRTyEWQQZeeKHckGC3_1jLPaUPeBncqEA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/K2b3-cx4ntGRTyEWQQZeeKHckGC3_1jLPaUPeBncqEA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 11:10:18,352 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 11:10:18,352 - discord.client - DEBUG - Dispatching event message +2024-12-01 11:10:18,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 233, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:40:19.947000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312654496668581959', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T05:40:16.446000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/K2b3-cx4ntGRTyEWQQZeeKHckGC3_1jLPaUPeBncqEA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/K2b3-cx4ntGRTyEWQQZeeKHckGC3_1jLPaUPeBncqEA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/avatars/852888084098056242/4a2cf36a271a4926e350188d3826f8a5.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 11:10:18,613 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 11:10:18,613 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 11:10:18,613 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 11:10:33,191 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. +2024-12-01 11:10:33,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:11:14,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. +2024-12-01 11:11:14,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:11:55,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. +2024-12-01 11:11:56,022 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:12:36,961 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. +2024-12-01 11:12:37,268 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:13:18,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. +2024-12-01 11:13:18,547 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:13:59,487 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. +2024-12-01 11:13:59,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:14:40,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. +2024-12-01 11:14:41,053 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:15:21,993 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 233. +2024-12-01 11:15:22,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:15:24,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 234, 'op': 0, 'd': {'user': {'username': 'roronoa_doraemon', 'public_flags': 64, 'id': '852888084098056242', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 11:15:24,590 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 11:15:24,590 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 11:15:24,590 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 11:15:28,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 235, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:45:30.085000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312655797481640027', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T05:45:26.308564+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/5.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 11:15:28,417 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 11:15:28,417 - discord.client - DEBUG - Dispatching event message +2024-12-01 11:15:28,476 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 236, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:45:30.085000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312655797481640027', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T05:45:26.308000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/5.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 852888084098056242'}, 'description': '<@852888084098056242>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'roronoa_doraemon', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 11:15:28,476 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 11:15:28,476 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 11:15:28,476 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 11:16:03,245 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 236. +2024-12-01 11:16:03,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:16:44,504 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 236. +2024-12-01 11:16:44,826 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:16:51,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 237, 'op': 0, 'd': {'user': {'username': 'dissabed_user_gsu234u4', 'public_flags': 64, 'id': '852888084098056242', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 11:16:51,863 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 11:16:51,863 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 11:16:51,863 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 11:16:53,346 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 238, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:46:55.017000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312656153712263208', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Name change', 'timestamp': '2024-12-01T05:46:53.579468+00:00', 'footer': {'text': 'ID: 852888084098056242'}, 'description': '**Before:** roronoa_doraemon\n**+After:** dissabed_user_gsu234u4', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'dissabed_user_gsu234u4', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 11:16:53,346 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 11:16:53,346 - discord.client - DEBUG - Dispatching event message +2024-12-01 11:16:53,389 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 239, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T05:46:55.017000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312656153712263208', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Name change', 'timestamp': '2024-12-01T05:46:53.579000+00:00', 'footer': {'text': 'ID: 852888084098056242'}, 'description': '**Before:** roronoa_doraemon\n**+After:** dissabed_user_gsu234u4', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/E61lHGLVt4b1Izdu7X0KJRGmYDpyFMvs9buCRCdKcxY/https/cdn.discordapp.com/embed/avatars/5.png', 'name': 'dissabed_user_gsu234u4', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/5.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 11:16:53,389 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 11:16:53,389 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 11:16:53,389 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 11:17:25,769 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:17:26,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:18:07,031 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:18:07,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:18:48,282 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:18:48,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:19:29,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:19:29,873 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:20:10,815 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:20:11,139 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:20:52,078 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:20:52,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:21:33,339 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:21:33,663 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:22:14,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:22:14,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:22:55,853 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:22:56,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:23:37,108 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:23:37,431 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:24:18,359 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:24:18,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:24:59,619 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:24:59,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:25:40,870 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:25:41,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:26:22,133 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:26:22,450 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:27:03,393 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:27:03,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:27:44,648 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:27:44,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:28:25,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:28:26,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:29:07,166 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:29:07,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:29:48,417 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:29:48,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:30:29,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:30:29,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:31:10,930 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:31:11,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:31:52,185 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:31:52,492 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:32:33,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:32:33,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:33:14,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:33:15,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:33:55,958 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:33:56,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:34:37,212 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:34:37,519 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:35:18,468 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:35:18,775 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:35:59,724 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:36:00,040 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:36:40,980 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:36:41,301 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:37:22,231 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:37:22,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:38:03,487 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:38:03,810 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:38:44,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:38:45,061 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:39:26,007 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:39:26,329 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:40:07,268 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:40:07,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:40:48,529 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:40:48,852 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:41:29,795 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:41:30,129 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:42:11,057 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:42:11,380 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:42:52,317 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:42:52,640 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:43:33,573 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:43:33,901 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:44:14,825 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:44:15,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:44:56,084 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:44:56,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:45:37,344 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:45:37,668 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:46:18,602 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:46:18,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:46:59,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:47:00,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:47:41,111 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:47:41,434 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:48:22,371 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:48:22,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:49:03,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:49:03,969 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:49:44,888 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:49:45,214 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:50:26,151 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:50:26,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:51:07,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:51:07,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:51:48,661 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:51:48,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:52:29,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:52:30,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:53:11,171 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:53:11,497 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:53:52,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:53:52,744 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:54:33,677 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:54:33,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:55:14,928 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:55:15,255 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:55:56,187 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:55:56,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:56:37,453 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:56:37,773 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:57:18,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:57:19,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:57:59,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:58:00,299 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:58:41,239 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:58:41,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 11:59:22,491 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 11:59:22,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:00:03,748 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 12:00:04,070 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:00:45,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 12:00:45,358 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:01:26,265 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 239. +2024-12-01 12:01:26,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:01:45,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 240, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 12:01:45,164 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 12:01:45,164 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 12:01:48,699 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 12:01:48,699 - discord.client - DEBUG - Dispatching event message +2024-12-01 12:01:48,775 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 12:01:48,775 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 12:01:48,775 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 12:02:07,522 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 242. +2024-12-01 12:02:07,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:02:48,777 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 242. +2024-12-01 12:02:49,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:03:30,034 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 242. +2024-12-01 12:03:30,357 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:04:11,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 242. +2024-12-01 12:04:11,614 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:04:51,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 243, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 12:04:51,860 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 12:04:51,860 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 12:04:51,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 244, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} +2024-12-01 12:04:51,860 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 12:04:51,860 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. +2024-12-01 12:04:52,551 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 244. +2024-12-01 12:04:52,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:04:53,713 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 12:04:53,713 - discord.client - DEBUG - Dispatching event message +2024-12-01 12:04:53,761 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 12:04:53,761 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 12:04:53,761 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 12:05:33,806 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:05:34,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:06:15,068 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:06:15,390 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:06:56,331 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:06:56,653 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:07:37,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:07:37,915 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:08:18,855 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:08:19,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:09:00,113 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:09:00,451 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:09:41,371 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:09:41,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:10:22,627 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:10:22,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:11:03,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:11:04,203 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:11:45,141 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:11:45,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:12:26,398 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:12:26,720 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:13:07,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:13:07,976 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:13:48,916 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:13:49,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:14:30,169 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:14:30,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:15:11,428 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:15:11,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:15:52,685 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:15:53,008 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:16:33,940 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:16:34,269 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:17:15,206 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:17:15,527 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:17:56,460 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:17:56,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:18:37,721 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:18:38,044 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:19:18,982 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:19:19,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:20:00,245 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:20:00,567 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:20:41,509 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:20:41,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:21:22,774 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:21:23,095 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:22:04,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:22:04,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:22:45,285 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:22:45,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:23:26,538 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:23:26,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:24:07,804 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:24:08,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:24:49,066 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:24:49,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:25:30,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:25:30,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:26:11,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:26:11,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:26:52,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:26:53,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:27:34,107 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:27:34,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:28:15,363 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:28:15,685 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:28:56,624 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:28:56,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:29:37,876 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:29:38,203 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:30:19,141 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:30:19,468 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:31:00,395 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:31:00,717 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:31:41,659 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:31:41,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:32:22,909 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:32:23,232 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:33:04,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:33:04,490 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:33:45,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:33:45,754 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:34:26,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:34:27,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:35:07,959 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:35:08,287 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:35:49,218 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:35:49,540 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:36:30,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:36:30,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:37:11,735 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:37:12,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:37:52,986 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:37:53,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:38:34,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:38:34,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:39:15,507 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:39:15,831 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:39:56,772 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:39:57,079 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:40:38,034 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:40:38,348 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:41:19,290 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:41:19,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:42:00,554 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:42:00,878 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:42:41,816 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:42:42,138 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:43:23,079 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:43:23,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:44:04,342 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:44:04,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:44:45,603 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:44:45,924 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:45:26,858 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:45:27,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:46:08,125 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:46:08,447 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:46:49,378 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:46:49,701 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:47:30,638 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:47:30,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:48:11,891 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:48:12,209 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:48:53,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:48:53,483 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:49:34,408 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:49:34,714 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:50:15,665 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:50:15,972 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:50:56,921 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:50:57,228 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:51:38,185 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:51:38,507 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:52:19,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:52:19,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:53:00,709 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:53:01,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:53:41,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:53:42,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:54:23,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:54:23,559 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:55:04,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:55:04,796 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:55:45,728 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:55:46,050 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:56:26,992 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:56:27,316 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:57:08,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:57:08,570 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:57:49,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:57:49,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:58:30,750 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:58:31,080 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:59:12,012 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:59:12,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 12:59:53,279 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 246. +2024-12-01 12:59:53,601 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:00:26,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 247, 'op': 0, 'd': {'user': {'username': 'dissabed_user_gsu234u4', 'public_flags': 64, 'id': '852888084098056242', 'global_name': 'w', 'display_name': 'w', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 13:00:26,219 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 13:00:26,219 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 13:00:26,219 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 13:00:34,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. +2024-12-01 13:00:34,867 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:01:15,791 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. +2024-12-01 13:01:16,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:01:57,057 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. +2024-12-01 13:01:57,381 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:02:38,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. +2024-12-01 13:02:38,646 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:03:19,582 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. +2024-12-01 13:03:19,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:04:00,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. +2024-12-01 13:04:01,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:04:42,100 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 247. +2024-12-01 13:04:42,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:05:18,847 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 13:05:18,847 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 13:05:18,847 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 13:05:23,357 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:05:23,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:06:04,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:06:04,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:06:45,886 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:06:46,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:07:27,151 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:07:27,458 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:08:08,412 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:08:08,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:08:49,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:08:49,987 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:09:30,914 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:09:31,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:10:12,169 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:10:12,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:10:53,428 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:10:53,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:11:34,694 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:11:35,018 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:12:15,946 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:12:16,267 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:12:57,201 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:12:57,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:13:38,459 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:13:38,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:14:19,724 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:14:20,125 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:15:00,986 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:15:01,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:15:42,245 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:15:42,550 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:16:23,509 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:16:23,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:17:04,766 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:17:05,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:17:46,020 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:17:46,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:18:27,272 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:18:27,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:19:08,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:19:08,884 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:19:49,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:19:50,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:20:31,046 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:20:31,359 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:21:12,302 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:21:12,609 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:21:53,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:21:53,861 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:22:34,807 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:22:35,132 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:23:16,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:23:16,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:23:57,314 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:23:57,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:24:38,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:24:38,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:25:19,837 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:25:20,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:26:01,088 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:26:01,480 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:26:42,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:26:42,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:27:23,596 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:27:23,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:28:04,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:28:05,177 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:28:46,120 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:28:46,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:29:27,372 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:29:27,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:30:08,631 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:30:09,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:30:49,888 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:30:50,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:31:31,154 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:31:31,511 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:32:12,414 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:32:12,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:32:53,676 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:32:53,998 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:33:34,935 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:33:35,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:34:16,192 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:34:16,581 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:34:57,457 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:34:57,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:35:38,714 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:35:39,374 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:36:19,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:36:20,350 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:37:01,223 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:37:01,617 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:37:42,481 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:37:42,869 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:38:23,747 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:38:24,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:39:05,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:39:05,413 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:39:46,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:39:46,679 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:40:27,535 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:40:27,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:41:08,789 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:41:09,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:41:50,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:41:50,456 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:42:31,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:42:31,711 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:43:12,565 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:43:12,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:43:53,831 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:43:54,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:44:35,081 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:44:35,414 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:45:16,339 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:45:16,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:45:57,592 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:45:57,932 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:46:38,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:46:39,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:47:20,113 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:47:20,447 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:48:01,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:48:01,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:48:42,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:48:42,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:49:23,881 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:49:24,251 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:50:05,135 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:50:05,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:50:46,400 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:50:46,720 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:51:27,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:51:27,977 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:52:08,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:52:09,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:52:50,173 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:52:50,543 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:53:31,440 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:53:31,793 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:54:12,699 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:54:13,021 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:54:53,958 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:54:54,280 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:55:35,214 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:55:35,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:56:16,470 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:56:16,791 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:56:57,723 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:56:58,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:57:38,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:57:39,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:58:20,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:58:20,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:59:01,500 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:59:01,825 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 13:59:42,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 13:59:43,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:00:24,019 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 14:00:24,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:01:05,277 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 14:01:05,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:01:46,531 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 248. +2024-12-01 14:01:46,852 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:02:03,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 249, 'op': 0, 'd': {'user': {'username': 'kilgore6327', 'public_flags': 64, 'id': '729386126963638322', 'global_name': 'Kilgre', 'display_name': 'Kilgre', 'discriminator': '0', 'clan': {'tag': 'EGO', 'identity_guild_id': '1253851511403053076', 'identity_enabled': True, 'badge': '455f53dde5ea1792ab6ec3392093916b'}, 'bot': False, 'avatar_decoration_data': None, 'avatar': '791f9488b8d7bb07c69f395f06255392'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-30T18:59:27.332000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 14:02:03,289 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 14:02:03,289 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 14:02:03,289 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 14:02:07,533 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 250, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T08:32:09.622000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312697738579677247', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T08:32:05.480439+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/2OkFMSWFRmm3Ba7GdE_fGax6usTxSgDZeyO5BqpWdAI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 729386126963638322'}, 'description': '<@729386126963638322>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/2OkFMSWFRmm3Ba7GdE_fGax6usTxSgDZeyO5BqpWdAI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png', 'name': 'kilgore6327', 'icon_url': 'https://cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 14:02:07,533 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 14:02:07,533 - discord.client - DEBUG - Dispatching event message +2024-12-01 14:02:07,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 251, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T08:32:09.622000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312697738579677247', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T08:32:05.480000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/2OkFMSWFRmm3Ba7GdE_fGax6usTxSgDZeyO5BqpWdAI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 729386126963638322'}, 'description': '<@729386126963638322>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/2OkFMSWFRmm3Ba7GdE_fGax6usTxSgDZeyO5BqpWdAI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png', 'name': 'kilgore6327', 'icon_url': 'https://cdn.discordapp.com/avatars/729386126963638322/791f9488b8d7bb07c69f395f06255392.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 14:02:07,613 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 14:02:07,613 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 14:02:07,613 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 14:02:27,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:02:28,164 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:03:09,056 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:03:09,380 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:03:50,309 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:03:50,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:04:31,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:04:31,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:05:12,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:05:13,158 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:05:54,093 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:05:54,415 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:06:35,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:06:35,683 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:07:16,600 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:07:16,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:07:57,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:07:58,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:08:39,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:08:39,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:09:20,376 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:09:20,699 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:10:01,629 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:10:01,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:10:42,882 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:10:43,203 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:11:24,135 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:11:24,458 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:12:05,388 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:12:05,711 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:12:46,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 251. +2024-12-01 14:12:46,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:13:22,525 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 14:13:22,525 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 14:13:22,847 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 14:13:22,847 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 14:13:23,265 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 14:13:23,265 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-ltj9",{"micros":0.0}]']}} +2024-12-01 14:13:23,265 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 14:13:23,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:13:23,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 252, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-ltj9",{"micros":386,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":169,"calls":[]},"session_lookup_finished",{"micros":10,"calls":[]},"discord-sessions-prd-1-199",{"micros":26}]}]']}} +2024-12-01 14:13:23,603 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 14:13:23,603 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 14:13:23,603 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 14:14:04,533 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 252. +2024-12-01 14:14:04,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:14:25,728 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 14:14:25,728 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 14:14:25,728 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 14:14:27,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 254, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T08:44:29.718000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312700842767290389', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T08:44:27.916552+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/W_YaYeh5ytrkAbpayXT6llgjLvfZRbBWF_Vl0eKtziI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/W_YaYeh5ytrkAbpayXT6llgjLvfZRbBWF_Vl0eKtziI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 14:14:27,615 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 14:14:27,615 - discord.client - DEBUG - Dispatching event message +2024-12-01 14:14:27,661 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 255, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T08:44:29.718000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312700842767290389', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T08:44:27.916000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/W_YaYeh5ytrkAbpayXT6llgjLvfZRbBWF_Vl0eKtziI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/W_YaYeh5ytrkAbpayXT6llgjLvfZRbBWF_Vl0eKtziI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/c195d3ec9007043f6c3b345032e3110a.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 14:14:27,661 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 14:14:27,661 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 14:14:27,661 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 14:14:45,791 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:14:46,114 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:15:27,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:15:27,381 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:16:08,318 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:16:08,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:16:49,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:16:49,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:17:30,835 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:17:31,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:18:12,093 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:18:12,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:18:53,351 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:18:53,674 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:19:34,606 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:19:34,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:20:15,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:20:16,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:20:57,124 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:20:57,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:21:38,381 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:21:38,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:22:19,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:22:19,966 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:23:00,909 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:23:01,239 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:23:42,170 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:23:42,498 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:24:23,425 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:24:23,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:25:04,683 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:25:05,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:25:45,944 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:25:46,263 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:26:27,202 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:26:27,542 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:27:08,468 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:27:08,798 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:27:49,722 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:27:50,044 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:28:30,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:28:31,305 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:29:12,232 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:29:12,554 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:29:53,484 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:29:53,806 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:30:34,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:30:35,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:31:16,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:31:16,330 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:31:57,268 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:31:57,591 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:32:38,529 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:32:38,850 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:33:19,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:33:20,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:34:01,050 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:34:01,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:34:42,302 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:34:42,624 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:35:23,566 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:35:23,887 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:36:04,823 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:36:05,146 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:36:46,076 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:36:46,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:37:27,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:37:27,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:38:08,589 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:38:08,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:38:49,842 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:38:50,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:39:31,098 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:39:31,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:40:12,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:40:12,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:40:53,622 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:40:53,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:41:34,877 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:41:35,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:42:16,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:42:16,450 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:42:57,404 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:42:57,717 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:43:38,661 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:43:38,968 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:44:19,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:44:20,223 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:45:01,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:45:01,489 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:45:42,442 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:45:42,748 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:46:23,705 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:46:24,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:47:04,963 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:47:05,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:47:46,221 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:47:46,527 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:48:27,476 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:48:27,779 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:49:08,735 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:49:09,041 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:49:49,988 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:49:50,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:50:31,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:50:31,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:51:12,512 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:51:12,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:51:53,764 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:51:54,070 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:52:35,021 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:52:35,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:53:16,283 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:53:16,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:53:57,547 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:53:57,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:54:38,800 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:54:39,107 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:55:20,057 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:55:20,379 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:56:01,315 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:56:01,627 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:56:42,567 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 255. +2024-12-01 14:56:42,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:57:03,469 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 14:57:03,469 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 14:57:03,469 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 14:57:07,765 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 257, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T09:27:10.041000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312711581540417546', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T09:27:05.786946+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/fCfp0jX4NL8vM5Vpdp6H2HhAR8icnxgJrOKZwVTy-Ag/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/fCfp0jX4NL8vM5Vpdp6H2HhAR8icnxgJrOKZwVTy-Ag/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 14:57:07,765 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 14:57:07,765 - discord.client - DEBUG - Dispatching event message +2024-12-01 14:57:07,822 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 258, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T09:27:10.041000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312711581540417546', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T09:27:05.786000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/fCfp0jX4NL8vM5Vpdp6H2HhAR8icnxgJrOKZwVTy-Ag/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/fCfp0jX4NL8vM5Vpdp6H2HhAR8icnxgJrOKZwVTy-Ag/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/6f747ea8ef941ab1896967e9268c3c45.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 14:57:07,822 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 14:57:07,822 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 14:57:07,822 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 14:57:23,821 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 14:57:24,130 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:58:05,078 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 14:58:05,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:58:46,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 14:58:46,635 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 14:59:27,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 14:59:27,895 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:00:08,839 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:00:09,146 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:00:50,104 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:00:50,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:01:31,356 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:01:31,671 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:02:12,610 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:02:12,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:02:53,863 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:02:54,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:03:35,128 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:03:35,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:04:16,386 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:04:16,695 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:04:57,645 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:04:57,968 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:05:38,911 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:05:39,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:06:20,164 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:06:20,471 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:07:01,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:07:01,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:07:42,685 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:07:43,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:08:23,944 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:08:24,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:09:05,208 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:09:05,518 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:09:46,464 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:09:46,786 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:10:27,721 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:10:28,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:11:08,976 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:11:09,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:11:50,237 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:11:50,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:12:31,492 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:12:31,806 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:13:12,752 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:13:13,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:13:54,006 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:13:54,329 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:14:35,259 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:14:35,566 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:15:16,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:15:16,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:15:57,784 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:15:58,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:16:39,044 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:16:39,350 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:17:20,298 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:17:20,610 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:18:01,561 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:18:01,873 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:18:42,817 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:18:43,123 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:19:24,073 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:19:24,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:20:05,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:20:05,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:20:46,603 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:20:46,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:21:27,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:21:28,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:22:09,115 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:22:09,432 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:22:50,367 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 258. +2024-12-01 15:22:50,677 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:23:27,469 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 259, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 15:23:27,469 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:23:27,469 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 15:23:27,968 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:23:27,971 - discord.client - DEBUG - Dispatching event message +2024-12-01 15:23:28,039 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:23:28,039 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 15:23:28,039 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 15:23:31,622 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 261. +2024-12-01 15:23:31,930 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:23:34,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 262, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': '8821dbc0fcc43607215c313477b01450', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 15:23:34,042 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:23:34,042 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 15:23:37,676 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 263, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '42156a331d78f9ecbe94d4dd529dc373', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 15:23:37,676 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:23:37,676 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 15:23:37,948 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:23:37,948 - discord.client - DEBUG - Dispatching event message +2024-12-01 15:23:37,980 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:23:37,980 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 15:23:37,980 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 15:24:12,885 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:24:13,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:24:54,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:24:54,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:25:35,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:25:35,709 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:26:16,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:26:16,966 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:26:57,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:26:58,231 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:27:39,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:27:39,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:28:20,436 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:28:20,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:29:01,689 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:29:01,995 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:29:42,943 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:29:43,249 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:30:24,198 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:30:24,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:31:05,456 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:31:05,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:31:46,709 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:31:47,014 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:32:27,974 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:32:28,281 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:33:09,232 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:33:09,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:33:50,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:33:50,790 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:34:31,749 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:34:32,057 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:35:13,012 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:35:13,318 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:35:54,271 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:35:54,579 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:36:35,533 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:36:35,840 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:37:16,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:37:17,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:37:58,058 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:37:58,363 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:38:39,316 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:38:39,623 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:39:20,576 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:39:20,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:40:01,828 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:40:02,133 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:40:43,082 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 265. +2024-12-01 15:40:43,390 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:40:45,414 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 266, 'op': 0, 'd': {'user': {'username': 'mal109', 'public_flags': 128, 'id': '472544092220424192', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '325cb8d4407eada1a63607f083c47b4e'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-08T13:53:38.101000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 15:40:45,423 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:40:45,434 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 15:40:45,434 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 15:40:48,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 267, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T10:10:50.458000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312722572365795369', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T10:10:47.858442+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 15:40:48,054 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:40:48,054 - discord.client - DEBUG - Dispatching event message +2024-12-01 15:40:48,135 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 268, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T10:10:50.458000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312722572365795369', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T10:10:47.858000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 15:40:48,135 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:40:48,135 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 15:40:48,135 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 15:41:24,349 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 268. +2024-12-01 15:41:24,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:42:05,603 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 268. +2024-12-01 15:42:05,910 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:42:06,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 269, 'op': 0, 'd': {'user': {'username': 'mal109', 'public_flags': 128, 'id': '472544092220424192', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'cc3fec151f1df4bb4b588e05a249c8f9'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-08T13:53:38.101000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 15:42:06,039 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:42:06,039 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 15:42:06,039 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 15:42:08,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 270, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T10:12:10.485000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312722908023488593', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T10:12:08.452734+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/5i2NT6rmOhtzA7FJ5rG82TDQTSjd4NkkkPP1mD8zxIE/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/5i2NT6rmOhtzA7FJ5rG82TDQTSjd4NkkkPP1mD8zxIE/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 15:42:08,086 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:42:08,086 - discord.client - DEBUG - Dispatching event message +2024-12-01 15:42:08,118 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 271, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T10:12:10.485000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312722908023488593', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T10:12:08.452000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/5i2NT6rmOhtzA7FJ5rG82TDQTSjd4NkkkPP1mD8zxIE/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/5i2NT6rmOhtzA7FJ5rG82TDQTSjd4NkkkPP1mD8zxIE/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/cc3fec151f1df4bb4b588e05a249c8f9.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 15:42:08,118 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 15:42:08,118 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 15:42:08,118 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 15:42:46,855 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:42:47,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:43:28,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:43:28,419 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:44:09,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:44:09,675 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:44:50,615 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:44:50,921 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:45:31,871 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:45:32,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:46:13,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:46:13,434 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:46:54,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:46:54,701 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:47:35,645 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:47:35,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:48:16,899 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:48:17,222 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:48:58,151 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:48:58,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:49:39,416 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:49:39,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:50:20,668 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:50:20,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:51:01,920 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:51:02,226 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:51:43,178 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:51:43,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:52:24,432 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:52:24,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:53:05,688 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:53:05,995 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:53:46,953 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:53:47,259 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:54:28,211 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:54:28,534 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:55:09,473 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:55:09,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:55:50,725 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:55:51,048 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:56:31,981 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:56:32,286 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:57:13,239 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:57:13,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:57:54,493 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:57:54,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:58:35,754 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:58:36,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:59:17,011 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:59:17,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 15:59:58,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 15:59:58,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:00:39,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:00:39,850 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:01:20,784 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:01:21,107 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:02:02,036 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:02:02,348 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:02:43,295 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:02:43,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:03:24,558 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:03:24,883 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:04:05,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:04:06,136 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:04:47,068 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:04:47,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:05:28,333 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:05:28,638 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:06:09,595 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:06:09,902 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:06:50,850 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:06:51,172 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:07:32,113 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:07:32,435 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:08:13,366 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 271. +2024-12-01 16:08:13,673 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:08:29,674 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 272, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': '8821dbc0fcc43607215c313477b01450', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 16:08:29,685 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 16:08:29,685 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 16:08:54,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:08:54,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:09:35,887 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:09:36,195 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:10:17,153 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:10:17,475 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:10:58,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:10:58,714 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:11:39,675 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:11:39,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:12:20,927 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:12:21,252 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:13:02,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:13:02,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:13:43,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:13:43,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:14:24,707 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:14:25,025 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:15:05,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:15:06,287 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:15:47,223 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:15:47,528 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:16:28,489 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:16:28,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:17:09,742 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:17:10,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:17:50,994 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:17:51,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:18:32,254 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:18:32,559 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:19:13,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:19:13,822 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:19:54,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:19:55,080 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:20:36,028 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:20:36,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:21:17,280 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:21:17,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:21:58,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:21:58,848 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:22:39,788 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:22:40,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:23:21,044 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 272. +2024-12-01 16:23:21,366 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:23:46,530 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 273, 'op': 0, 'd': {'user': {'username': 'tejas01', 'public_flags': 64, 'id': '742431818233544747', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '9fe9a5bbbfc76155e1132104235547ce'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-02-21T16:03:14.352000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 16:23:46,530 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 16:23:46,551 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 16:23:46,551 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 16:24:02,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 273. +2024-12-01 16:24:02,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:24:05,661 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 274, 'op': 0, 'd': {'user': {'username': 'tejas01', 'public_flags': 64, 'id': '742431818233544747', 'global_name': '` Tejas', 'display_name': '` Tejas', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '9fe9a5bbbfc76155e1132104235547ce'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-02-21T16:03:14.352000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 16:24:05,661 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 16:24:05,661 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 16:24:05,685 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 16:24:43,566 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:24:43,872 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:25:24,829 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:25:25,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:26:06,095 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:26:06,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:26:47,353 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:26:47,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:27:28,611 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:27:28,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:28:09,870 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:28:10,177 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:28:51,129 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:28:51,436 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:29:32,383 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:29:32,700 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:30:13,640 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:30:13,948 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:30:54,905 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:30:55,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:31:36,170 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:31:36,481 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:32:17,424 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:32:17,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:32:58,677 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:32:58,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:33:39,943 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:33:40,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:34:21,208 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:34:21,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:35:02,460 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:35:02,772 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:35:43,724 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:35:44,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:36:24,984 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:36:25,290 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:37:06,237 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:37:06,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:37:47,487 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:37:47,801 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:38:28,751 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:38:29,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:39:10,013 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:39:10,319 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:39:51,269 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:39:51,575 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:40:32,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:40:32,856 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:41:13,799 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:41:14,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:41:55,064 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:41:55,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:42:36,315 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:42:36,620 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:43:17,568 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:43:17,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:43:58,826 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:43:59,132 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:44:40,089 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:44:40,426 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:45:21,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:45:21,665 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:46:02,607 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:46:02,936 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:46:43,865 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:46:44,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:47:25,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:47:25,450 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:48:06,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:48:06,699 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:48:47,638 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:48:47,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:49:28,896 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:49:29,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:50:10,158 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:50:10,465 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:50:51,417 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:50:51,724 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:51:32,672 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:51:32,978 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:52:13,933 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:52:14,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:52:55,190 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:52:55,497 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:53:36,446 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:53:36,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:54:17,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:54:18,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:54:58,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:54:59,276 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:55:40,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:55:40,526 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:56:21,476 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:56:21,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:57:02,732 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:57:03,038 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:57:43,998 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:57:44,307 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:58:25,252 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:58:25,559 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:59:06,517 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 274. +2024-12-01 16:59:06,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 16:59:40,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 275, 'op': 0, 'd': {'member': {'user': {'username': 'cyber_69', 'public_flags': 256, 'id': '765173058586542090', 'global_name': 'YashXD', 'display_name': 'YashXD', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079820325006618634', '1062343535535325235', '1087734833318465587', '1088037558648311829', '926435586238185494', '1088385891116003380', '1083973062858391642', '1062251705921720411', '1087735090324451389', '1168310895592611870'], 'premium_since': '2024-10-19T11:47:25.418000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-12-07T10:05:45.431000+00:00', 'flags': 6, 'deaf': False, 'communication_disabled_until': None, 'banner': '7c6ee4e73a69da1b3f131281ad8ee154', 'avatar': None}, 'user_id': '765173058586542090', 'suppress': False, 'session_id': '331a9b70ee50736628fd8fca6e11c244', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 16:59:40,056 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 16:59:40,056 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 16:59:42,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 276, 'op': 0, 'd': {'member': {'user': {'username': 'cyber_69', 'public_flags': 256, 'id': '765173058586542090', 'global_name': 'YashXD', 'display_name': 'YashXD', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079820325006618634', '1062343535535325235', '1087734833318465587', '1088037558648311829', '926435586238185494', '1088385891116003380', '1083973062858391642', '1062251705921720411', '1087735090324451389', '1168310895592611870'], 'premium_since': '2024-10-19T11:47:25.418000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-12-07T10:05:45.431000+00:00', 'flags': 6, 'deaf': False, 'communication_disabled_until': None, 'banner': '7c6ee4e73a69da1b3f131281ad8ee154', 'avatar': None}, 'user_id': '765173058586542090', 'suppress': False, 'session_id': '331a9b70ee50736628fd8fca6e11c244', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 16:59:42,694 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 16:59:42,694 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 16:59:43,557 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 16:59:43,557 - discord.client - DEBUG - Dispatching event message +2024-12-01 16:59:43,636 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 16:59:43,636 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 16:59:43,652 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 16:59:47,769 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 278. +2024-12-01 16:59:48,091 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:00:18,286 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 279, 'op': 0, 'd': {'user': {'username': 'mal109', 'public_flags': 128, 'id': '472544092220424192', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '325cb8d4407eada1a63607f083c47b4e'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-08T13:53:38.101000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 17:00:18,286 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:00:18,286 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 17:00:18,286 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 17:00:18,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 280, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T11:30:21.125000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312742581993738321', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T11:30:20.950833+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 17:00:18,535 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:00:18,535 - discord.client - DEBUG - Dispatching event message +2024-12-01 17:00:18,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 281, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T11:30:21.125000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312742581993738321', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T11:30:20.950000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 472544092220424192'}, 'description': '<@472544092220424192>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/_Y7QRC_x17lkLFHMI4eaKplWAeNnE3AnStmaAnUCEuI/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png', 'name': 'mal109', 'icon_url': 'https://cdn.discordapp.com/avatars/472544092220424192/325cb8d4407eada1a63607f083c47b4e.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 17:00:18,595 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:00:18,595 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 17:00:18,595 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 17:00:29,020 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:00:29,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:01:10,287 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:01:10,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:01:51,543 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:01:51,866 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:02:32,800 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:02:33,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:03:14,055 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:03:14,367 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:03:55,310 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:03:55,617 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:04:36,570 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:04:36,875 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:05:17,834 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:05:18,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:05:59,096 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:05:59,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:06:40,357 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:06:40,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:07:21,619 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:07:21,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:08:02,874 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:08:03,179 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:08:44,132 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:08:44,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:09:25,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:09:25,712 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:10:06,652 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:10:06,978 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:10:47,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:10:48,236 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:11:29,176 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 281. +2024-12-01 17:11:29,501 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:11:38,247 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 17:11:38,247 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 17:11:38,570 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 17:11:38,570 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 17:11:39,037 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 17:11:39,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-zhfn",{"micros":0.0}]']}} +2024-12-01 17:11:39,037 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 17:11:39,374 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:11:39,374 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 282, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-zhfn",{"micros":2072,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":1847,"calls":[]},"session_lookup_finished",{"micros":12,"calls":[]},"discord-sessions-prd-1-199",{"micros":26}]}]']}} +2024-12-01 17:11:39,374 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:11:39,374 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 17:11:39,374 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 17:12:20,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. +2024-12-01 17:12:20,628 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:13:01,566 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. +2024-12-01 17:13:01,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:13:42,817 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. +2024-12-01 17:13:43,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:14:24,075 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. +2024-12-01 17:14:24,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:15:05,338 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. +2024-12-01 17:15:05,675 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:15:46,594 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 282. +2024-12-01 17:15:46,934 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:16:24,706 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 283, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 17:16:24,706 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:16:24,706 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 17:16:27,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 283. +2024-12-01 17:16:28,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:16:28,652 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:16:28,652 - discord.client - DEBUG - Dispatching event message +2024-12-01 17:16:28,737 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:16:28,737 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 17:16:28,737 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 17:17:09,110 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 285. +2024-12-01 17:17:09,467 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:17:14,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 286, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 17:17:14,531 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:17:14,531 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 17:17:18,630 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:17:18,630 - discord.client - DEBUG - Dispatching event message +2024-12-01 17:17:18,662 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:17:18,662 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 17:17:18,662 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 17:17:50,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. +2024-12-01 17:17:50,700 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:18:31,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. +2024-12-01 17:18:31,978 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:19:12,877 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. +2024-12-01 17:19:13,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:19:54,129 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. +2024-12-01 17:19:54,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:20:35,385 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. +2024-12-01 17:20:35,712 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:21:16,651 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 288. +2024-12-01 17:21:17,006 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:21:55,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 289, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': '8821dbc0fcc43607215c313477b01450', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 17:21:55,400 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:21:55,400 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 17:21:57,907 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 289. +2024-12-01 17:21:58,252 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:22:39,160 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 289. +2024-12-01 17:22:39,571 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:23:20,412 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 289. +2024-12-01 17:23:20,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:23:54,250 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 290, 'op': 0, 'd': {'type': 19, 'tts': False, 'timestamp': '2024-12-01T11:53:56.825000+00:00', 'referenced_message': {'type': 19, 'tts': False, 'timestamp': '2024-12-01T05:35:28.810000+00:00', 'sticker_items': [{'name': 'Omniman', 'id': '1219037230832685108', 'format_type': 1}], 'position': 0, 'pinned': False, 'message_reference': {'type': 0, 'message_id': '1310309305202901002', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}], 'mention_roles': [], 'mention_everyone': False, 'id': '1312653275551498252', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'attachments': []}, 'pinned': False, 'nonce': '1312748324519936000', 'message_reference': {'type': 0, 'message_id': '1312653275551498252', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079820325006618634', '1062343535535325235', '1087734833318465587', '1088037558648311829', '926435586238185494', '1088385891116003380', '1083973062858391642', '1062251705921720411', '1087735090324451389', '1168310895592611870'], 'premium_since': '2024-10-19T11:47:25.418000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-12-07T10:05:45.431000+00:00', 'flags': 6, 'deaf': False, 'communication_disabled_until': None, 'banner': '7c6ee4e73a69da1b3f131281ad8ee154', 'avatar': None}, 'id': '1312748519869775902', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'cyber_69', 'public_flags': 256, 'primary_guild': None, 'id': '765173058586542090', 'global_name': 'YashXD', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-01 17:23:54,251 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:23:54,252 - discord.client - DEBUG - Dispatching event message +2024-12-01 17:24:01,665 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 290. +2024-12-01 17:24:02,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:24:05,085 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 291, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': '177a5f446fd489f8e40a87ea60a28d17', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 17:24:05,086 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:24:05,087 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 17:24:05,920 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 292, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': '8821dbc0fcc43607215c313477b01450', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 17:24:05,921 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:24:05,921 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 17:24:06,158 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 293, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': '8821dbc0fcc43607215c313477b01450', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 17:24:06,158 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:24:06,159 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 17:24:07,296 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 294, 'op': 0, 'd': {'member': {'user': {'username': 'cyber_69', 'public_flags': 256, 'id': '765173058586542090', 'global_name': 'YashXD', 'display_name': 'YashXD', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079820325006618634', '1062343535535325235', '1087734833318465587', '1088037558648311829', '926435586238185494', '1088385891116003380', '1083973062858391642', '1062251705921720411', '1087735090324451389', '1168310895592611870'], 'premium_since': '2024-10-19T11:47:25.418000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-12-07T10:05:45.431000+00:00', 'flags': 6, 'deaf': False, 'communication_disabled_until': None, 'banner': '7c6ee4e73a69da1b3f131281ad8ee154', 'avatar': None}, 'user_id': '765173058586542090', 'suppress': False, 'session_id': '331a9b70ee50736628fd8fca6e11c244', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 17:24:07,296 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:24:07,297 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 17:24:08,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 295, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '42156a331d78f9ecbe94d4dd529dc373', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 17:24:08,531 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:24:08,532 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 17:24:08,565 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 296, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} +2024-12-01 17:24:08,565 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:24:08,565 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. +2024-12-01 17:24:08,839 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:24:08,839 - discord.client - DEBUG - Dispatching event message +2024-12-01 17:24:08,884 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:24:08,884 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 17:24:08,884 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 17:24:42,925 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:24:43,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:25:24,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:25:24,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:26:05,443 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:26:05,861 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:26:46,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:26:47,098 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:27:27,958 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:27:28,382 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:28:09,221 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:28:09,643 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:28:50,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:28:50,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:29:31,743 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:29:32,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:30:12,999 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:30:13,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:30:54,258 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:30:54,656 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:31:35,511 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:31:35,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:32:16,762 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:32:17,138 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:32:58,018 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:32:58,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:33:39,277 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:33:39,658 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:34:20,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:34:20,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:35:01,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:35:02,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:35:43,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:35:43,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:36:24,315 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:36:24,739 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:37:05,570 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:37:05,983 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:37:46,832 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:37:47,563 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:38:28,083 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:38:28,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:39:09,348 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:39:09,754 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:39:50,609 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:39:51,022 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:40:31,861 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:40:32,226 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:41:13,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:41:13,511 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:41:54,383 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:41:54,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:42:35,640 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:42:35,971 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:43:16,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:43:17,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:43:58,153 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:43:58,557 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:44:39,414 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:44:40,138 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:45:20,670 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 298. +2024-12-01 17:45:21,000 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:45:49,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 17:45:49,455 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 17:45:49,847 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 17:45:49,847 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 17:45:50,536 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 17:45:50,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-r554",{"micros":0.0}]']}} +2024-12-01 17:45:50,537 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 17:45:50,921 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:45:50,924 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 299, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-r554",{"micros":535,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":297,"calls":[]},"session_lookup_finished",{"micros":14,"calls":[]},"discord-sessions-prd-1-199",{"micros":35}]}]']}} +2024-12-01 17:45:50,925 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 17:45:50,925 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 17:45:50,926 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 17:46:31,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:46:32,179 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:47:13,062 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:47:13,410 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:47:54,319 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:47:54,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:48:35,586 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:48:35,971 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:49:16,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:49:17,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:49:58,104 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:49:58,476 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:50:39,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:50:39,760 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:51:20,610 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:51:20,997 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:52:01,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:52:02,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:52:43,120 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:52:43,511 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:53:24,372 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:53:24,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:54:05,629 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:54:06,021 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:54:46,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:54:47,262 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:55:28,150 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:55:28,465 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:56:09,404 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:56:09,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:56:50,655 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:56:50,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:57:31,914 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:57:32,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:58:13,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:58:13,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:58:54,424 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:58:54,825 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 17:59:35,687 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 17:59:36,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:00:16,942 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:00:17,330 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:00:58,204 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:00:58,568 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:01:39,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:01:39,869 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:02:20,720 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:02:21,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:03:01,975 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:03:02,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:03:43,229 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:03:43,555 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:04:24,492 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:04:24,899 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:05:05,756 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:05:06,142 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:05:47,014 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:05:47,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:06:28,269 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:06:28,658 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:07:09,524 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:07:09,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:07:50,781 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:07:51,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:08:32,042 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:08:32,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:09:13,298 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:09:13,703 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:09:54,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:09:54,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:10:35,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:10:36,202 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:11:17,073 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:11:17,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:11:58,324 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:11:58,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:12:39,586 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:12:39,955 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:13:20,845 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:13:21,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:14:02,110 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:14:02,518 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:14:43,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:14:43,765 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:15:24,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:15:25,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:16:05,880 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:16:06,304 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:16:47,144 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:16:47,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:17:28,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:17:28,794 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:18:09,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 299. +2024-12-01 18:18:10,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:18:43,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 300, 'op': 0, 'd': {'user': {'username': 'dissabed_user_gsu234u4', 'public_flags': 64, 'id': '852888084098056242', 'global_name': '()_()', 'display_name': '()_()', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-18T12:45:41.611000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 18:18:43,375 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 18:18:43,376 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 18:18:43,376 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 18:18:50,914 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:18:51,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:19:32,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:19:32,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:20:13,434 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:20:13,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:20:54,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:20:55,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:21:35,951 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:21:36,362 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:22:17,207 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:22:17,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:22:58,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:22:58,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:23:39,724 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:23:40,137 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:24:20,986 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:24:21,328 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:25:02,251 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:25:02,633 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:25:43,509 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:25:43,886 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:26:24,775 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:26:25,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:27:06,027 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:27:06,372 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:27:47,292 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:27:47,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:28:28,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:28:28,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:29:09,807 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:29:10,521 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:29:51,059 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:29:51,458 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:30:32,325 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:30:32,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:31:13,583 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:31:13,964 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:31:54,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:31:55,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:32:36,099 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:32:36,512 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:33:17,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:33:17,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:33:58,618 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:33:59,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:34:39,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:34:40,269 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:35:21,135 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:35:21,525 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:36:02,394 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:36:02,771 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:36:43,650 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:36:44,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:37:24,907 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:37:25,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:38:06,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:38:06,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:38:47,423 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:38:47,827 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:39:28,687 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:39:29,096 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:40:09,939 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:40:10,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:40:51,201 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:40:51,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:41:32,455 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:41:32,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:42:13,720 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:42:14,082 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:42:54,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:42:55,393 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:43:36,252 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:43:36,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:44:17,514 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:44:17,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:44:58,776 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:44:59,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:45:40,026 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:45:40,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:46:21,293 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:46:21,642 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:47:02,558 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:47:02,924 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:47:43,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:47:44,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:48:25,073 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:48:25,475 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:49:06,332 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:49:06,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:49:47,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:49:47,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:50:28,839 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:50:29,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:51:10,101 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:51:10,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:51:51,360 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:51:51,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:52:32,617 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:52:33,262 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:53:13,873 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:53:14,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:53:55,137 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:53:55,542 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:54:36,402 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:54:37,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:55:17,663 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:55:18,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:55:58,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:55:59,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:56:40,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:56:40,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:57:21,432 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:57:21,830 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:58:02,686 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:58:03,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:58:43,942 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:58:44,341 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 18:59:25,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 18:59:25,577 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:00:06,462 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:00:06,857 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:00:47,717 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:00:48,112 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:01:28,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:01:29,373 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:02:10,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:02:10,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:02:51,497 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:02:51,813 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:03:32,752 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:03:33,136 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:04:14,017 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:04:14,423 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:04:55,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:04:55,678 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:05:36,525 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:05:36,939 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:06:17,786 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:06:18,169 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:06:59,045 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:06:59,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:07:40,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:07:41,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:08:21,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:08:21,987 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:09:02,832 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:09:03,212 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:09:44,090 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:09:44,500 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:10:25,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:10:25,729 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:11:06,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:11:07,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:11:47,871 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:11:48,287 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:12:29,136 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:12:29,532 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:13:10,402 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:13:10,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:13:51,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:13:52,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:14:32,927 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:14:33,359 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:15:14,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:15:14,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:15:55,443 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:15:56,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:16:36,707 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:16:37,114 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:17:17,963 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:17:18,349 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:17:59,225 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:17:59,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:18:40,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:18:40,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:19:21,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:19:22,114 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:20:02,990 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:20:03,390 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:20:44,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:20:44,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:21:25,507 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:21:25,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:22:06,763 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:22:07,127 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:22:48,014 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:22:48,413 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:23:29,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:23:29,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:24:10,518 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:24:10,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:24:51,777 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:24:52,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:25:33,032 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:25:33,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:26:14,294 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:26:14,616 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:26:55,553 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:26:55,964 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:27:36,808 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:27:37,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:28:18,062 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:28:18,462 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:28:59,319 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:28:59,733 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:29:40,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:29:40,935 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:30:21,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:30:22,257 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:31:03,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:31:03,498 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:31:44,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:31:45,074 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:32:25,626 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:32:25,977 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:33:06,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:33:07,276 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:33:48,148 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:33:48,530 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:34:29,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:34:29,817 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:35:10,670 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:35:11,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:35:51,932 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:35:52,282 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:36:33,191 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:36:33,528 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:37:14,446 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:37:14,775 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:37:55,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:37:56,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:38:36,960 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:38:37,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:39:18,226 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:39:18,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:39:59,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:39:59,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:40:40,744 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:40:41,072 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:41:22,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:41:22,342 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:42:03,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:42:03,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:42:44,529 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:42:44,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:43:25,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:43:26,113 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:44:07,056 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:44:07,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:44:48,309 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 300. +2024-12-01 19:44:48,627 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:45:11,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 301, 'op': 0, 'd': {'type': 19, 'tts': False, 'timestamp': '2024-12-01T14:15:14.515000+00:00', 'sticker_items': [{'name': 'lickypepe', 'id': '1118629504198394016', 'format_type': 2}], 'referenced_message': {'type': 19, 'tts': False, 'timestamp': '2024-12-01T11:53:56.825000+00:00', 'position': 0, 'pinned': False, 'message_reference': {'type': 0, 'message_id': '1312653275551498252', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}], 'mention_roles': [], 'mention_everyone': False, 'id': '1312748519869775902', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'cyber_69', 'public_flags': 256, 'primary_guild': None, 'id': '765173058586542090', 'global_name': 'YashXD', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}, 'attachments': []}, 'pinned': False, 'nonce': '1312784078331707392', 'message_reference': {'type': 0, 'message_id': '1312748519869775902', 'guild_id': '922005348670406667', 'channel_id': '1285331307228037291'}, 'mentions': [{'username': 'cyber_69', 'public_flags': 256, 'primary_guild': None, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079820325006618634', '1062343535535325235', '1087734833318465587', '1088037558648311829', '926435586238185494', '1088385891116003380', '1083973062858391642', '1062251705921720411', '1087735090324451389', '1168310895592611870'], 'premium_since': '2024-10-19T11:47:25.418000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-12-07T10:05:45.431000+00:00', 'flags': 6, 'deaf': False, 'communication_disabled_until': None, 'banner': '7c6ee4e73a69da1b3f131281ad8ee154', 'avatar': None}, 'id': '765173058586542090', 'global_name': 'YashXD', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': 'a_721836c679906603c8b05fda0c1255e8'}], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'id': '1312784077878853703', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-01 19:45:11,464 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 19:45:11,476 - discord.client - DEBUG - Dispatching event message +2024-12-01 19:45:29,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. +2024-12-01 19:45:29,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:46:10,825 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. +2024-12-01 19:46:11,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:46:52,081 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. +2024-12-01 19:46:52,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:47:33,341 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. +2024-12-01 19:47:33,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:48:14,598 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. +2024-12-01 19:48:14,916 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:48:55,855 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. +2024-12-01 19:48:56,172 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:49:37,115 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 301. +2024-12-01 19:49:37,441 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:49:46,879 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 19:49:46,882 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 19:49:46,883 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 19:50:18,380 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:50:18,701 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:50:59,641 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:50:59,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:51:40,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:51:41,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:52:22,154 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:52:22,471 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:53:03,408 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:53:03,727 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:53:44,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:53:44,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:54:25,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:54:26,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:55:07,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:55:07,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:55:48,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:55:48,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:56:29,689 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:56:30,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:57:10,954 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:57:11,288 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:57:52,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:57:52,540 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:58:33,471 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:58:33,801 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:59:14,726 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:59:15,048 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 19:59:55,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 19:59:56,305 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:00:37,247 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:00:37,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:01:18,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:01:18,836 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:01:59,762 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:02:00,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:02:41,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:02:41,349 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:03:22,278 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:03:22,604 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:04:03,536 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:04:03,854 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:04:44,793 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:04:45,110 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:05:26,053 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:05:26,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:06:07,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:06:07,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:06:48,568 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:06:48,901 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:07:29,830 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:07:30,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:08:11,085 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:08:11,410 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:08:52,352 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:08:52,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:09:33,613 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:09:33,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:10:14,868 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:10:15,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:10:56,133 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:10:56,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:11:37,396 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:11:37,722 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:12:18,660 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:12:18,990 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:12:59,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:13:00,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:13:41,170 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:13:41,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:14:22,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:14:22,748 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:15:03,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:15:04,024 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:15:44,952 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:15:45,270 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:16:26,205 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:16:26,555 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:17:07,467 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:17:07,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:17:48,732 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:17:49,058 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:18:29,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:18:30,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:19:11,251 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:19:11,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:19:52,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 302. +2024-12-01 20:19:52,822 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:20:17,585 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:20:17,585 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 20:20:17,585 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 20:20:33,761 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:20:34,079 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:21:15,016 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:21:15,338 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:21:56,268 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:21:56,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:22:37,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:22:37,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:23:18,784 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:23:19,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:24:00,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:24:00,372 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:24:41,310 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:24:41,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:25:22,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:25:22,891 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:26:03,828 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:26:04,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:26:45,086 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:26:45,408 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:27:26,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:27:26,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:28:07,600 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:28:07,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:28:48,857 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:28:49,185 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:29:30,112 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:29:30,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:30:11,373 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:30:11,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:30:52,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:30:52,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:31:33,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:31:34,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:32:15,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:32:15,482 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:32:56,411 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:32:56,734 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:33:37,674 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:33:38,001 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:34:18,939 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:34:19,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:35:00,199 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:35:00,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:35:41,463 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:35:41,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:36:22,726 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:36:23,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:37:03,989 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:37:04,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:37:45,241 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:37:45,564 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:38:26,493 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:38:26,831 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:39:07,759 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 303. +2024-12-01 20:39:08,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:39:08,262 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 304, 'op': 0, 'd': {'user': {'username': 'pixelfiree', 'public_flags': 256, 'id': '745485473035583558', 'global_name': '- Ash', 'display_name': '- Ash', 'discriminator': '0', 'clan': {'tag': 'cult', 'identity_guild_id': '1137773562367844453', 'identity_enabled': True, 'badge': 'a38d8a9ffae51409870d8609399d1716'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1220513989729976411', 'expires_at': None, 'asset': 'a_a87e3efa4de2956331831681231ce63b'}, 'avatar': '754a79e62a4e53283fea007c57e34bfb'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-06T18:24:09.222000+00:00', 'guild_id': '922005348670406667', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 20:39:08,262 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:39:08,274 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 20:39:08,274 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 20:39:09,849 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 305, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:09:13.038000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312797661228961834', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T15:09:11.552341+00:00', 'thumbnail': {'width': 736, 'url': 'https://cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/FwHnSYd5EYbmrsPAdEwtr-mYUfJhWnBjTIfitiCfp7Q/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png', 'height': 736, 'flags': 0}, 'footer': {'text': 'ID: 745485473035583558'}, 'description': '<@745485473035583558>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/FwHnSYd5EYbmrsPAdEwtr-mYUfJhWnBjTIfitiCfp7Q/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png', 'name': 'pixelfiree', 'icon_url': 'https://cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 20:39:09,850 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:39:09,850 - discord.client - DEBUG - Dispatching event message +2024-12-01 20:39:09,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 306, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:09:13.038000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312797661228961834', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T15:09:11.552000+00:00', 'thumbnail': {'width': 736, 'url': 'https://cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/FwHnSYd5EYbmrsPAdEwtr-mYUfJhWnBjTIfitiCfp7Q/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png', 'height': 736, 'flags': 0}, 'footer': {'text': 'ID: 745485473035583558'}, 'description': '<@745485473035583558>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/FwHnSYd5EYbmrsPAdEwtr-mYUfJhWnBjTIfitiCfp7Q/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png', 'name': 'pixelfiree', 'icon_url': 'https://cdn.discordapp.com/avatars/745485473035583558/754a79e62a4e53283fea007c57e34bfb.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 20:39:09,895 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:39:09,895 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 20:39:09,896 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 20:39:20,854 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 307, 'op': 0, 'd': {'user': {'username': 'pixelfiree', 'public_flags': 256, 'id': '745485473035583558', 'global_name': '- Ash', 'display_name': '- Ash', 'discriminator': '0', 'clan': {'tag': 'cult', 'identity_guild_id': '1137773562367844453', 'identity_enabled': True, 'badge': 'a38d8a9ffae51409870d8609399d1716'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669467865088', 'expires_at': None, 'asset': 'a_1005898c6acf56a9ac5010baf444f6fd'}, 'avatar': '754a79e62a4e53283fea007c57e34bfb'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-06T18:24:09.222000+00:00', 'guild_id': '922005348670406667', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 20:39:20,855 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:39:20,856 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 20:39:20,856 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 20:39:49,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 307. +2024-12-01 20:39:49,373 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:40:30,278 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 307. +2024-12-01 20:40:30,601 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:41:11,537 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 307. +2024-12-01 20:41:11,875 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:41:52,798 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 307. +2024-12-01 20:41:53,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:42:34,057 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 307. +2024-12-01 20:42:34,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:43:10,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 308, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 20:43:10,439 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:43:10,440 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 20:43:14,690 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:43:14,691 - discord.client - DEBUG - Dispatching event message +2024-12-01 20:43:14,761 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:43:14,762 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 20:43:14,762 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 20:43:15,310 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:43:15,636 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:43:56,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:43:56,889 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:44:37,824 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:44:38,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:45:19,076 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:45:19,393 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:46:00,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:46:00,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:46:41,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:46:41,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:47:22,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:47:23,169 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:48:04,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:48:04,440 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:48:45,366 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:48:45,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:49:26,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:49:26,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:50:07,888 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:50:08,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:50:49,142 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:50:49,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:51:30,399 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:51:30,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:52:11,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:52:11,976 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:52:52,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:52:53,239 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:53:34,161 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 310. +2024-12-01 20:53:34,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:54:10,878 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 311, 'op': 0, 'd': {'member': {'user': {'username': 'thecriptic', 'public_flags': 256, 'id': '474270889647669259', 'global_name': 'TheCriptic', 'display_name': 'TheCriptic', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9be96662ecbfab46c019fa5497ad4a9b'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168301657906491523', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-30T08:15:29.334000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '474270889647669259', 'suppress': False, 'session_id': 'c589a5b475547b896cb62dc75d4db89d', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 20:54:10,879 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:54:10,880 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 20:54:14,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 312, 'op': 0, 'd': {'member': {'user': {'username': 'thecriptic', 'public_flags': 256, 'id': '474270889647669259', 'global_name': 'TheCriptic', 'display_name': 'TheCriptic', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9be96662ecbfab46c019fa5497ad4a9b'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168301657906491523', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-30T08:15:29.334000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '474270889647669259', 'suppress': False, 'session_id': 'c589a5b475547b896cb62dc75d4db89d', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 20:54:14,127 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:54:14,128 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 20:54:14,772 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:54:14,783 - discord.client - DEBUG - Dispatching event message +2024-12-01 20:54:14,845 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:54:14,845 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 20:54:14,845 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 20:54:15,420 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 314. +2024-12-01 20:54:15,739 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:54:56,671 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 314. +2024-12-01 20:54:56,994 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:55:37,933 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 314. +2024-12-01 20:55:38,276 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:56:19,188 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 314. +2024-12-01 20:56:19,512 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:56:54,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 315, 'op': 0, 'd': {'user': {'username': '_mtann', 'public_flags': 64, 'id': '790468792428920842', 'global_name': '_Mtan', 'display_name': '_Mtan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'a_652df65e962e223a167368c7734e12e4'}, 'roles': ['1166279735983230976', '1088037634695241768', '1168311263412113448', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T10:40:11.535000+00:00', 'guild_id': '922005348670406667', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-01 20:56:54,065 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:56:54,076 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 20:56:54,076 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 20:56:54,179 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:56:54,180 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 20:56:54,180 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 20:56:54,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 317, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:26:58.153000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312802128645062708', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T15:26:57.371412+00:00', 'thumbnail': {'width': 280, 'url': 'https://cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/pAM5mn1VfD_09veSVpWpscQIxPSZKGlFmk22vE_Nr38/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif', 'height': 280, 'flags': 0}, 'footer': {'text': 'ID: 790468792428920842'}, 'description': '<@790468792428920842>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/pAM5mn1VfD_09veSVpWpscQIxPSZKGlFmk22vE_Nr38/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif', 'name': '_mtann', 'icon_url': 'https://cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 20:56:54,918 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:56:54,930 - discord.client - DEBUG - Dispatching event message +2024-12-01 20:56:54,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 318, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:26:58.153000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312802128645062708', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T15:26:57.371000+00:00', 'thumbnail': {'width': 280, 'url': 'https://cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/pAM5mn1VfD_09veSVpWpscQIxPSZKGlFmk22vE_Nr38/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif', 'height': 280, 'flags': 0}, 'footer': {'text': 'ID: 790468792428920842'}, 'description': '<@790468792428920842>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/pAM5mn1VfD_09veSVpWpscQIxPSZKGlFmk22vE_Nr38/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif', 'name': '_mtann', 'icon_url': 'https://cdn.discordapp.com/avatars/790468792428920842/a_652df65e962e223a167368c7734e12e4.gif?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 20:56:54,956 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:56:54,956 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 20:56:54,956 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 20:57:00,448 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 318. +2024-12-01 20:57:00,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:57:41,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 318. +2024-12-01 20:57:42,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:58:22,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 318. +2024-12-01 20:58:23,290 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:58:40,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 319, 'op': 0, 'd': {'member': {'user': {'username': 'thecriptic', 'public_flags': 256, 'id': '474270889647669259', 'global_name': 'TheCriptic', 'display_name': 'TheCriptic', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9be96662ecbfab46c019fa5497ad4a9b'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168301657906491523', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-30T08:15:29.334000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '474270889647669259', 'suppress': False, 'session_id': 'c589a5b475547b896cb62dc75d4db89d', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 20:58:40,962 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 20:58:40,962 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 20:59:04,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. +2024-12-01 20:59:04,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 20:59:45,477 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. +2024-12-01 20:59:45,795 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:00:26,744 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. +2024-12-01 21:00:27,062 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:01:08,000 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. +2024-12-01 21:01:08,316 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:01:49,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. +2024-12-01 21:01:49,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:02:30,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 319. +2024-12-01 21:02:30,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:02:52,740 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:02:52,749 - discord.client - DEBUG - Dispatching event guild_update +2024-12-01 21:02:52,807 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:02:52,808 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 21:02:53,016 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:02:53,016 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:02:53,529 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:02:53,530 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:02:53,915 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:02:53,915 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 21:02:53,915 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 21:02:54,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 325, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:32:57.998000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312803637944254544', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Role added', 'timestamp': '2024-12-01T15:32:56.103489+00:00', 'footer': {'text': 'ID: 760386225751982092'}, 'description': '<@&926435586238185494>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/SIJzVY-VXjCyh7TEppywtyTTM5Lk1MsxbBaFxG8Vrew/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/760386225751982092/8dea19b01d160d28fb87fd3adada243c.png', 'name': 'graze.101', 'icon_url': 'https://cdn.discordapp.com/avatars/760386225751982092/8dea19b01d160d28fb87fd3adada243c.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 21:02:54,730 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:02:54,741 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:02:54,836 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 326, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:32:57.998000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312803637944254544', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Role added', 'timestamp': '2024-12-01T15:32:56.103000+00:00', 'footer': {'text': 'ID: 760386225751982092'}, 'description': '<@&926435586238185494>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/SIJzVY-VXjCyh7TEppywtyTTM5Lk1MsxbBaFxG8Vrew/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/760386225751982092/8dea19b01d160d28fb87fd3adada243c.png', 'name': 'graze.101', 'icon_url': 'https://cdn.discordapp.com/avatars/760386225751982092/8dea19b01d160d28fb87fd3adada243c.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 21:02:54,837 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:02:54,837 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 21:02:54,837 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 21:03:11,787 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 326. +2024-12-01 21:03:12,109 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:03:53,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 326. +2024-12-01 21:03:53,366 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:04:27,909 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 327, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 21:04:27,910 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:27,910 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 21:04:29,790 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:29,791 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:04:29,854 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:29,854 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 21:04:29,854 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 21:04:30,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 330, 'op': 0, 'd': {'member': {'user': {'username': 'thecriptic', 'public_flags': 256, 'id': '474270889647669259', 'global_name': 'TheCriptic', 'display_name': 'TheCriptic', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '9be96662ecbfab46c019fa5497ad4a9b'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168301657906491523', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-30T08:15:29.334000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '474270889647669259', 'suppress': False, 'session_id': 'c589a5b475547b896cb62dc75d4db89d', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 21:04:30,706 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:30,706 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 21:04:30,707 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 331, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} +2024-12-01 21:04:30,707 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:30,707 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. +2024-12-01 21:04:34,317 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 331. +2024-12-01 21:04:34,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:04:34,736 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:34,737 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:04:34,780 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:34,780 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 21:04:34,781 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 21:04:50,244 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 334, 'op': 0, 'd': {'user_id': '318717198111604736', 'timestamp': 1733067293, 'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} +2024-12-01 21:04:50,245 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:50,263 - discord.client - DEBUG - Dispatching event typing +2024-12-01 21:04:50,263 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-01 21:04:55,003 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:55,003 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:04:55,225 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:55,227 - discord.client - DEBUG - Dispatching event guild_update +2024-12-01 21:04:55,338 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:55,338 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:04:55,604 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:55,604 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:04:55,652 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:55,653 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 21:04:55,654 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 21:04:56,205 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 340, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:34:59.483000+00:00', 'pinned': False, 'nonce': '1312804146058887168', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312804147489148928', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'cheeks', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-01 21:04:56,206 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:56,207 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:04:58,195 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 341, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:35:01.365000+00:00', 'pinned': False, 'nonce': '1312804153893847040', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312804155382956088', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '<:ban_wink:803528866308161576>', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-01 21:04:58,195 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:04:58,196 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:05:04,053 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 342, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:35:07.323000+00:00', 'pinned': False, 'nonce': '1312804179202277376', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312804180372619324', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'https://tenor.com/view/booty-he-must-workout-big-booty-chilling-orange-suit-gif-16341688', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-01 21:05:04,054 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:05:04,054 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:05:04,206 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 343, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T15:35:07.323000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'id': '1312804180372619324', 'flags': 0, 'embeds': [{'video': {'width': 568, 'url': 'https://media.tenor.com/LwGWA0-EyBkAAAPo/booty-he-must-workout.mp4', 'proxy_url': 'https://images-ext-1.discordapp.net/external/GLd0HwREW9JmkJcAMYKV6nq7LD9f1-N27CY5rWeN_I0/https/media.tenor.com/LwGWA0-EyBkAAAPo/booty-he-must-workout.mp4', 'placeholder_version': 1, 'placeholder': 'IHoSJghVefaId4iHd4mHl3iIBbFkA1o=', 'height': 640, 'flags': 0}, 'url': 'https://tenor.com/view/booty-he-must-workout-big-booty-chilling-orange-suit-gif-16341688', 'type': 'gifv', 'thumbnail': {'width': 568, 'url': 'https://media.tenor.com/LwGWA0-EyBkAAAAe/booty-he-must-workout.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/ta__x2QKxXokKore7IqwQbsVCET9y6XS2Y6G9INB5nM/https/media.tenor.com/LwGWA0-EyBkAAAAe/booty-he-must-workout.png', 'placeholder_version': 1, 'placeholder': 'IHoSJghVefaId4iHd4mHl3iIBbFkA1o=', 'height': 640, 'flags': 0}, 'provider': {'url': 'https://tenor.co', 'name': 'Tenor'}, 'content_scan_version': 1}], 'edited_timestamp': None, 'content': 'https://tenor.com/view/booty-he-must-workout-big-booty-chilling-orange-suit-gif-16341688', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'sin_00', 'public_flags': 128, 'primary_guild': None, 'id': '318717198111604736', 'global_name': '-Sinister', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-01 21:05:04,218 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:05:04,219 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 21:05:04,219 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 21:05:10,487 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:05:10,488 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:05:13,011 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:05:13,012 - discord.client - DEBUG - Dispatching event typing +2024-12-01 21:05:13,012 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-01 21:05:15,576 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 345. +2024-12-01 21:05:15,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:05:26,664 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:05:26,664 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:05:56,832 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. +2024-12-01 21:05:57,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:06:38,099 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. +2024-12-01 21:06:38,421 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:07:19,355 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. +2024-12-01 21:07:19,673 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:08:00,618 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. +2024-12-01 21:08:00,943 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:08:41,870 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. +2024-12-01 21:08:42,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:09:23,128 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. +2024-12-01 21:09:23,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:10:04,385 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. +2024-12-01 21:10:04,700 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:10:45,647 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 346. +2024-12-01 21:10:45,977 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:11:01,760 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 21:11:01,760 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 21:11:02,074 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 21:11:02,074 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 21:11:02,501 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 21:11:02,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-9pwd",{"micros":0.0}]']}} +2024-12-01 21:11:02,502 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 21:11:02,817 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:11:02,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 347, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-9pwd",{"micros":505,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":246,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-199",{"micros":24}]}]']}} +2024-12-01 21:11:02,818 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:11:02,818 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 21:11:02,819 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 21:11:43,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:11:44,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:12:25,021 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:12:25,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:13:06,284 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:13:06,607 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:13:47,541 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:13:47,856 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:14:28,807 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:14:29,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:15:10,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:15:10,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:15:51,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:15:51,646 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:16:32,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:16:32,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:17:13,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:17:14,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:17:55,096 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:17:55,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:18:36,359 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:18:36,686 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:19:17,610 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:19:17,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:19:58,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:19:59,197 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:20:40,123 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:20:40,438 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:21:21,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:21:21,707 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:22:02,639 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:22:02,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:22:43,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:22:44,222 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:23:25,146 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:23:25,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:24:06,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:24:06,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:24:47,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:24:47,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:25:28,929 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:25:29,257 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:26:10,184 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:26:10,503 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:26:51,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:26:51,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:27:32,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:27:33,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:28:13,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:28:14,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:28:55,222 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:28:55,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:29:36,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:29:36,822 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:30:17,743 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:30:18,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:30:58,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:30:59,338 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:31:40,255 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:31:40,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:32:21,511 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:32:21,865 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:33:02,772 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:33:03,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:33:44,038 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:33:44,369 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:34:25,293 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 347. +2024-12-01 21:34:25,617 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:34:48,141 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 21:34:48,141 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 21:34:48,460 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 21:34:48,461 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 21:34:48,874 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 21:34:48,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-21r9",{"micros":0.0}]']}} +2024-12-01 21:34:48,875 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 21:34:49,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:34:49,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 348, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-21r9",{"micros":507,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":268,"calls":[]},"session_lookup_finished",{"micros":12,"calls":[]},"discord-sessions-prd-1-199",{"micros":25}]}]']}} +2024-12-01 21:34:49,189 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:34:49,190 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 21:34:49,190 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 21:35:30,140 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:35:30,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:36:11,404 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:36:11,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:36:52,658 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:36:52,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:37:33,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:37:34,245 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:38:15,173 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:38:15,488 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:38:56,432 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:38:56,760 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:39:37,690 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:39:38,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:40:18,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:40:19,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:41:00,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:41:00,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:41:41,463 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:41:41,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:42:22,719 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:42:23,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:43:03,974 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:43:04,293 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:43:45,229 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:43:45,549 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:44:26,484 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:44:26,801 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:45:07,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:45:08,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:45:49,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:45:49,322 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:46:30,268 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:46:30,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:47:11,524 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:47:11,843 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:47:52,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:47:53,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:48:34,040 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 348. +2024-12-01 21:48:34,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:48:36,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 349, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 21:48:36,461 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:48:36,461 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 21:48:38,134 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:48:38,134 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:48:38,206 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:48:38,206 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 21:48:38,206 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 21:49:15,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:49:15,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:49:56,552 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:49:56,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:50:37,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:50:38,186 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:51:19,075 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:51:19,470 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:52:00,328 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:52:00,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:52:41,581 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:52:41,920 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:53:22,845 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:53:23,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:54:04,107 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:54:04,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:54:45,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:54:45,779 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:55:26,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:55:26,996 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:56:07,877 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:56:08,248 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:56:49,130 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 351. +2024-12-01 21:56:49,791 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:57:19,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 352, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 21:57:19,073 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:57:19,073 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 21:57:19,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 353, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} +2024-12-01 21:57:19,073 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:57:19,073 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. +2024-12-01 21:57:19,765 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:57:19,765 - discord.client - DEBUG - Dispatching event message +2024-12-01 21:57:19,797 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 21:57:19,797 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 21:57:19,797 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 21:57:30,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. +2024-12-01 21:57:30,794 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:58:11,658 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. +2024-12-01 21:58:12,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:58:52,924 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. +2024-12-01 21:58:53,342 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 21:59:34,184 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. +2024-12-01 21:59:34,528 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:00:15,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. +2024-12-01 22:00:15,784 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:00:56,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. +2024-12-01 22:00:57,048 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:01:41,518 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. +2024-12-01 22:01:41,904 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:02:22,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. +2024-12-01 22:02:23,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:03:04,035 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. +2024-12-01 22:03:04,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:03:45,296 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. +2024-12-01 22:03:45,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:04:26,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 355. +2024-12-01 22:04:26,936 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:05:06,236 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 356, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:05:06,236 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:05:06,236 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:05:07,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 356. +2024-12-01 22:05:08,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:05:08,492 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:05:08,492 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:05:08,497 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:05:08,497 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:05:08,497 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:05:49,069 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 358. +2024-12-01 22:05:49,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:05:56,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 359, 'op': 0, 'd': {'user_id': '714162475884609617', 'timestamp': 1733070956, 'member': {'user': {'username': 'bigbaddy4', 'public_flags': 128, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'display_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} +2024-12-01 22:05:56,764 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:05:56,764 - discord.client - DEBUG - Dispatching event typing +2024-12-01 22:05:56,764 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-01 22:06:05,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 360, 'op': 0, 'd': {'user_id': '714162475884609617', 'timestamp': 1733070965, 'member': {'user': {'username': 'bigbaddy4', 'public_flags': 128, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'display_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} +2024-12-01 22:06:05,644 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:05,644 - discord.client - DEBUG - Dispatching event typing +2024-12-01 22:06:05,644 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-01 22:06:13,394 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 361, 'op': 0, 'd': {'user_id': '714162475884609617', 'timestamp': 1733070973, 'member': {'user': {'username': 'bigbaddy4', 'public_flags': 128, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'display_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} +2024-12-01 22:06:13,394 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:13,394 - discord.client - DEBUG - Dispatching event typing +2024-12-01 22:06:13,394 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-01 22:06:14,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 362, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:06:14,106 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:14,106 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:06:18,382 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:18,382 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:06:18,414 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:18,414 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:06:18,414 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:06:21,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 365, 'op': 0, 'd': {'user_id': '714162475884609617', 'timestamp': 1733070981, 'member': {'user': {'username': 'bigbaddy4', 'public_flags': 128, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'display_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} +2024-12-01 22:06:21,561 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:21,561 - discord.client - DEBUG - Dispatching event typing +2024-12-01 22:06:21,561 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-01 22:06:23,904 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:23,904 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:06:27,407 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 367, 'op': 0, 'd': {'user_id': '714162475884609617', 'timestamp': 1733070987, 'member': {'user': {'username': 'bigbaddy4', 'public_flags': 128, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'display_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} +2024-12-01 22:06:27,420 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:27,420 - discord.client - DEBUG - Dispatching event typing +2024-12-01 22:06:27,420 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-01 22:06:30,325 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 367. +2024-12-01 22:06:30,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:06:31,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 368, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T16:36:31.463000+00:00', 'pinned': False, 'nonce': '1312819630594588672', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1083973015550836786', '1062343535535325235', '1088385891116003380', '1087734805564772412', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-04T14:04:20.405000+00:00', 'flags': 106, 'deaf': False, 'communication_disabled_until': '2023-12-16T09:21:51.153000+00:00', 'banner': None, 'avatar': None}, 'id': '1312819632775889070', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'cwazy bro cwazy', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'bigbaddy4', 'public_flags': 128, 'primary_guild': None, 'id': '714162475884609617', 'global_name': 'Bigbaddy', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '15a8d15f0a95822e06bc70500ac668cf'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-01 22:06:31,625 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:31,625 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:06:48,508 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:48,508 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:06:48,508 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:06:48,655 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:48,671 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:06:53,371 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:53,371 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:06:53,435 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:53,435 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:06:53,435 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:06:57,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 373, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:06:57,641 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:06:57,641 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:07:02,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 374, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:07:02,244 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:07:02,244 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:07:07,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 375, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:07:07,102 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:07:07,102 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:07:11,580 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. +2024-12-01 22:07:11,936 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:07:52,833 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. +2024-12-01 22:07:53,219 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:08:34,099 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. +2024-12-01 22:08:34,438 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:09:15,360 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. +2024-12-01 22:09:15,740 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:09:56,617 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. +2024-12-01 22:09:57,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:10:37,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 375. +2024-12-01 22:10:38,250 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:11:08,925 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 376, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:11:08,925 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:11:08,925 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:11:10,672 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 377, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:11:10,686 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:11:10,686 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:11:14,999 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:11:14,999 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:11:15,038 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:11:15,038 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:11:15,038 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:11:15,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 380, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:11:15,409 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:11:15,409 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:11:19,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 380. +2024-12-01 22:11:19,465 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:12:00,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 380. +2024-12-01 22:12:00,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:12:28,227 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 381, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 22:12:28,243 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:12:28,243 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:12:28,389 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:12:28,389 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:12:28,437 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:12:28,437 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:12:28,437 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:12:41,659 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. +2024-12-01 22:12:42,061 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:13:22,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. +2024-12-01 22:13:23,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:14:04,172 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. +2024-12-01 22:14:04,582 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:14:45,436 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. +2024-12-01 22:14:45,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:15:26,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. +2024-12-01 22:15:27,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:16:07,955 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. +2024-12-01 22:16:08,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:16:49,210 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. +2024-12-01 22:16:49,603 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:17:30,469 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. +2024-12-01 22:17:30,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:18:11,725 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 383. +2024-12-01 22:18:12,080 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:18:13,082 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 384, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '60be314603116f013db4c89038a6fae5', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:18:13,082 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:18:13,082 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:18:13,421 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:18:13,421 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:18:13,495 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:18:13,495 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:18:13,495 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:18:52,985 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. +2024-12-01 22:18:53,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:19:34,240 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. +2024-12-01 22:19:34,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:20:15,493 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. +2024-12-01 22:20:15,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:20:56,758 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. +2024-12-01 22:20:57,081 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:21:38,019 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. +2024-12-01 22:21:38,423 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:22:19,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 386. +2024-12-01 22:22:19,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:22:19,865 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 387, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:22:19,867 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:22:19,867 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:23:00,531 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:23:00,861 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:23:41,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:23:42,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:24:23,053 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:24:23,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:25:04,313 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:25:05,008 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:25:45,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:25:45,941 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:26:26,828 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:26:27,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:27:08,089 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:27:08,475 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:27:49,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:27:49,731 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:28:30,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:28:31,298 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:29:11,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:29:12,231 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:29:53,111 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:29:53,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:30:34,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:30:34,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:31:15,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:31:15,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:31:56,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:31:57,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:32:38,139 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:32:38,539 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:33:19,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 387. +2024-12-01 22:33:19,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:33:23,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 388, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:33:23,258 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:33:23,258 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:33:23,677 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:33:23,677 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:33:23,774 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:33:23,774 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:33:23,774 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:34:00,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 390. +2024-12-01 22:34:01,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:34:13,113 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:34:13,113 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:34:13,113 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:34:13,273 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:34:13,273 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:34:13,602 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:34:13,602 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:34:13,644 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:34:13,644 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:34:13,644 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:34:41,916 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:34:42,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:35:23,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:35:23,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:36:04,446 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:36:04,784 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:36:45,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:36:46,103 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:37:26,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:37:27,356 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:38:08,217 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:38:08,593 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:38:49,476 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:38:49,870 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:39:30,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:39:31,041 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:40:11,999 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:40:12,301 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:40:53,262 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:40:53,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:41:34,528 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:41:34,841 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:42:15,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:42:16,115 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:42:57,048 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:42:57,354 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:43:38,313 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:43:38,640 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:44:19,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:44:19,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:45:00,833 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:45:01,139 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:45:42,086 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:45:42,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:46:23,346 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 394. +2024-12-01 22:46:23,653 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:46:46,181 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 395, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:46:46,181 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:46:46,181 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:46:48,288 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 396, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:46:48,288 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:46:48,288 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:46:48,721 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:46:48,721 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:46:48,882 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:46:48,882 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:46:48,882 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:47:04,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 398. +2024-12-01 22:47:04,912 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:47:45,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 398. +2024-12-01 22:47:46,168 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:48:27,117 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 398. +2024-12-01 22:48:27,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:48:58,099 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:48:58,099 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 22:48:58,099 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 22:49:08,378 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 399. +2024-12-01 22:49:08,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:49:09,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 400, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '60be314603116f013db4c89038a6fae5', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:49:09,104 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:49:09,104 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:49:49,639 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 400. +2024-12-01 22:49:49,947 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:50:30,896 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 400. +2024-12-01 22:50:31,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:51:12,148 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 400. +2024-12-01 22:51:12,454 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:51:53,405 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 400. +2024-12-01 22:51:53,734 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:52:34,662 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 400. +2024-12-01 22:52:34,985 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:53:00,146 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 401, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '60be314603116f013db4c89038a6fae5', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:53:00,146 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:53:00,146 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:53:15,922 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. +2024-12-01 22:53:16,228 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:53:57,187 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. +2024-12-01 22:53:57,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:54:38,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. +2024-12-01 22:54:38,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:55:19,703 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. +2024-12-01 22:55:20,011 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:56:00,959 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. +2024-12-01 22:56:01,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:56:42,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. +2024-12-01 22:56:42,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:57:23,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. +2024-12-01 22:57:23,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:58:04,742 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. +2024-12-01 22:58:05,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:58:46,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 401. +2024-12-01 22:58:46,315 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:58:58,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 402, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:58:58,853 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:58:58,853 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:59:00,951 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 403, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:59:00,951 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:00,951 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:59:03,868 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:03,868 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:59:03,949 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:03,949 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:59:03,949 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:59:06,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 406, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 22:59:06,761 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:06,761 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:59:08,020 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 407, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:59:08,020 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:08,020 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:59:08,699 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:08,699 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:59:08,790 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:08,790 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:59:08,790 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:59:13,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 410, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 22:59:13,016 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:13,016 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:59:13,693 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:13,693 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:59:13,725 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:13,725 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:59:13,725 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:59:13,861 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 413, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 22:59:13,869 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:13,869 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:59:18,695 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:18,695 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:59:18,755 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:18,755 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:59:18,755 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:59:27,262 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 415. +2024-12-01 22:59:27,311 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 416, 'op': 0, 'd': {'member': {'user': {'username': 'izana.is.ballin', 'public_flags': 256, 'id': '1171350849021280358', 'global_name': 'Izana', 'display_name': 'Izana', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '95e58bbcdc1951ece3015b7f028d0d3a'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804251802849400', '1083803803679215626', '1062251154521722991'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-28T12:38:29.315000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1171350849021280358', 'suppress': False, 'session_id': '98dfb0a3e20ab619682ac75fa5bc5b1b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 22:59:27,311 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:27,311 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:59:27,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 22:59:28,717 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:28,717 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:59:28,765 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:28,765 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:59:28,765 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 22:59:52,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 419, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 22:59:52,077 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:52,077 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 22:59:53,707 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:53,707 - discord.client - DEBUG - Dispatching event message +2024-12-01 22:59:53,766 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 22:59:53,766 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 22:59:53,766 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 23:00:08,518 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 421. +2024-12-01 23:00:08,823 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:00:21,766 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 422, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 23:00:21,766 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:00:21,766 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 23:00:23,766 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:00:23,791 - discord.client - DEBUG - Dispatching event message +2024-12-01 23:00:23,846 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:00:23,846 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 23:00:23,846 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 23:00:30,715 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 425, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 23:00:30,715 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:00:30,715 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 23:00:33,726 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:00:33,726 - discord.client - DEBUG - Dispatching event message +2024-12-01 23:00:33,791 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:00:33,791 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 23:00:33,791 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 23:00:49,686 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 428, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 23:00:49,686 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:00:49,686 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 23:00:49,783 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 428. +2024-12-01 23:00:50,090 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:00:53,779 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:00:53,793 - discord.client - DEBUG - Dispatching event message +2024-12-01 23:00:53,831 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:00:53,831 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 23:00:53,831 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 23:01:31,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. +2024-12-01 23:01:31,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:02:12,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. +2024-12-01 23:02:12,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:02:53,562 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. +2024-12-01 23:02:53,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:03:34,822 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. +2024-12-01 23:03:35,145 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:04:16,087 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. +2024-12-01 23:04:16,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:04:57,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. +2024-12-01 23:04:57,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:05:38,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. +2024-12-01 23:05:38,916 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:06:19,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. +2024-12-01 23:06:20,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:07:01,133 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 430. +2024-12-01 23:07:01,441 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:07:06,093 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 23:07:06,093 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 23:07:06,415 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 23:07:06,415 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 23:07:06,842 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 23:07:06,848 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-r554",{"micros":0.0}]']}} +2024-12-01 23:07:06,848 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 23:07:07,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:07:07,171 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 431, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-r554",{"micros":984,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":625,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-199",{"micros":26}]}]']}} +2024-12-01 23:07:07,171 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:07:07,171 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 23:07:07,171 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 23:07:48,104 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:07:48,410 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:08:29,360 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:08:29,683 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:09:10,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:09:10,930 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:09:51,883 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:09:52,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:10:33,139 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:10:33,465 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:11:14,404 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:11:14,716 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:11:55,658 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:11:55,979 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:12:36,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:12:37,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:13:18,177 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:13:18,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:13:59,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:13:59,740 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:14:40,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:14:41,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:15:21,952 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:15:22,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:16:03,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:16:03,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:16:44,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:16:44,784 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:17:25,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:17:26,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:18:06,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:18:07,304 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:18:48,256 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:18:48,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:19:29,511 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:19:29,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:20:10,767 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:20:11,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:20:52,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:20:52,346 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:21:33,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:21:33,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:22:14,551 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:22:14,889 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:22:55,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:22:56,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:23:37,070 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:23:37,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:24:18,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:24:18,661 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:24:59,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:24:59,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:25:40,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:25:41,179 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:26:22,119 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:26:22,425 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:27:03,377 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:27:03,698 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:27:44,638 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:27:44,944 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:28:25,896 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:28:26,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:29:07,148 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:29:07,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:29:48,400 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 431. +2024-12-01 23:29:48,722 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:29:56,511 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:29:56,511 - discord.client - DEBUG - Dispatching event user_update +2024-12-01 23:29:56,511 - discord.client - DEBUG - Dispatching event member_update +2024-12-01 23:30:00,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 433, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:00:00.665000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312840642891878490', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T17:59:56.650936+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/DdQKoWRujlJM3iWCFxWFunoBJCWjlfSsKsade8_moAc/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/DdQKoWRujlJM3iWCFxWFunoBJCWjlfSsKsade8_moAc/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 23:30:00,577 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:30:00,577 - discord.client - DEBUG - Dispatching event message +2024-12-01 23:30:00,662 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 434, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:00:00.665000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312840642891878490', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T17:59:56.650000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/DdQKoWRujlJM3iWCFxWFunoBJCWjlfSsKsade8_moAc/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 1072049460496044032'}, 'description': '<@1072049460496044032>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/DdQKoWRujlJM3iWCFxWFunoBJCWjlfSsKsade8_moAc/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png', 'name': 'underratedkingxd', 'icon_url': 'https://cdn.discordapp.com/avatars/1072049460496044032/a1df69cb31f4bf979963aef3d0c843e6.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-01 23:30:00,662 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:30:00,662 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 23:30:00,662 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 23:30:29,659 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 434. +2024-12-01 23:30:29,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:31:10,920 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 434. +2024-12-01 23:31:11,248 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:31:52,179 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 434. +2024-12-01 23:31:52,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:32:33,434 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 434. +2024-12-01 23:32:33,762 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:33:14,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 434. +2024-12-01 23:33:15,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:33:19,305 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 435, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 23:33:19,305 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:33:19,305 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 23:33:43,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 436, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 23:33:43,974 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:33:43,974 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 23:33:55,959 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 436. +2024-12-01 23:33:56,265 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:34:37,218 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 436. +2024-12-01 23:34:37,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:35:18,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 436. +2024-12-01 23:35:18,789 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:35:51,336 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 437, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 23:35:51,336 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:35:51,336 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 23:35:51,950 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 438, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-01 23:35:51,950 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:35:51,950 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 23:35:59,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 438. +2024-12-01 23:36:00,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:36:41,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 438. +2024-12-01 23:36:41,312 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:37:22,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 438. +2024-12-01 23:37:22,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:38:03,517 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 438. +2024-12-01 23:38:03,825 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:38:44,780 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 438. +2024-12-01 23:38:45,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:39:22,396 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 439, 'op': 0, 'd': {'member': {'user': {'username': 'xagrrrrr', 'public_flags': 0, 'id': '999014098194923660', 'global_name': 'Sagar', 'display_name': 'Sagar', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'f9fbf690742913e098ff21e1aa3b50ce'}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1083804166385836084', '1088385891116003380', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': 'Sagar', 'mute': False, 'joined_at': '2024-08-13T16:43:58.118000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '999014098194923660', 'suppress': False, 'session_id': '5dd4440e85b92e36e8e8dff6b28f3c21', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 23:39:22,396 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:39:22,396 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 23:39:24,217 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:39:24,217 - discord.client - DEBUG - Dispatching event message +2024-12-01 23:39:24,296 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:39:24,296 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 23:39:24,296 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 23:39:26,040 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 441. +2024-12-01 23:39:26,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:40:07,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 441. +2024-12-01 23:40:07,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:40:48,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 441. +2024-12-01 23:40:48,893 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:41:29,829 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 441. +2024-12-01 23:41:30,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:41:44,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 442, 'op': 0, 'd': {'member': {'user': {'username': 'wrath9171', 'public_flags': 0, 'id': '462176764672868359', 'global_name': None, 'display_name': None, 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '14523c8b15a40027f8cc50eb0af39f01'}, 'roles': ['1166279735983230976', '1170543488555810816', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1062250559974940733', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-13T16:41:52.526000+00:00', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '462176764672868359', 'suppress': False, 'session_id': '60be314603116f013db4c89038a6fae5', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-01 23:41:44,984 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:41:44,984 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-01 23:41:49,310 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:41:49,328 - discord.client - DEBUG - Dispatching event message +2024-12-01 23:41:49,361 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:41:49,361 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-01 23:41:49,361 - discord.client - DEBUG - Dispatching event message_edit +2024-12-01 23:42:11,081 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 444. +2024-12-01 23:42:11,423 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:42:43,689 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 445, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:12:43.804000+00:00', 'pinned': False, 'nonce': '1312843839030951936', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312843843728572497', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-01 23:42:43,689 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:42:43,689 - discord.client - DEBUG - Dispatching event message +2024-12-01 23:42:43,689 - discord.client - DEBUG - Dispatching event command +2024-12-01 23:42:44,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 446, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:12:44.367000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312843846090231830', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers prefer dark mode? Because light attracts bugs!', 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-01 23:42:44,333 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:42:44,333 - discord.client - DEBUG - Dispatching event message +2024-12-01 23:42:47,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 447, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733076767, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-01 23:42:47,034 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:42:47,046 - discord.client - DEBUG - Dispatching event typing +2024-12-01 23:42:47,046 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-01 23:42:50,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 448, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:12:50.774000+00:00', 'pinned': False, 'nonce': '1312843858115035136', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312843872963137567', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-01 23:42:50,650 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:42:50,670 - discord.client - DEBUG - Dispatching event message +2024-12-01 23:42:50,670 - discord.client - DEBUG - Dispatching event command +2024-12-01 23:42:50,811 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do programmers prefer dark mode? Because light attracts bugs!","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-01 23:42:50,811 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers prefer dark mode? Because light attracts bugs!', 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-01T18:12:44.367000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312843846090231830', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-01 23:42:50,811 - discord.client - DEBUG - Dispatching event command_completion +2024-12-01 23:42:51,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 449, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T18:12:51.403000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312843875601354892', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "How many programmers does it take to change a light bulb? None, that's a hardware problem.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-01 23:42:51,271 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:42:51,271 - discord.client - DEBUG - Dispatching event message +2024-12-01 23:42:51,312 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"How many programmers does it take to change a light bulb? None, that's a hardware problem.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-01 23:42:51,312 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "How many programmers does it take to change a light bulb? None, that's a hardware problem.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-01T18:12:51.403000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312843875601354892', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-01 23:42:51,312 - discord.client - DEBUG - Dispatching event command_completion +2024-12-01 23:42:52,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:42:52,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:43:33,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:43:33,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:44:14,866 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:44:15,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:44:56,130 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:44:56,456 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:45:37,393 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:45:37,716 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:46:18,650 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:46:18,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:46:59,906 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:47:00,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:47:41,161 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:47:41,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:48:22,425 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:48:22,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:49:03,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:49:04,001 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:49:44,930 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:49:45,285 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:50:26,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:50:26,504 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:51:07,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 449. +2024-12-01 23:51:07,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:51:48,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-01 23:51:48,049 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-01 23:51:48,364 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-01 23:51:48,364 - discord.client - DEBUG - Dispatching event disconnect +2024-12-01 23:51:48,764 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-b.discord.gg +2024-12-01 23:51:48,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-b-r9h7",{"micros":0.0}]']}} +2024-12-01 23:51:48,764 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-01 23:51:49,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:51:49,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 450, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-b-r9h7",{"micros":506,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":270,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-199",{"micros":29}]}]']}} +2024-12-01 23:51:49,086 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-01 23:51:49,086 - discord.gateway - INFO - Shard ID None has successfully RESUMED session 954f72c90c0683473eae22136d5d8fb0. +2024-12-01 23:51:49,086 - discord.client - DEBUG - Dispatching event resumed +2024-12-01 23:52:30,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-01 23:52:30,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:53:11,288 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-01 23:53:11,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:53:52,553 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-01 23:53:52,859 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:54:33,815 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-01 23:54:34,121 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:55:15,076 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-01 23:55:15,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:55:56,337 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-01 23:55:56,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:56:37,599 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-01 23:56:37,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:57:18,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-01 23:57:19,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:58:00,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-01 23:58:00,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:58:41,382 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-01 23:58:41,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-01 23:59:22,634 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-01 23:59:22,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:00:03,885 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:00:04,200 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:00:45,138 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:00:45,445 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:01:26,402 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:01:26,732 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:02:07,655 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:02:07,962 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:02:48,911 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:02:49,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:03:30,176 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:03:30,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:04:11,433 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:04:11,740 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:04:52,686 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:04:52,991 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:05:33,949 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:05:34,256 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:06:15,214 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:06:15,521 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:06:56,472 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:06:56,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:07:37,734 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:07:38,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:08:18,990 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:08:19,297 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:09:00,245 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:09:00,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:09:41,502 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:09:41,809 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:10:22,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:10:23,079 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:11:04,026 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:11:04,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:11:45,284 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:11:45,596 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:12:26,547 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:12:26,852 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:13:07,799 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 450. +2024-12-02 00:13:08,105 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:13:43,019 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 451, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 00:13:43,019 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:13:43,019 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:13:45,003 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:13:45,003 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:13:45,084 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:13:45,084 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 00:13:45,084 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 00:13:49,055 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 453. +2024-12-02 00:13:49,366 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:14:30,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 453. +2024-12-02 00:14:30,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:14:43,974 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:14:43,986 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:14:44,050 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:14:44,050 - discord.client - DEBUG - Dispatching event typing +2024-12-02 00:14:44,050 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 00:15:11,568 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. +2024-12-02 00:15:11,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:15:52,821 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. +2024-12-02 00:15:53,128 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:16:34,083 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. +2024-12-02 00:16:34,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:17:15,342 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. +2024-12-02 00:17:15,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:17:56,596 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. +2024-12-02 00:17:56,922 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:18:37,858 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. +2024-12-02 00:18:38,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:19:19,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 455. +2024-12-02 00:19:19,438 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:19:30,922 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:19:30,922 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:19:35,189 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:19:35,189 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:19:35,252 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:19:35,252 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 00:19:35,252 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 00:20:00,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. +2024-12-02 00:20:00,679 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:20:41,623 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. +2024-12-02 00:20:41,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:21:22,877 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. +2024-12-02 00:21:23,184 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:22:04,130 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. +2024-12-02 00:22:04,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:22:45,390 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. +2024-12-02 00:22:45,697 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:23:26,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 458. +2024-12-02 00:23:26,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:24:03,959 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:24:03,959 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:24:07,416 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:24:07,416 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:24:07,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 460. +2024-12-02 00:24:08,221 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:24:12,625 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:24:12,625 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:24:43,297 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 462, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': True, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 00:24:43,297 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:24:43,297 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:24:49,177 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 462. +2024-12-02 00:24:49,494 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:24:55,426 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:24:55,426 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:25:30,440 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 463. +2024-12-02 00:25:30,752 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:26:11,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 463. +2024-12-02 00:26:12,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:26:52,959 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 463. +2024-12-02 00:26:53,266 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:27:34,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 463. +2024-12-02 00:27:34,542 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:28:15,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 463. +2024-12-02 00:28:15,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:28:46,017 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:28:46,017 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:28:56,744 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 464. +2024-12-02 00:28:57,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:29:03,352 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:29:03,352 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:29:38,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. +2024-12-02 00:29:38,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:30:19,260 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. +2024-12-02 00:30:19,567 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:31:00,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. +2024-12-02 00:31:00,828 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:31:41,777 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. +2024-12-02 00:31:42,100 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:32:23,032 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. +2024-12-02 00:32:23,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:33:04,292 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 465. +2024-12-02 00:33:04,622 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:33:24,912 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:33:24,912 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:33:25,338 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:33:25,338 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:33:25,458 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:33:25,458 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 00:33:25,458 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 00:33:45,553 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 468. +2024-12-02 00:33:45,861 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:33:56,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 469, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 00:33:56,879 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:33:56,879 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:34:26,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 469. +2024-12-02 00:34:27,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:34:57,995 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:34:57,995 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:35:00,419 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:35:00,419 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:35:00,668 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:35:00,668 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 00:35:00,668 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 00:35:08,061 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 472. +2024-12-02 00:35:08,369 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:35:49,324 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 472. +2024-12-02 00:35:49,647 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:36:10,396 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:36:10,396 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:36:30,591 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. +2024-12-02 00:36:30,914 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:37:11,853 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. +2024-12-02 00:37:12,161 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:37:53,110 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. +2024-12-02 00:37:53,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:38:34,365 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. +2024-12-02 00:38:34,688 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:39:15,625 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. +2024-12-02 00:39:15,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:39:56,887 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 473. +2024-12-02 00:39:57,194 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:40:14,108 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 474, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 00:40:14,108 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:40:14,122 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 00:40:38,143 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. +2024-12-02 00:40:38,450 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:41:19,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. +2024-12-02 00:41:19,708 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:42:00,659 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. +2024-12-02 00:42:00,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:42:41,925 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. +2024-12-02 00:42:42,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:43:23,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. +2024-12-02 00:43:23,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:44:04,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. +2024-12-02 00:44:04,745 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:44:45,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 474. +2024-12-02 00:44:46,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:44:48,379 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 475, 'op': 0, 'd': {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'paws', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': '8d61abb8b5da075befaff858861dba54'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-02 00:44:48,379 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:44:48,379 - discord.client - DEBUG - Dispatching event member_update +2024-12-02 00:44:48,379 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 476, 'op': 0, 'd': {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'paws', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': '8d61abb8b5da075befaff858861dba54'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168249317203640550', '1062343535535325235', '1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-03-02T09:43:32.035000+00:00', 'guild_id': '922005348670406667', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-02 00:44:48,379 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:44:48,379 - discord.client - DEBUG - Dispatching event member_update +2024-12-02 00:45:26,961 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. +2024-12-02 00:45:27,267 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:46:08,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. +2024-12-02 00:46:08,530 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:46:49,490 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. +2024-12-02 00:46:49,799 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:47:30,757 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. +2024-12-02 00:47:31,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:48:12,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. +2024-12-02 00:48:12,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:48:53,266 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. +2024-12-02 00:48:53,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:49:34,530 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. +2024-12-02 00:49:34,837 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:50:15,794 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. +2024-12-02 00:50:16,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:50:57,053 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 476. +2024-12-02 00:50:57,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:51:26,280 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:51:26,280 - discord.client - DEBUG - Dispatching event user_update +2024-12-02 00:51:26,280 - discord.client - DEBUG - Dispatching event member_update +2024-12-02 00:51:30,497 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 478, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T19:21:30.836000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312861153755398285', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T19:21:26.638083+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/hHTtW6u5i8st1V4FjM_UZG3fpUyh6rQUoQ08rYWlD64/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 503264979454132255'}, 'description': '<@503264979454132255>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/hHTtW6u5i8st1V4FjM_UZG3fpUyh6rQUoQ08rYWlD64/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png', 'name': 'matrix_07', 'icon_url': 'https://cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-02 00:51:30,513 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:51:30,513 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:51:30,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 479, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-01T19:21:30.836000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312861153755398285', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-01T19:21:26.638000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/hHTtW6u5i8st1V4FjM_UZG3fpUyh6rQUoQ08rYWlD64/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 503264979454132255'}, 'description': '<@503264979454132255>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/hHTtW6u5i8st1V4FjM_UZG3fpUyh6rQUoQ08rYWlD64/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png', 'name': 'matrix_07', 'icon_url': 'https://cdn.discordapp.com/avatars/503264979454132255/62296ef684d8d1578154f455e6eaf99f.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-02 00:51:30,561 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:51:30,561 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 00:51:30,561 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 00:51:38,317 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 479. +2024-12-02 00:51:38,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:52:19,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 479. +2024-12-02 00:52:19,885 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:53:00,838 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 479. +2024-12-02 00:53:01,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:53:42,096 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 479. +2024-12-02 00:53:42,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:54:06,022 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_CREATE', 's': 480, 'op': 0, 'd': {'version': 1733081046358, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 70, 'permission_overwrites': [{'type': 1, 'id': '969877724170711060', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1079820325006618634', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1079991990340558848', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1083972920872808478', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1062340890439463012', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '922005348670406667', 'deny': '1024', 'allow': '0'}, {'type': 1, 'id': '557628352828014614', 'deny': '0', 'allow': '257040'}], 'parent_id': '1168320316523688046', 'nsfw': False, 'name': 'ticket-0004', 'last_message_id': None, 'id': '1312861804900122684', 'guild_id': '922005348670406667', 'flags': 0}} +2024-12-02 00:54:06,022 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:06,046 - discord.client - DEBUG - Dispatching event guild_channel_create +2024-12-02 00:54:06,053 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 481, 'op': 0, 'd': {'user_id': '557628352828014614', 'target_id': '1312861804900122684', 'id': '1312861805965480039', 'changes': [{'new_value': 'ticket-0004', 'key': 'name'}, {'new_value': 0, 'key': 'type'}, {'new_value': [{'type': 1, 'id': '969877724170711060', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1079820325006618634', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1079991990340558848', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1083972920872808478', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1062340890439463012', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '922005348670406667', 'deny': '1024', 'allow': '0'}, {'type': 1, 'id': '557628352828014614', 'deny': '0', 'allow': '257040'}], 'key': 'permission_overwrites'}, {'new_value': False, 'key': 'nsfw'}, {'new_value': 0, 'key': 'rate_limit_per_user'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 10, 'guild_id': '922005348670406667'}} +2024-12-02 00:54:06,053 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:06,053 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-02 00:54:06,662 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:06,664 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:54:06,744 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:06,744 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 00:54:06,744 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 00:54:10,638 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:10,638 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:54:15,493 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:15,493 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:54:17,822 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_DELETE', 's': 486, 'op': 0, 'd': {'id': '1312861845610303530', 'channel_id': '1312861804900122684', 'guild_id': '922005348670406667'}} +2024-12-02 00:54:17,822 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:17,822 - discord.client - DEBUG - Dispatching event raw_message_delete +2024-12-02 00:54:17,822 - discord.client - DEBUG - Dispatching event message_delete +2024-12-02 00:54:17,968 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 487, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T19:24:18.244000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['930355638050111529', '1063901902686920724'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-01-11T07:01:09.327000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312861855915573271', 'flags': 0, 'embeds': [{'type': 'rich', 'description': 'Ticket Closed by <@969877724170711060>', 'content_scan_version': 0, 'color': 16514610}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1312861804900122684', 'author': {'username': 'Ticket Tool', 'public_flags': 65536, 'primary_guild': None, 'id': '557628352828014614', 'global_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-02 00:54:17,968 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:17,968 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:54:18,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_UPDATE', 's': 488, 'op': 0, 'd': {'version': 1733081058901, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 70, 'permission_overwrites': [{'type': 1, 'id': '969877724170711060', 'deny': '0', 'allow': '0'}, {'type': 0, 'id': '1079820325006618634', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1079991990340558848', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1083972920872808478', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '1062340890439463012', 'deny': '0', 'allow': '3072'}, {'type': 0, 'id': '922005348670406667', 'deny': '1024', 'allow': '0'}, {'type': 1, 'id': '557628352828014614', 'deny': '0', 'allow': '257040'}], 'parent_id': '1168320316523688046', 'nsfw': False, 'name': 'closed-0004', 'last_message_id': '1312861855915573271', 'id': '1312861804900122684', 'guild_id': '922005348670406667', 'flags': 0}} +2024-12-02 00:54:18,587 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:18,605 - discord.client - DEBUG - Dispatching event guild_channel_update +2024-12-02 00:54:18,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 489, 'op': 0, 'd': {'user_id': '557628352828014614', 'target_id': '1312861804900122684', 'options': {'type': '1', 'id': '969877724170711060'}, 'id': '1312861858738339840', 'changes': [{'old_value': 3072, 'new_value': '0', 'key': 'allow'}], 'action_type': 14, 'guild_id': '922005348670406667'}} +2024-12-02 00:54:18,605 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:18,605 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-02 00:54:18,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 490, 'op': 0, 'd': {'user_id': '557628352828014614', 'target_id': '1312861804900122684', 'id': '1312861858738339842', 'changes': [{'old_value': 'ticket-0004', 'new_value': 'closed-0004', 'key': 'name'}], 'action_type': 11, 'guild_id': '922005348670406667'}} +2024-12-02 00:54:18,605 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:18,605 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-02 00:54:18,771 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:18,771 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:54:20,582 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 00:54:20,582 - discord.client - DEBUG - Dispatching event message +2024-12-02 00:54:23,348 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. +2024-12-02 00:54:23,656 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:55:04,613 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. +2024-12-02 00:55:04,922 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:55:45,874 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. +2024-12-02 00:55:46,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:56:27,141 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. +2024-12-02 00:56:27,447 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:57:08,407 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. +2024-12-02 00:57:08,713 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:57:49,668 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. +2024-12-02 00:57:49,981 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:58:30,926 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. +2024-12-02 00:58:31,248 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:59:12,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. +2024-12-02 00:59:12,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 00:59:53,434 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. +2024-12-02 00:59:53,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:00:34,695 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. +2024-12-02 01:00:35,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:01:15,955 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 492. +2024-12-02 01:01:16,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:01:53,333 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:01:53,333 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:01:55,613 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:01:55,613 - discord.client - DEBUG - Dispatching event message +2024-12-02 01:01:55,678 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:01:55,678 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 01:01:55,678 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 01:01:57,210 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:01:57,522 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:02:38,462 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:02:38,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:03:19,726 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:03:20,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:04:00,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:04:01,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:04:42,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:04:42,566 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:05:23,507 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:05:23,834 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:06:04,760 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:06:05,065 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:06:46,020 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:06:46,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:07:27,279 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:07:27,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:08:08,544 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:08:08,851 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:08:49,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:08:50,135 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:09:31,071 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:09:31,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:10:12,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 495. +2024-12-02 01:10:12,655 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:10:31,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 496, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-02 01:10:31,619 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:10:31,619 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:10:31,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 497, 'op': 0, 'd': {'user_id': '634227687757447178', 'target_id': None, 'options': {'count': '1'}, 'id': '1312865940110573579', 'action_type': 27, 'guild_id': '922005348670406667'}} +2024-12-02 01:10:31,619 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:10:31,645 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-02 01:10:33,492 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:10:33,492 - discord.client - DEBUG - Dispatching event message +2024-12-02 01:10:33,685 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:10:33,685 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 01:10:33,685 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 01:10:34,154 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 500, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:10:34,154 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:10:34,154 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:10:38,468 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:10:38,468 - discord.client - DEBUG - Dispatching event message +2024-12-02 01:10:38,516 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:10:38,516 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 01:10:38,516 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 01:10:53,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 502. +2024-12-02 01:10:53,901 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:11:34,838 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 502. +2024-12-02 01:11:35,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:12:16,091 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 502. +2024-12-02 01:12:16,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:12:57,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 502. +2024-12-02 01:12:57,671 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:13:38,624 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 502. +2024-12-02 01:13:38,931 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:14:07,817 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 503, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:14:07,817 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:14:07,817 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:14:08,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 504, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:14:08,222 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:14:08,222 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:14:19,887 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 504. +2024-12-02 01:14:20,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:15:01,141 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 504. +2024-12-02 01:15:01,442 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:15:42,400 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 504. +2024-12-02 01:15:42,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:16:23,662 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 504. +2024-12-02 01:16:23,970 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:17:04,914 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 504. +2024-12-02 01:17:05,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:17:07,033 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 505, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:17:07,033 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:17:07,033 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:17:35,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 506, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:17:35,224 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:17:35,224 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:17:45,168 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 507, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:17:45,168 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:17:45,168 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:17:46,170 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 507. +2024-12-02 01:17:46,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:18:27,435 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 507. +2024-12-02 01:18:27,773 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:19:08,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 507. +2024-12-02 01:19:09,002 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:19:49,950 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 507. +2024-12-02 01:19:50,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:20:00,081 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 508, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-02 01:20:00,081 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:20:00,097 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:20:03,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 509, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:20:03,574 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:20:03,574 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:20:03,606 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:20:03,606 - discord.client - DEBUG - Dispatching event message +2024-12-02 01:20:03,719 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:20:03,719 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 01:20:03,719 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 01:20:08,514 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:20:08,514 - discord.client - DEBUG - Dispatching event message +2024-12-02 01:20:08,571 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:20:08,571 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 01:20:08,571 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 01:20:31,207 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 513. +2024-12-02 01:20:31,514 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:20:39,172 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 514, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:20:39,172 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:20:39,172 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:21:12,460 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 514. +2024-12-02 01:21:12,783 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:21:53,725 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 514. +2024-12-02 01:21:54,031 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:22:34,990 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 514. +2024-12-02 01:22:35,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:22:37,436 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 515, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:22:37,436 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:22:37,436 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:22:37,450 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 516, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:22:37,450 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:22:37,450 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:22:39,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 517, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:22:39,321 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:22:39,321 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:22:50,031 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 518, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:22:50,031 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:22:50,031 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:23:16,249 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 518. +2024-12-02 01:23:16,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:23:57,506 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 518. +2024-12-02 01:23:57,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:24:38,771 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 518. +2024-12-02 01:24:39,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:25:03,706 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 519, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1079991990340558848', '1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1079816911396806666', '1087734955607597168', '1062343535535325235', '1083804166385836084', '1088385891116003380', '926435586238185494', '1166311981649764372', '1083804251802849400', '1087734805564772412', '1168310895592611870'], 'premium_since': '2023-03-10T16:03:04.611000+00:00', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-07T11:46:53.653000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '6f9635cf907734747fd1abc50e7f1665', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-02 01:25:03,706 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:25:03,706 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:25:08,658 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:25:08,658 - discord.client - DEBUG - Dispatching event message +2024-12-02 01:25:08,716 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:25:08,716 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 01:25:08,716 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 01:25:20,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 521. +2024-12-02 01:25:20,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:26:01,299 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 521. +2024-12-02 01:26:01,610 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:26:42,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 521. +2024-12-02 01:26:42,880 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:27:23,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 521. +2024-12-02 01:27:24,118 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:27:44,441 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 522, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:27:44,441 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:27:44,441 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:28:05,063 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. +2024-12-02 01:28:05,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:28:46,324 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. +2024-12-02 01:28:46,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:29:27,588 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. +2024-12-02 01:29:27,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:30:08,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. +2024-12-02 01:30:09,150 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:30:50,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. +2024-12-02 01:30:50,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:31:31,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. +2024-12-02 01:31:31,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:32:12,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 522. +2024-12-02 01:32:12,927 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:32:31,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 523, 'op': 0, 'd': {'member': {'user': {'username': '.rathod.', 'public_flags': 128, 'id': '235143666568658944', 'global_name': 'Rathod<3', 'display_name': 'Rathod<3', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '234af0138f5d9d87277b28f19d6341f6'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1168249317203640550'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-24T14:42:03.444000+00:00', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '235143666568658944', 'suppress': False, 'session_id': '3c1f06524a266b3923ac42502d33403b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:32:31,491 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:32:31,491 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:32:33,661 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:32:33,661 - discord.client - DEBUG - Dispatching event message +2024-12-02 01:32:33,757 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:32:33,757 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 01:32:33,757 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 01:32:37,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 526, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:32:37,999 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:32:37,999 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:32:53,862 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 527, 'op': 0, 'd': {'member': {'user': {'username': '.rathod.', 'public_flags': 128, 'id': '235143666568658944', 'global_name': 'Rathod<3', 'display_name': 'Rathod<3', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '234af0138f5d9d87277b28f19d6341f6'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1168249317203640550'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-24T14:42:03.444000+00:00', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '235143666568658944', 'suppress': False, 'session_id': '3c1f06524a266b3923ac42502d33403b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:32:53,862 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:32:53,862 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:32:53,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 527. +2024-12-02 01:32:54,184 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:33:03,522 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 528, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:33:03,522 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:33:03,522 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:33:04,205 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 529, 'op': 0, 'd': {'member': {'user': {'username': 'rover_1', 'public_flags': 64, 'id': '969877724170711060', 'global_name': 'Rovru', 'display_name': 'Rovru', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144048390594908212', 'expires_at': None, 'asset': 'a_db9baf0ba7cf449d2b027c06309dbe8d'}, 'avatar': 'a1ccbe819bf523e02aef160ea5e1186d'}, 'roles': ['1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T17:24:25.554000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '969877724170711060', 'suppress': False, 'session_id': 'af70625ce5667cec7cbca48677d63a30', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-02 01:33:04,205 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:33:04,205 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:33:08,646 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:33:08,646 - discord.client - DEBUG - Dispatching event message +2024-12-02 01:33:08,860 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:33:08,860 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 01:33:08,860 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 01:33:35,129 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 531. +2024-12-02 01:33:35,443 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:33:37,630 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 532, 'op': 0, 'd': {'member': {'user': {'username': '.rathod.', 'public_flags': 128, 'id': '235143666568658944', 'global_name': 'Rathod<3', 'display_name': 'Rathod<3', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '234af0138f5d9d87277b28f19d6341f6'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1168249317203640550'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-24T14:42:03.444000+00:00', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '235143666568658944', 'suppress': False, 'session_id': '3c1f06524a266b3923ac42502d33403b', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:33:37,646 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:33:37,646 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:33:57,417 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 533, 'op': 0, 'd': {'member': {'user': {'username': '.rathod.', 'public_flags': 128, 'id': '235143666568658944', 'global_name': 'Rathod<3', 'display_name': 'Rathod<3', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '234af0138f5d9d87277b28f19d6341f6'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1168249317203640550'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-24T14:42:03.444000+00:00', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '235143666568658944', 'suppress': False, 'session_id': '3c1f06524a266b3923ac42502d33403b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:33:57,417 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:33:57,417 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:34:06,888 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 534, 'op': 0, 'd': {'member': {'user': {'username': '.rathod.', 'public_flags': 128, 'id': '235143666568658944', 'global_name': 'Rathod<3', 'display_name': 'Rathod<3', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '234af0138f5d9d87277b28f19d6341f6'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1168249317203640550'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-02-24T14:42:03.444000+00:00', 'flags': 10, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '235143666568658944', 'suppress': False, 'session_id': '3c1f06524a266b3923ac42502d33403b', 'self_video': False, 'self_mute': True, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-02 01:34:06,888 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:34:06,888 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:34:08,797 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:34:08,797 - discord.client - DEBUG - Dispatching event message +2024-12-02 01:34:08,849 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:34:08,849 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 01:34:08,849 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 01:34:16,390 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. +2024-12-02 01:34:16,697 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:34:57,654 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. +2024-12-02 01:34:57,976 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:35:38,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. +2024-12-02 01:35:39,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:36:20,171 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. +2024-12-02 01:36:20,478 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:37:01,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. +2024-12-02 01:37:01,735 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:37:42,681 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. +2024-12-02 01:37:42,987 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:38:23,947 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. +2024-12-02 01:38:24,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:39:05,201 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. +2024-12-02 01:39:05,508 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:39:46,458 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. +2024-12-02 01:39:46,786 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:40:27,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. +2024-12-02 01:40:28,036 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:41:08,964 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 536. +2024-12-02 01:41:09,287 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:41:20,486 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 537, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_stream': True, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 01:41:20,486 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 01:41:20,486 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 01:41:50,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:41:50,539 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:42:31,487 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:42:31,815 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:43:12,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:43:13,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:43:54,017 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:43:54,332 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:44:35,283 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:44:35,589 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:45:16,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:45:16,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:45:57,799 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:45:58,105 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:46:39,059 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:46:39,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:47:20,318 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:47:20,625 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:48:01,569 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:48:01,914 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:48:42,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:48:43,143 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:49:24,094 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:49:24,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:50:05,350 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:50:05,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:50:46,614 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:50:46,959 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:51:27,874 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:51:28,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:52:09,125 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:52:09,462 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:52:50,380 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:52:50,686 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:53:31,634 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:53:31,973 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:54:12,886 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:54:13,194 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:54:54,142 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:54:54,481 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:55:35,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:55:35,709 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:56:16,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:56:16,988 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:56:57,929 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:56:58,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:57:39,194 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:57:39,516 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:58:20,454 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:58:20,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:59:01,720 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:59:02,028 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 01:59:42,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 01:59:43,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:00:24,235 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:00:24,541 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:01:05,499 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:01:05,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:01:46,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:01:47,078 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:02:28,027 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:02:28,333 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:03:09,286 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:03:09,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:03:50,543 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:03:50,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:04:31,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:04:32,103 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:05:13,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:05:13,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:05:54,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:05:54,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:06:35,561 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:06:35,886 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:07:16,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:07:17,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:07:58,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:07:58,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:08:39,336 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:08:39,643 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:09:20,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:09:20,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:10:01,865 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:10:02,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:10:43,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:10:43,426 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:11:24,383 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:11:24,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:12:05,636 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:12:05,962 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:12:46,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 537. +2024-12-02 02:12:47,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:13:04,623 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 538, 'op': 0, 'd': {'member': {'user': {'username': 'sin_00', 'public_flags': 128, 'id': '318717198111604736', 'global_name': '-Sinister', 'display_name': '-Sinister', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1144308439720394944', 'expires_at': None, 'asset': 'a_3c97a2d37f433a7913a1c7b7a735d000'}, 'avatar': 'fcfa7924cafddb433e7b9ad07903142d'}, 'roles': ['1079816911396806666', '1062251705921720411', '926435586238185494'], 'premium_since': '2024-01-08T15:57:47.797000+00:00', 'pending': False, 'nick': '- Sin', 'mute': False, 'joined_at': '2022-04-07T10:00:28.867000+00:00', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': '4ac8916a9e3b34f7bd11aa2f445b3bb8', 'avatar': '00e632dbbdb171a28d0eed2d0395f022'}, 'user_id': '318717198111604736', 'suppress': False, 'session_id': 'df934439c39f7b7fcb4b50b55a8ecacd', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-02 02:13:04,623 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 02:13:04,623 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 02:13:07,728 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 02:13:07,728 - discord.client - DEBUG - Dispatching event message +2024-12-02 02:13:07,809 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 02:13:07,809 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 02:13:07,809 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 02:13:08,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 541, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': '1285329365231603843'}} +2024-12-02 02:13:08,102 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 02:13:08,102 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 02:13:08,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 542, 'op': 0, 'd': {'member': {'user': {'username': '_s_our_', 'public_flags': 0, 'id': '634227687757447178', 'global_name': '!SASTA NASHA!', 'display_name': '!SASTA NASHA!', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '73bd07eb524611936d73612fa71ac369'}, 'roles': ['1166279735983230976', '1062340890439463012', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1083804166385836084', '1088385891116003380', '1168310895592611870', '1083804251802849400', '1083973062858391642', '1083972838320504862'], 'premium_since': None, 'pending': False, 'nick': 'Sin ki biwi', 'mute': False, 'joined_at': '2022-07-04T13:22:44.406000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': '2023-05-12T19:59:30.656000+00:00', 'banner': None, 'avatar': None}, 'user_id': '634227687757447178', 'suppress': False, 'session_id': '94e20fc8af1f097809815490db2b445e', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '922005348670406667', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-02 02:13:08,584 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 02:13:08,584 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 02:13:08,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 543, 'op': 0, 'd': {'status': None, 'id': '1285329365231603843', 'guild_id': '922005348670406667'}} +2024-12-02 02:13:08,584 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 02:13:08,584 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. +2024-12-02 02:13:13,320 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 02:13:13,320 - discord.client - DEBUG - Dispatching event message +2024-12-02 02:13:13,384 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 02:13:13,384 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 02:13:13,384 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 02:13:28,158 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:13:28,465 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:14:09,422 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:14:09,729 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:14:50,676 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:14:50,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:15:31,927 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:15:32,234 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:16:13,190 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:16:13,506 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:16:54,448 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:16:54,754 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:17:35,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:17:36,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:18:16,975 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:18:17,285 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:18:58,231 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:18:58,556 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:19:39,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:19:39,792 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:20:20,744 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:20:21,081 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:21:02,005 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:21:02,312 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:21:43,271 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:21:43,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:22:24,538 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:22:24,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:23:05,798 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:23:06,105 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:23:47,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:23:47,358 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:24:28,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:24:28,615 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:25:09,560 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:25:09,872 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:25:50,821 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:25:51,128 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:26:32,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:26:32,381 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:27:13,329 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:27:13,636 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:27:54,581 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:27:54,887 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:28:35,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:28:36,158 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:29:17,088 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:29:17,396 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:29:58,339 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:29:58,646 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:30:39,599 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:30:39,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:31:20,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:31:21,172 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:32:02,120 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:32:02,426 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:32:43,386 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:32:43,694 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:33:24,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:33:24,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:34:05,912 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:34:06,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:34:47,164 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:34:47,472 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:35:28,416 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:35:28,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:36:09,670 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:36:09,977 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:36:50,934 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:36:51,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:37:32,187 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:37:32,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:38:13,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:38:13,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:38:54,700 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:38:55,026 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:39:35,962 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:39:36,274 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:40:17,221 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:40:17,544 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:40:58,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:40:58,802 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:41:39,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:41:40,043 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:42:20,997 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:42:21,308 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:43:02,248 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:43:02,555 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:43:43,505 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:43:43,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:44:24,765 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:44:25,072 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:45:06,029 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:45:06,335 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:45:47,286 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:45:47,592 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:46:28,552 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:46:28,859 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:47:09,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:47:10,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:47:51,068 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:47:51,376 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:48:32,321 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:48:32,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:49:13,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:49:13,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:49:54,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:49:55,151 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:50:36,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:50:36,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:51:17,364 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:51:17,683 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:51:58,625 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:51:58,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:52:39,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:52:40,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:53:21,145 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 545. +2024-12-02 02:53:21,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:53:40,506 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 546, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733088221, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1310707299177992262', 'guild_id': '1292805470117171231'}} +2024-12-02 02:53:40,506 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 02:53:40,506 - discord.client - DEBUG - Dispatching event typing +2024-12-02 02:53:40,506 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 02:53:49,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 547, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:23:50.385000+00:00', 'pinned': False, 'nonce': '1312891930903838720', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312891938055393291', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '```readme.md\n\n```', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [{'url': 'https://cdn.discordapp.com/attachments/1310707299177992262/1312891937774370977/xhmTImI.txt?ex=674e2566&is=674cd3e6&hm=6d4f80bdae250a6dd8a5a6467c02c3d3eba302e24e59edd4a04eebef9c0d9059&', 'size': 4833, 'proxy_url': 'https://media.discordapp.net/attachments/1310707299177992262/1312891937774370977/xhmTImI.txt?ex=674e2566&is=674cd3e6&hm=6d4f80bdae250a6dd8a5a6467c02c3d3eba302e24e59edd4a04eebef9c0d9059&', 'id': '1312891937774370977', 'filename': 'xhmTImI.txt', 'content_type': 'text/plain; charset=utf-8', 'content_scan_version': 0}], 'guild_id': '1292805470117171231'}} +2024-12-02 02:53:49,788 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 02:53:49,788 - discord.client - DEBUG - Dispatching event message +2024-12-02 02:53:49,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 548, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733088230, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1310707299177992262', 'guild_id': '1292805470117171231'}} +2024-12-02 02:53:49,881 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 02:53:49,881 - discord.client - DEBUG - Dispatching event typing +2024-12-02 02:53:49,881 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 02:54:02,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 02:54:02,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:54:43,655 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 02:54:43,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:55:24,917 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 02:55:25,224 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:56:06,183 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 02:56:06,492 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:56:47,435 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 02:56:47,759 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:57:28,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 02:57:29,008 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:58:09,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 02:58:10,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:58:51,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 02:58:51,534 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 02:59:32,476 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 02:59:32,791 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:00:13,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 03:00:14,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:00:54,997 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 03:00:55,317 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:01:36,250 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 03:01:36,552 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:02:17,505 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 03:02:17,820 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:02:58,757 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 03:02:59,070 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:03:40,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 548. +2024-12-02 03:03:40,352 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:09:09,740 - discord.client - DEBUG - on_error has successfully been registered as an event +2024-12-02 03:09:09,740 - asyncio - DEBUG - Using proactor: IocpProactor +2024-12-02 03:09:09,742 - IndieGOBot - INFO - Starting bot... +2024-12-02 03:09:09,743 - discord.client - INFO - logging in using static token +2024-12-02 03:09:10,204 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-12-02 03:09:10,205 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-12-02 03:09:10,205 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-12-02 03:09:10,745 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-12-02 03:09:10,747 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-12-02 03:09:10,747 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['Moderation', 'fun', 'productivity', 'Community', 'Programming'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-12-02 03:09:10,748 - IndieGOBot - INFO - Starting bot setup... +2024-12-02 03:09:10,748 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-12-02 03:09:10,759 - IndieGOBot - INFO - Successfully loaded extension: cogs.general +2024-12-02 03:09:10,759 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-12-02 03:09:10,772 - IndieGOBot - INFO - Successfully loaded extension: cogs.moderation +2024-12-02 03:09:10,772 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-12-02 03:09:10,789 - IndieGOBot - INFO - Successfully loaded extension: cogs.fun +2024-12-02 03:09:10,790 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-12-02 03:09:10,801 - IndieGOBot - INFO - Successfully loaded extension: cogs.admin +2024-12-02 03:09:10,802 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-12-02 03:09:10,811 - IndieGOBot - INFO - Successfully loaded extension: cogs.tickets +2024-12-02 03:09:10,812 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-12-02 03:09:10,821 - IndieGOBot - INFO - Successfully loaded extension: cogs.logging +2024-12-02 03:09:10,822 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-12-02 03:09:23,279 - IndieGOBot - INFO - Successfully loaded extension: cogs.ai_assistant +2024-12-02 03:09:23,280 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help +2024-12-02 03:09:37,656 - IndieGOBot - INFO - Successfully loaded extension: cogs.coding_help +2024-12-02 03:09:37,657 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help +2024-12-02 03:09:37,667 - IndieGOBot - ERROR - Failed to load extension cogs.help +2024-12-02 03:09:37,668 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-12-02 03:09:37,668 - IndieGOBot - ERROR - Error message: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. +2024-12-02 03:09:37,669 - IndieGOBot - ERROR - Traceback: +2024-12-02 03:09:37,700 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\help.py", line 221, in setup + await bot.add_cog(Help(bot)) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 799, in add_cog + cog = await cog._inject(self, override=override, guild=guild, guilds=guilds) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\cog.py", line 725, in _inject + raise e + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\cog.py", line 716, in _inject + bot.add_command(command) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 253, in add_command + super().add_command(command) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\core.py", line 1356, in add_command + raise CommandRegistrationError(command.name) +discord.ext.commands.errors.CommandRegistrationError: The command help is already an existing command or alias. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\mante\OneDrive\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.help' raised an error: CommandRegistrationError: The command help is already an existing command or alias. + +2024-12-02 03:09:37,701 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base +2024-12-02 03:09:37,710 - IndieGOBot - INFO - Successfully loaded extension: cogs.base +2024-12-02 03:09:37,711 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors +2024-12-02 03:09:37,754 - IndieGOBot - INFO - Successfully loaded extension: cogs.errors +2024-12-02 03:09:37,754 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod +2024-12-02 03:09:37,766 - IndieGOBot - INFO - Successfully loaded extension: cogs.automod +2024-12-02 03:09:37,766 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction +2024-12-02 03:09:37,774 - IndieGOBot - INFO - Successfully loaded extension: cogs.dm_interaction +2024-12-02 03:09:37,774 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel +2024-12-02 03:09:37,784 - IndieGOBot - INFO - Successfully loaded extension: cogs.voice_channel +2024-12-02 03:09:37,784 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr +2024-12-02 03:09:37,813 - IndieGOBot - INFO - Successfully loaded extension: cogs.ocr +2024-12-02 03:09:37,814 - IndieGOBot - DEBUG - Attempting to load extension: cogs.reddit +2024-12-02 03:09:38,863 - IndieGOBot - ERROR - Failed to load extension cogs.reddit +2024-12-02 03:09:38,864 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-12-02 03:09:38,864 - IndieGOBot - ERROR - Error message: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. +2024-12-02 03:09:38,864 - IndieGOBot - ERROR - Traceback: +2024-12-02 03:09:38,887 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 963, in _load_from_module_spec + await setup(self) + File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\reddit.py", line 29, in setup + await bot.add_cog(Reddit(bot)) + ^^^^^^^^^^^ + File "C:\Users\mante\OneDrive\Desktop\IndieGo\cogs\reddit.py", line 12, in __init__ + self.reddit = praw.Reddit( + ^^^^^^^^^^^^ + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\praw\util\deprecate_args.py", line 46, in wrapped + return func(**dict(zip(_old_args, args)), **kwargs) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\praw\reddit.py", line 259, in __init__ + raise MissingRequiredAttributeException( +praw.exceptions.MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\mante\OneDrive\Desktop\IndieGo\main.py", line 56, in setup_hook + await self.load_extension(extension) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\mante\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\discord\ext\commands\bot.py", line 968, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.reddit' raised an error: MissingRequiredAttributeException: Required configuration setting 'client_id' missing. +This setting can be provided in a praw.ini file, as a keyword argument to the Reddit class constructor, or as an environment variable. + +2024-12-02 03:09:38,888 - IndieGOBot - INFO - Syncing command tree... +2024-12-02 03:09:39,427 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"ping","description":"Check the bot's latency","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ticket","description":"Creates a ticket.","type":1,"options":[{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"initialize_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true},{"type":3,"name":"model","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"codehelp","description":"Get coding help","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true},{"type":3,"name":"language","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"explain","description":"Explain code in simple terms","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 +2024-12-02 03:09:39,428 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). +2024-12-02 03:09:39,429 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1312008730954694656', 'application_id': '1304755116255088670', 'version': '1312008731227062351', 'default_member_permissions': None, 'type': 1, 'name': 'ping', 'name_localizations': None, 'description': "Check the bot's latency", 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694657', 'application_id': '1304755116255088670', 'version': '1312008731319468052', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694658', 'application_id': '1304755116255088670', 'version': '1312008731319468053', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694659', 'application_id': '1304755116255088670', 'version': '1312008731319468054', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694660', 'application_id': '1304755116255088670', 'version': '1312008731319468055', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694661', 'application_id': '1304755116255088670', 'version': '1312008731319468056', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694662', 'application_id': '1304755116255088670', 'version': '1312008731319468057', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008730954694663', 'application_id': '1304755116255088670', 'version': '1312008731319468058', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008730954694664', 'application_id': '1304755116255088670', 'version': '1312008731319468059', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008730954694665', 'application_id': '1304755116255088670', 'version': '1312008731319468060', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062342', 'application_id': '1304755116255088670', 'version': '1312008731319468061', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062343', 'application_id': '1304755116255088670', 'version': '1312008731348701195', 'default_member_permissions': None, 'type': 1, 'name': 'ticket', 'name_localizations': None, 'description': 'Creates a ticket.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062344', 'application_id': '1304755116255088670', 'version': '1312008731348701196', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062345', 'application_id': '1304755116255088670', 'version': '1312008731348701197', 'default_member_permissions': None, 'type': 1, 'name': 'initialize_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1312008731227062346', 'application_id': '1304755116255088670', 'version': '1312008731348701198', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'model', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062347', 'application_id': '1304755116255088670', 'version': '1312008731348701199', 'default_member_permissions': None, 'type': 1, 'name': 'codehelp', 'name_localizations': None, 'description': 'Get coding help', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'language', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1312008731227062348', 'application_id': '1304755116255088670', 'version': '1312008731348701200', 'default_member_permissions': None, 'type': 1, 'name': 'explain', 'name_localizations': None, 'description': 'Explain code in simple terms', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062349', 'application_id': '1304755116255088670', 'version': '1312008731348701201', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1312008731227062350', 'application_id': '1304755116255088670', 'version': '1312008731348701202', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] +2024-12-02 03:09:39,433 - IndieGOBot - INFO - Command tree synced successfully +2024-12-02 03:09:39,852 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ +2024-12-02 03:09:39,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-g36t",{"micros":0.0}]']}} +2024-12-02 03:09:39,854 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. +2024-12-02 03:09:40,167 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:09:40,273 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': 'fa2277b53513e5fe00deb778c28808aa', 'resume_gateway_url': 'wss://gateway-us-east1-d.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-d-g36t",{"micros":106633,"calls":["id_created",{"micros":721,"calls":[]},"session_lookup_time",{"micros":2550,"calls":[]},"session_lookup_finished",{"micros":16,"calls":[]},"discord-sessions-prd-1-99",{"micros":103065,"calls":["start_session",{"micros":72673,"calls":["discord-api-rpc-6cf69f8f4b-tbppm",{"micros":67874,"calls":["get_user",{"micros":6707},"get_guilds",{"micros":3292},"send_scheduled_deletion_message",{"micros":5},"guild_join_requests",{"micros":14611},"authorized_ip_coro",{"micros":10}]}]},"starting_guild_connect",{"micros":38,"calls":[]},"presence_started",{"micros":9629,"calls":[]},"guilds_started",{"micros":106,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":20591,"calls":[]},"connect_finished",{"micros":20597,"calls":[]},"build_ready",{"micros":19,"calls":[]},"clean_ready",{"micros":0,"calls":[]},"optimize_ready",{"micros":1,"calls":[]},"split_ready",{"micros":1,"calls":[]}]}]}]']}} +2024-12-02 03:09:40,275 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:40,276 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: fa2277b53513e5fe00deb778c28808aa). +2024-12-02 03:09:40,276 - discord.client - DEBUG - Dispatching event connect +2024-12-02 03:09:40,530 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:40,537 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:40,554 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:40,595 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:40,603 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:40,623 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:40,836 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:40,860 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '8497323d62653ea8b8710adf750d2967', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-02 03:09:40,861 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:40,862 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. +2024-12-02 03:09:40,947 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_CREATE', 's': 10, 'op': 0, 'd': {'role': {'version': 1733089181650, 'unicode_emoji': None, 'position': 1, 'permissions': '0', 'name': 'new role', 'mentionable': False, 'managed': False, 'id': '1312895927908040785', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:09:40,947 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:40,947 - discord.client - DEBUG - Dispatching event guild_role_create +2024-12-02 03:09:40,960 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 11, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1312895927908040785', 'id': '1312895927908040786', 'changes': [{'new_value': 'new role', 'key': 'name'}, {'new_value': 0, 'key': 'permissions'}, {'new_value': 0, 'key': 'color'}, {'new_value': False, 'key': 'hoist'}, {'new_value': False, 'key': 'mentionable'}], 'action_type': 30, 'guild_id': '1292805470117171231'}} +2024-12-02 03:09:40,961 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:40,961 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-02 03:09:41,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 12, 'op': 0, 'd': {'nonce': 'c5877e212ee24c8f39942ce434cf1ea5', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-02 03:09:41,370 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:41,370 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. +2024-12-02 03:09:41,867 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 13, 'op': 0, 'd': {'nonce': 'c35e01ceac6e3efd902f1f2b484d3dc1', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-02 03:09:41,869 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:41,869 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. +2024-12-02 03:09:42,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 14, 'op': 0, 'd': {'nonce': 'f50cdbb3c9f38c7e574fd243e8687f4c', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-02 03:09:42,361 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:42,361 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. +2024-12-02 03:09:42,856 - discord.client - DEBUG - Dispatching event guild_available +2024-12-02 03:09:42,857 - discord.client - DEBUG - Dispatching event guild_available +2024-12-02 03:09:42,857 - discord.client - DEBUG - Dispatching event guild_available +2024-12-02 03:09:42,857 - discord.client - DEBUG - Dispatching event guild_available +2024-12-02 03:09:42,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 15, 'op': 0, 'd': {'nonce': '9b5e9e43ca8a57c8c4611d015bbe66a2', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-02 03:09:42,872 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:42,872 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. +2024-12-02 03:09:42,873 - discord.client - DEBUG - Dispatching event guild_available +2024-12-02 03:09:43,361 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 16, 'op': 0, 'd': {'nonce': '7e3c1ba5bd3162b88b1c247bbf22bdb8', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'paws', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': '8d61abb8b5da075befaff858861dba54'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd011136e2bea1b66543ab52f51a6ef5d'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e3fc9f81235eab66f41bd1f30754e886'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1292805470117171233', '1308517312667844702'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189764+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-02 03:09:43,364 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:43,365 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. +2024-12-02 03:09:43,365 - discord.client - DEBUG - Dispatching event guild_available +2024-12-02 03:09:44,498 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:44,505 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-02 03:09:44,677 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:44,684 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-02 03:09:44,828 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:44,834 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-02 03:09:44,982 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:44,988 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-02 03:09:45,125 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:45,133 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-02 03:09:45,180 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:09:45,181 - discord.state - DEBUG - Processed a chunk for 142 members in guild ID 922005348670406667. +2024-12-02 03:09:45,182 - discord.client - DEBUG - Dispatching event guild_available +2024-12-02 03:09:45,182 - discord.client - DEBUG - Dispatching event ready +2024-12-02 03:09:45,182 - IndieGOBot - INFO - IndieGO#9052 has connected to Discord! +2024-12-02 03:09:45,183 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":"for .help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status +2024-12-02 03:10:03,147 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 23, 'op': 0, 'd': {'role': {'version': 1733089203528, 'unicode_emoji': None, 'tags': {'bot_id': '720351927581278219'}, 'position': 2, 'permissions': '268822624', 'name': 'Invite Tracker', 'mentionable': False, 'managed': True, 'id': '1295433111592767562', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,147 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,148 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 24, 'op': 0, 'd': {'role': {'version': 1733089203545, 'unicode_emoji': None, 'tags': {'bot_id': '155149108183695360'}, 'position': 3, 'permissions': '1513962695871', 'name': 'Dyno', 'mentionable': False, 'managed': True, 'id': '1295430234946142292', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,148 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,149 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 25, 'op': 0, 'd': {'role': {'version': 1733089203548, 'unicode_emoji': None, 'tags': {'bot_id': '703886990948565003'}, 'position': 4, 'permissions': '8', 'name': 'Double Counter', 'mentionable': False, 'managed': True, 'id': '1295429440242847840', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,149 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,150 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,150 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 26, 'op': 0, 'd': {'role': {'version': 1733089203550, 'unicode_emoji': None, 'tags': {'bot_id': '557628352828014614'}, 'position': 5, 'permissions': '2416045072', 'name': 'Ticket Tool', 'mentionable': False, 'managed': True, 'id': '1293150462140223683', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,150 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,150 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,151 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 27, 'op': 0, 'd': {'role': {'version': 1733089203554, 'unicode_emoji': None, 'tags': {'bot_id': '493716749342998541'}, 'position': 6, 'permissions': '1007021177', 'name': 'Mimu', 'mentionable': False, 'managed': True, 'id': '1293088072459747342', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,151 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,151 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,155 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,155 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,159 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,159 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,162 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,162 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,164 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,165 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,168 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,168 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,171 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,171 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,171 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 34, 'op': 0, 'd': {'role': {'version': 1733089203585, 'unicode_emoji': None, 'position': 13, 'permissions': '521942715968', 'name': 'iOS', 'mentionable': False, 'managed': False, 'id': '1292805470163177543', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 12648344}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,172 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,172 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 35, 'op': 0, 'd': {'role': {'version': 1733089203587, 'unicode_emoji': None, 'position': 14, 'permissions': '521942715968', 'name': 'Android', 'mentionable': False, 'managed': False, 'id': '1292805470163177544', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 3066993}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,173 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,173 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 36, 'op': 0, 'd': {'role': {'version': 1733089203589, 'unicode_emoji': None, 'position': 15, 'permissions': '521942715968', 'name': 'TempleOS', 'mentionable': False, 'managed': False, 'id': '1292805470163177545', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 15844367}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,173 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,174 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,174 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 37, 'op': 0, 'd': {'role': {'version': 1733089203594, 'unicode_emoji': None, 'position': 16, 'permissions': '521942715968', 'name': 'MacOS', 'mentionable': False, 'managed': False, 'id': '1292805470163177546', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 16777215}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,174 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,174 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,174 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 38, 'op': 0, 'd': {'role': {'version': 1733089203598, 'unicode_emoji': None, 'position': 17, 'permissions': '6546640448', 'name': 'Windows', 'mentionable': False, 'managed': False, 'id': '1292805470163177547', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 3447003}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,174 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,175 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 39, 'op': 0, 'd': {'role': {'version': 1733089203601, 'unicode_emoji': None, 'position': 18, 'permissions': '521942715968', 'name': 'CentOS', 'mentionable': False, 'managed': False, 'id': '1292805470163177548', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 8783774}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,175 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,175 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,175 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 40, 'op': 0, 'd': {'role': {'version': 1733089203604, 'unicode_emoji': None, 'position': 19, 'permissions': '521942715968', 'name': 'Fedora', 'mentionable': False, 'managed': False, 'id': '1292805470163177549', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 2123412}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,175 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,175 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 41, 'op': 0, 'd': {'role': {'version': 1733089203608, 'unicode_emoji': None, 'position': 20, 'permissions': '521942715968', 'name': 'Ubuntu', 'mentionable': False, 'managed': False, 'id': '1292805470163177550', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 10038562}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,176 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,176 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 42, 'op': 0, 'd': {'role': {'version': 1733089203610, 'unicode_emoji': None, 'position': 21, 'permissions': '6546640448', 'name': 'Linux', 'mentionable': False, 'managed': False, 'id': '1292805470163177551', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 1752220}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,177 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,177 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,180 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,180 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,180 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 44, 'op': 0, 'd': {'role': {'version': 1733089203615, 'unicode_emoji': None, 'position': 23, 'permissions': '0', 'name': 'Whistleblower', 'mentionable': False, 'managed': False, 'id': '1292805470175887431', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 6441372}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,181 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,181 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,181 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 45, 'op': 0, 'd': {'role': {'version': 1733089203620, 'unicode_emoji': None, 'position': 24, 'permissions': '0', 'name': 'Red Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887432', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 16711680}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,181 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,181 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,181 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 46, 'op': 0, 'd': {'role': {'version': 1733089203626, 'unicode_emoji': None, 'position': 25, 'permissions': '0', 'name': 'Blue Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887433', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 2520831}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,182 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,182 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 47, 'op': 0, 'd': {'role': {'version': 1733089203628, 'unicode_emoji': None, 'position': 26, 'permissions': '0', 'name': 'Green Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887434', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 5635906}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,182 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,182 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 48, 'op': 0, 'd': {'role': {'version': 1733089203631, 'unicode_emoji': None, 'position': 27, 'permissions': '6546640448', 'name': 'Gray Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887435', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 9936031}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,183 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,183 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 49, 'op': 0, 'd': {'role': {'version': 1733089203634, 'unicode_emoji': None, 'position': 28, 'permissions': '6546640448', 'name': 'Black Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887436', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 1}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,183 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,183 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 50, 'op': 0, 'd': {'role': {'version': 1733089203637, 'unicode_emoji': None, 'position': 29, 'permissions': '6546640448', 'name': 'White Hat', 'mentionable': False, 'managed': False, 'id': '1292805470175887437', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 16777215}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,184 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,184 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,186 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,186 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,187 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 52, 'op': 0, 'd': {'role': {'version': 1733089203641, 'unicode_emoji': None, 'position': 31, 'permissions': '521942715968', 'name': 'Node.js', 'mentionable': False, 'managed': False, 'id': '1292805470175887439', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 12165717}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,187 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,187 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,187 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 53, 'op': 0, 'd': {'role': {'version': 1733089203643, 'unicode_emoji': None, 'position': 32, 'permissions': '521942715968', 'name': 'React', 'mentionable': False, 'managed': False, 'id': '1292805470175887440', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 4445678}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,187 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,188 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,189 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 54, 'op': 0, 'd': {'role': {'version': 1733089203646, 'unicode_emoji': None, 'position': 33, 'permissions': '521942715968', 'name': 'CSS', 'mentionable': False, 'managed': False, 'id': '1292805470192406652', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 4652969}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,189 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,189 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 55, 'op': 0, 'd': {'role': {'version': 1733089203651, 'unicode_emoji': None, 'position': 34, 'permissions': '521942715968', 'name': 'HTML', 'mentionable': False, 'managed': False, 'id': '1292805470192406653', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 16711680}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,190 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,190 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 56, 'op': 0, 'd': {'role': {'version': 1733089203685, 'unicode_emoji': None, 'position': 35, 'permissions': '521942715968', 'name': 'C#', 'mentionable': False, 'managed': False, 'id': '1292805470192406654', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 1861341}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,190 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,191 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 57, 'op': 0, 'd': {'role': {'version': 1733089203692, 'unicode_emoji': None, 'position': 36, 'permissions': '521942715968', 'name': 'C++', 'mentionable': False, 'managed': False, 'id': '1292805470192406655', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 7116509}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,191 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,191 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 58, 'op': 0, 'd': {'role': {'version': 1733089203695, 'unicode_emoji': None, 'position': 37, 'permissions': '521942715968', 'name': 'Go', 'mentionable': False, 'managed': False, 'id': '1292805470192406656', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 9164543}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,192 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,192 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 59, 'op': 0, 'd': {'role': {'version': 1733089203700, 'unicode_emoji': None, 'position': 38, 'permissions': '521942715968', 'name': 'Rust', 'mentionable': False, 'managed': False, 'id': '1292805470192406657', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 131329}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,192 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,193 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,193 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 60, 'op': 0, 'd': {'role': {'version': 1733089203704, 'unicode_emoji': None, 'position': 39, 'permissions': '521942715968', 'name': 'Lua', 'mentionable': False, 'managed': False, 'id': '1292805470192406658', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 204263}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,193 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,193 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,194 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 61, 'op': 0, 'd': {'role': {'version': 1733089203706, 'unicode_emoji': None, 'position': 40, 'permissions': '521942715968', 'name': 'Kotlin', 'mentionable': False, 'managed': False, 'id': '1292805470192406659', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 15105570}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,194 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,194 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,194 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 62, 'op': 0, 'd': {'role': {'version': 1733089203709, 'unicode_emoji': None, 'position': 41, 'permissions': '521942715968', 'name': 'Java', 'mentionable': False, 'managed': False, 'id': '1292805470192406660', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 9865730}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,194 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,194 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,195 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 63, 'op': 0, 'd': {'role': {'version': 1733089203711, 'unicode_emoji': None, 'position': 42, 'permissions': '521942715968', 'name': 'TypeScript', 'mentionable': False, 'managed': False, 'id': '1292805470192406661', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 4743664}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,195 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,195 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,195 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 64, 'op': 0, 'd': {'role': {'version': 1733089203714, 'unicode_emoji': None, 'position': 43, 'permissions': '521942715968', 'name': 'JavaScript', 'mentionable': False, 'managed': False, 'id': '1292805470204985456', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 15844367}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,195 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,195 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 65, 'op': 0, 'd': {'role': {'version': 1733089203716, 'unicode_emoji': None, 'position': 44, 'permissions': '521942715968', 'name': 'Python', 'mentionable': False, 'managed': False, 'id': '1292805470204985457', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 2123412}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,196 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,196 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,199 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,199 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,200 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 67, 'op': 0, 'd': {'role': {'version': 1733089203722, 'unicode_emoji': None, 'position': 46, 'permissions': '521942715968', 'name': 'Robotics Engineer', 'mentionable': False, 'managed': False, 'id': '1292805470204985459', 'icon': None, 'hoist': False, 'flags': 1, 'description': None, 'color': 15629712}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,200 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,200 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,200 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 68, 'op': 0, 'd': {'role': {'version': 1733089203725, 'unicode_emoji': None, 'position': 47, 'permissions': '521942715968', 'name': 'Computer Science', 'mentionable': False, 'managed': False, 'id': '1292805470204985460', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 7289005}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,200 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,200 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 69, 'op': 0, 'd': {'role': {'version': 1733089203727, 'unicode_emoji': None, 'position': 48, 'permissions': '6546640449', 'name': 'Cyber Security', 'mentionable': False, 'managed': False, 'id': '1292805470204985461', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 14685461}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,201 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,201 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 70, 'op': 0, 'd': {'role': {'version': 1733089203733, 'unicode_emoji': None, 'position': 49, 'permissions': '6710226624', 'name': 'Programmer', 'mentionable': False, 'managed': False, 'id': '1292805470204985462', 'icon': None, 'hoist': False, 'flags': 1, 'description': None, 'color': 16777215}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,201 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,202 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,204 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,204 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,204 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 72, 'op': 0, 'd': {'role': {'version': 1733089203745, 'unicode_emoji': None, 'position': 51, 'permissions': '0', 'name': 'Logged Out', 'mentionable': False, 'managed': False, 'id': '1292805470204985464', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,205 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,205 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,206 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 73, 'op': 0, 'd': {'role': {'version': 1733089203749, 'unicode_emoji': None, 'position': 52, 'permissions': '0', 'name': 'Unregistered', 'mentionable': False, 'managed': False, 'id': '1292805470204985465', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,206 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,206 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,206 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 74, 'op': 0, 'd': {'role': {'version': 1733089203752, 'unicode_emoji': None, 'position': 53, 'permissions': '6479531584', 'name': 'Member', 'mentionable': False, 'managed': False, 'id': '1292805470221893652', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 9159671}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,207 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,207 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 75, 'op': 0, 'd': {'role': {'version': 1733089203756, 'unicode_emoji': None, 'position': 54, 'permissions': '521942715968', 'name': 'Special Access', 'mentionable': False, 'managed': False, 'id': '1292805470221893653', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 15844367}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,207 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,207 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 76, 'op': 0, 'd': {'role': {'version': 1733089203758, 'unicode_emoji': None, 'position': 55, 'permissions': '521942715968', 'name': 'Honorable Member', 'mentionable': False, 'managed': False, 'id': '1292805470221893654', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 65525}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,208 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,208 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,208 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 77, 'op': 0, 'd': {'role': {'version': 1733089203760, 'unicode_emoji': None, 'position': 56, 'permissions': '0', 'name': 'Blue', 'mentionable': False, 'managed': False, 'id': '1292805470221893655', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 3706367}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,208 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,209 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,209 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 78, 'op': 0, 'd': {'role': {'version': 1733089203763, 'unicode_emoji': None, 'position': 57, 'permissions': '0', 'name': 'Black', 'mentionable': False, 'managed': False, 'id': '1292805470221893656', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 1}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,209 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,209 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,209 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 79, 'op': 0, 'd': {'role': {'version': 1733089203765, 'unicode_emoji': None, 'position': 58, 'permissions': '0', 'name': 'Coding Support', 'mentionable': False, 'managed': False, 'id': '1292805470221893657', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,209 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,210 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 80, 'op': 0, 'd': {'role': {'version': 1733089203768, 'unicode_emoji': None, 'position': 59, 'permissions': '6559231687', 'name': 'Trial Moderation', 'mentionable': False, 'managed': False, 'id': '1292805470221893658', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,210 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,210 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 81, 'op': 0, 'd': {'role': {'version': 1733089203780, 'unicode_emoji': None, 'position': 60, 'permissions': '521942715968', 'name': 'Moderation', 'mentionable': False, 'managed': False, 'id': '1292805470221893659', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,210 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,211 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 82, 'op': 0, 'd': {'role': {'version': 1733089203785, 'unicode_emoji': None, 'position': 61, 'permissions': '6546771529', 'name': 'Management', 'mentionable': False, 'managed': False, 'id': '1292805470221893660', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,211 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,211 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,211 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 83, 'op': 0, 'd': {'role': {'version': 1733089203789, 'unicode_emoji': None, 'position': 62, 'permissions': '6546771529', 'name': 'Administration', 'mentionable': False, 'managed': False, 'id': '1292805470247194667', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,211 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,212 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,212 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 84, 'op': 0, 'd': {'role': {'version': 1733089203791, 'unicode_emoji': None, 'position': 63, 'permissions': '0', 'name': 'Owner', 'mentionable': False, 'managed': False, 'id': '1295430750807789598', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,212 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,212 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,212 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 85, 'op': 0, 'd': {'role': {'version': 1733089203794, 'unicode_emoji': None, 'position': 64, 'permissions': '0', 'name': 'Indie HQ', 'mentionable': False, 'managed': False, 'id': '1295430673594581002', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,212 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,213 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 86, 'op': 0, 'd': {'role': {'version': 1733089203797, 'unicode_emoji': None, 'position': 65, 'permissions': '70890686893633', 'name': 'System', 'mentionable': False, 'managed': False, 'id': '1292805470221893661', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,213 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,213 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 87, 'op': 0, 'd': {'role': {'version': 1733089203800, 'unicode_emoji': None, 'position': 66, 'permissions': '8589410303', 'name': 'Bots', 'mentionable': True, 'managed': False, 'id': '1292805470117171233', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 9936031}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,214 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,214 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,214 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 88, 'op': 0, 'd': {'role': {'version': 1733089203802, 'unicode_emoji': None, 'position': 67, 'permissions': '6442450944', 'name': 'Muted', 'mentionable': False, 'managed': False, 'id': '1292805470117171232', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 8421504}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,214 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,215 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,215 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 89, 'op': 0, 'd': {'role': {'version': 1733089203805, 'unicode_emoji': None, 'tags': {'bot_id': '235148962103951360'}, 'position': 68, 'permissions': '2088234230', 'name': 'carl-bot', 'mentionable': False, 'managed': True, 'id': '1293081062099910659', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,215 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,215 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,215 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 90, 'op': 0, 'd': {'role': {'version': 1733089203807, 'unicode_emoji': None, 'position': 69, 'permissions': '0', 'name': 'Quarantine', 'mentionable': False, 'managed': False, 'id': '1293087512855838722', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 11765828}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,216 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,216 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 91, 'op': 0, 'd': {'role': {'version': 1733089203812, 'unicode_emoji': None, 'tags': {'bot_id': '651095740390834176'}, 'position': 70, 'permissions': '8', 'name': 'Security', 'mentionable': False, 'managed': True, 'id': '1293081148724875329', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,216 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,217 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 92, 'op': 0, 'd': {'role': {'version': 1733089203815, 'unicode_emoji': None, 'tags': {'bot_id': '536991182035746816'}, 'position': 71, 'permissions': '8', 'name': 'Wick', 'mentionable': False, 'managed': True, 'id': '1293081011550162979', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,217 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,217 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 93, 'op': 0, 'd': {'role': {'version': 1733089203817, 'unicode_emoji': None, 'tags': {'bot_id': '1304755116255088670'}, 'position': 72, 'permissions': '18701295479039', 'name': 'IndieGO', 'mentionable': False, 'managed': True, 'id': '1308517312667844702', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,217 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,218 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 94, 'op': 0, 'd': {'role': {'version': 1733089203824, 'unicode_emoji': None, 'position': 73, 'permissions': '0', 'name': 'new role', 'mentionable': False, 'managed': False, 'id': '1312895927908040785', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 0}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,218 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,218 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,221 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,221 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,616 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 96, 'op': 0, 'd': {'role': {'version': 1733089204317, 'unicode_emoji': None, 'position': 73, 'permissions': '0', 'name': 'Indie Bots', 'mentionable': False, 'managed': False, 'id': '1312895927908040785', 'icon': None, 'hoist': False, 'flags': 0, 'description': None, 'color': 15844367}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,616 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,617 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:03,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 97, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1312895927908040785', 'id': '1312896023038787706', 'changes': [{'old_value': 'new role', 'new_value': 'Indie Bots', 'key': 'name'}, {'old_value': 0, 'new_value': 15844367, 'key': 'color'}], 'action_type': 31, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:03,647 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:03,647 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-02 03:10:09,241 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_ROLE_UPDATE', 's': 98, 'op': 0, 'd': {'role': {'version': 1733089209941, 'unicode_emoji': None, 'position': 73, 'permissions': '0', 'name': 'Indie Bots', 'mentionable': True, 'managed': False, 'id': '1312895927908040785', 'icon': None, 'hoist': True, 'flags': 0, 'description': None, 'color': 15844367}, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:09,242 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:09,242 - discord.client - DEBUG - Dispatching event guild_role_update +2024-12-02 03:10:09,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 99, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1312895927908040785', 'id': '1312896046627819573', 'changes': [{'old_value': False, 'new_value': True, 'key': 'hoist'}, {'old_value': False, 'new_value': True, 'key': 'mentionable'}], 'action_type': 31, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:09,279 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:09,282 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-02 03:10:17,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 100, 'op': 0, 'd': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'unusual_dm_activity_until': None, 'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-02 03:10:17,586 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:17,586 - discord.client - DEBUG - Dispatching event member_update +2024-12-02 03:10:17,587 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 101, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1304755116255088670', 'id': '1312896081394274437', 'changes': [{'new_value': [{'name': 'Indie Bots', 'id': '1312895927908040785'}], 'key': '$add'}], 'action_type': 25, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:17,587 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:17,587 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-02 03:10:21,114 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 101. +2024-12-02 03:10:21,427 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:10:34,459 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 102, 'op': 0, 'd': {'user': {'username': 'Harmonia', 'public_flags': 65536, 'primary_guild': None, 'id': '1312017085131391098', 'global_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'unusual_dm_activity_until': None, 'roles': ['1312895927908040785', '1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'joined_at': '2024-11-29T11:59:22.189000+00:00', 'guild_id': '1292805470117171231', 'flags': 1, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-02 03:10:34,460 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:34,460 - discord.client - DEBUG - Dispatching event member_update +2024-12-02 03:10:34,471 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 103, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1312017085131391098', 'id': '1312896152273686621', 'changes': [{'new_value': [{'name': 'Indie Bots', 'id': '1312895927908040785'}], 'key': '$add'}], 'action_type': 25, 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:34,471 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:34,471 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-02 03:10:42,129 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 104, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089242, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:42,129 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:42,130 - discord.client - DEBUG - Dispatching event typing +2024-12-02 03:10:42,130 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 03:10:42,965 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 105, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:43.663000+00:00', 'pinned': False, 'nonce': '1312896183038902272', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896188051361792', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.codechallenge', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:42,966 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:42,966 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:10:42,967 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:10:43,440 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 106, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:44.141000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896190056108203', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that sorts a list of numbers.', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:43,441 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:43,441 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:10:43,454 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":3447003,"type":"rich","description":"Your coding challenge is: Write a function that sorts a list of numbers.","title":"Coding Challenge"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:10:43,455 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). +2024-12-02 03:10:43,455 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that sorts a list of numbers.', 'color': 3447003, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:40:44.141000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896190056108203', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:10:43,456 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:10:52,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 107, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:53.231000+00:00', 'pinned': False, 'nonce': '1312896223706873856', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896228182196326', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.codechallenge', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:52,613 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:52,613 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:10:52,614 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:10:53,108 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 108, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:53.741000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896230321422378', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that checks if a number is prime.', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:53,108 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:53,109 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:10:53,134 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":3447003,"type":"rich","description":"Your coding challenge is: Write a function that checks if a number is prime.","title":"Coding Challenge"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:10:53,135 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that checks if a number is prime.', 'color': 3447003, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:40:53.741000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896230321422378', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:10:53,135 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:10:54,753 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 109, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:55.458000+00:00', 'pinned': False, 'nonce': '1312896232644935680', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896237522911283', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.codechallenge', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:54,754 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:54,754 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:10:54,755 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:10:56,430 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":3447003,"type":"rich","description":"Your coding challenge is: Write a function that checks if a string is a palindrome.Write a program that prints numbers from 1 to 100, but for multiples of 3, print Fizz, for multiples of 5, print Buzz, and for multiples of both, print FizzBuzz.Create a function that checks if a given string is a palindrome (reads the same backward as forward)Write a function that takes a string and returns it reversed without using built-in reverse functions.Build a function that calculates the factorial of a given number.Given an array of numbers 1 to N with one number missing, find the missing number in O(n) time.Check if a given string has all unique characters.Write a function to count the number of vowels and consonants in a string.Write a function that calculates the sum of the digits of a given number.Build a function that checks if two strings are anagrams of each other.Rotate a given N x N matrix by 90 degrees in place.Given a string, find the length of the longest substring without repeating characters.Check if a string has balanced brackets (e.g., {}, [], () are properly closed and nested).Write a program to generate all prime numbers up to a given number N.Implement a binary search algorithm to find an element in a sorted array.Implement popular sorting algorithms like Bubble Sort, Merge Sort, and Quick Sort from scratch.Implement a calculator that can handle operations like addition, subtraction, multiplication, and division. Extend it to support parentheses.Write a program to solve a given Sudoku puzzle using backtracking.Generate all permutations of a given string or list.Implement a Least Recently Used (LRU) cache with O(1) time complexity for get and put operations.Given a 2D board and a word, find if the word exists in the grid by moving horizontally, vertically, or diagonally.Implement a Trie data structure to efficiently store and retrieve strings, and add functions like insertion, search, and auto-complete suggestions.Implement Dijkstra\u2019s or A* algorithm to find the shortest path between two nodes in a weighted graph.Solve the 0/1 Knapsack problem using dynamic programming to maximize the value of items that can fit into a given capacity.Build a rate limiter to handle API requests, ensuring only a certain number of requests are processed in a given time window.Given a list of words and a width, format the text so that it\u2019s fully justified, with words evenly distributed across lines.Place N queens on an N\u00d7N chessboard so that no two queens threaten each other.Given a 2D binary matrix filled with 0s and 1s, find the largest rectangle containing only 1s and return its area.Implement a function to perform a binary search on a rotated sorted array.Write a function to find the longest common prefix string amongst an array of strings.Given a list of intervals, merge overlapping intervals.Implement a function to convert a Roman numeral to an integer.Given a list of words, group anagrams together.Implement a function to reverse a linked list.Write a function to find the kth largest element in an unsorted array.Implement a function to find the longest palindromic substring in a string.Given a list of non-negative integers, arrange them such that they form the largest number.Implement a function to find the longest increasing subsequence in an array.Write a function to find the minimum window in a string that contains all characters of another string.Given a string, find the length of the longest substring with at most two distinct characters.Implement a function to find the median of two sorted arrays.Write a function to find the longest common subsequence between two strings.Given a string, find the longest palindromic substring.Implement a function to find the longest substring without repeating characters.Write a function to find the longest increasing subsequence in an array.Given a list of intervals, merge overlapping intervals.Implement a function to convert a Roman numeral to an integer.Write a function to find the kth largest element in an unsorted array.Implement a function to reverse a linked list.Given a list of words, group anagrams together.Implement a function to perform a binary search on a rotated sorted array.Write a function to find the longest common prefix string amongst an array of strings.Given a 2D binary matrix filled with 0s and 1s, find the largest rectangle containing only 1s and return its area.Create a virtual file system that supports commands like mkdir, ls, touch, read, and write, with hierarchical structures and efficient navigation.Implement a thread-safe producer-consumer system using a bounded buffer. Handle edge cases like underflow, overflow, and multithreading.Build a simple chat application using sockets to send and receive messages between clients and a server.Create a RESTful API for a simple todo list application with endpoints for creating, updating, deleting, and fetching tasks.Implement a basic web server that can handle HTTP requests like GET, POST, PUT, and DELETE, and serve static files.Write a program to find the shortest path between cities using graph traversal algorithms like Dijkstra\u2019s or A*.Implement a function to calculate the edit distance between two strings, measuring the minimum number of operations required to convert one string into another.Given a list of words, find the longest word made of other words in the list.Build a function to calculate the maximum sum of a subarray within a given array of integers.Implement a function to find the longest word in a dictionary that can be built one character at a time by other words in the dictionary.Write a program to find the longest increasing subsequence in an array of integers.Given a list of integers, write a function to return the maximum sum of non-adjacent numbers.Implement a function to find the maximum product of two integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.Given a list of integers, write a function to return the maximum sum of a contiguous subarray.Implement a function to find the maximum sum of a subarray with at least k elements.Write a program to find the longest common subsequence between two strings.Given a list of integers, write a function to return the maximum sum of a subarray with at least k elements.Implement a function to find the maximum product of three integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.Given a list of integers, write a function to return the maximum sum of a contiguous subarray.Implement a function to find the maximum sum of a subarray with at least k elements.Write a program to find the longest common subsequence between two strings.Given a list of integers, write a function to return the maximum sum of a subarray with at least k elements.Implement a function to find the maximum product of three integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.Given a list of integers, write a function to return the maximum sum of a contiguous subarray.Implement a function to find the maximum sum of a subarray with at least k elements.Write a program to find the longest common subsequence between two strings.Given a list of integers, write a function to return the maximum sum of a subarray with at least k elements.Implement a function to find the maximum product of three integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.Given a list of integers, write a function to return the maximum sum of a contiguous subarray.Implement a function to find the maximum sum of a subarray with at least k elements.Write a program to find the longest common subsequence between two strings.Given a list of integers, write a function to return the maximum sum of a subarray with at least k elements.Implement a function to find the maximum product of three integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.Given a list of integers, write a function to return the maximum sum of a contiguous subarray.Implement a function to find the maximum sum of a subarray with at least k elements.Write a program to find the longest common subsequence between two strings.Given a list of integers, write a function to return the maximum sum of a subarray with at least k elements.Implement a function to find the maximum product of three integers in a given list.Create a function to find the minimum number of coins required to make a given amount of change.","title":"Coding Challenge"}],"content":null,"components":[],"tts":false} has returned 400 +2024-12-02 03:10:56,431 - discord.client - DEBUG - Dispatching event command_error +2024-12-02 03:10:56,898 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 110, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:40:57.600000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896246507114598', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'fields': [{'value': 'Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds: Embed size exceeds maximum size of 6000', 'name': 'Error Details', 'inline': True}], 'description': 'An unexpected error occurred. Please try again later.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:10:56,899 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:10:56,899 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:10:56,908 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"fields":[{"inline":true,"name":"Error Details","value":"Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds: Embed size exceeds maximum size of 6000"}],"color":15158332,"type":"rich","description":"An unexpected error occurred. Please try again later.","title":"An Error Occurred"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:10:56,908 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'description': 'An unexpected error occurred. Please try again later.', 'color': 15158332, 'fields': [{'name': 'Error Details', 'value': 'Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds: Embed size exceeds maximum size of 6000', 'inline': True}], 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:40:57.600000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896246507114598', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:11:01,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 111, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089262, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:01,499 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:01,499 - discord.client - DEBUG - Dispatching event typing +2024-12-02 03:11:01,500 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 03:11:01,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 112, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:02.340000+00:00', 'pinned': False, 'nonce': '1312896261589827584', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896266388373584', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.codechallenge', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:01,640 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:01,640 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:01,640 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:11:02,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 113, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:02.755000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896268128747552', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that finds the factorial of a number.', 'content_scan_version': 0, 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:02,112 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:02,113 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:02,157 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":3447003,"type":"rich","description":"Your coding challenge is: Write a function that finds the factorial of a number.","title":"Coding Challenge"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:11:02,157 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Coding Challenge', 'description': 'Your coding challenge is: Write a function that finds the factorial of a number.', 'color': 3447003, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:02.755000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896268128747552', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:11:02,158 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:11:02,380 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 113. +2024-12-02 03:11:02,693 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:11:35,383 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 114, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:36.070000+00:00', 'pinned': False, 'nonce': '1312896402765905920', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896407861989458', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:35,384 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:35,385 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:35,386 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:11:35,895 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 115, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:36.586000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896410026508318', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "How many programmers does it take to change a light bulb? None, that's a hardware problem.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:35,896 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:35,896 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:35,911 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"How many programmers does it take to change a light bulb? None, that's a hardware problem.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:11:35,911 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "How many programmers does it take to change a light bulb? None, that's a hardware problem.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:36.586000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896410026508318', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:11:35,911 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:11:38,689 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 116, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:39.383000+00:00', 'pinned': False, 'nonce': '1312896416841990144', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896421757714514', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:38,690 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:38,690 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:38,691 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:11:39,099 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do programmers hate nature? It has too many bugs.Why do programmers last so long in bed? Because they keep optimizing their loops.My girlfriend called me a function with no returns. I told her, I'm just waiting for the right input to blow up your stack.Why was the database administrator bad at flirting? They couldn't handle relationships unless they were one-to-many.Why do programmers prefer one-night stands?No need to commit to the repository.I tried debugging my girlfriend\u2026 Turns out, the issue was in the hardware configuration. \ud83d\ude0fHow do programmers practice safe sex? They use a try-catch block for protection.My ex told me, You're too into your work! I told her, I'm not into you because your interface sucks.A designer, a coder, and a tester walk into a bar... The coder ends up alone because they were too busy handling exceptions.Why was the programmer\u2019s date upset? They seg-faulted and dumped core halfway through.What\u2019s the dirtiest thing a programmer can whisper in bed? I\u2019ll show you my hidden attribute. \ud83d\ude08Why do programmers like older partners? They come with a well-documented API.My partner left me because I was too much of a nerd. Jokes on them\u2014I\u2019ve got 5G, unlimited data, and a vibrator script.What\u2019s a programmer\u2019s favorite foreplay? Penetration testing.Why don\u2019t programmers get jealous? Because they know how to handle multiple threads.My crush called me a console log... I said, Why? Because I\u2019m always showing my output?What do you call it when a programmer is bad in bed? Hard-coded disappointment. \ud83d\ude0fMy girlfriend asked why I spend so much time coding. I told her, \u201cBecause I\u2019ve already hacked into your source control.Why did the programmer break up with their partner? They couldn\u2019t handle their spaghetti logic.What\u2019s the most awkward thing a programmer says during sex? Wait, let me merge conflicts.Why was the programmer\u2019s partner mad? They were tired of being in the back-end all the time. \ud83d\ude02My crush called me a console log... I said, Why? Because I\u2019m always showing my output?Why don\u2019t programmers do it in the dark? Because they keep looking for a light mode to turn them on.My ex said I was too much into programming. I told her, \u201cWell, at least I know how to push the right buttons.Why do coders love foreplay? Because they hate going straight to production without testing.I told her I\u2019d give her the best experience. She said, Prove it! So, I ran intensity++.Why did the programmer bring a condom to the meeting? Just in case they had to protect their package.I told my partner I was debugging\u2026 Turns out, I was just trying to find the missing climax.Why are programmers so good in bed? They\u2019re all about deep penetration testing.My girlfriend asked me why I take so long to finish. I said, Baby, I\u2019m just loading the assets.What\u2019s a coder\u2019s version of dirty talk? Let me get inside your private variables.Why do programmers date models? Because they love playing with big data.I told her I\u2019d take her to cloud nine. Turns out, she couldn\u2019t handle my high availability.She said, Talk dirty to me! So, I whispered, \u201cI\u2019ll optimize your back-end until you can\u2019t handle the throughput.Why was the programmer\u2019s date annoyed? Because they kept asking, Are you responsive yet?My ex said I didn\u2019t satisfy her. I said, It\u2019s not me\u2014it\u2019s your poor user experience.Why do coders never break up? Because they always find a way to resolve conflicts.My crush told me she likes guys who write clean code... So, I wiped my browser history and said, \u201cYou mean like this?\u201dWhy do programmers make bad flings? Because they\u2019re too busy debugging their ex\u2019s trauma.She said, \u201cTalk dirty to me.\u201d I replied, \u201cYour alignment is off, your flow\u2019s broken, and your backend\u2019s outdated.\u201dI tried flirting with a designer. She ghosted me, saying, \u201cYou lack responsiveness.\u201dMy girlfriend broke up with me because I said, \u201cYou\u2019re like JavaScript.\u201dShe asked why, and I said, \u201cEveryone uses you, but no one fully understands you.\u201dI told her I\u2019d make her scream like my code editor does when I forget a semicolon. Now she calls me syntax daddy.She asked me what I\u2019m good at in bed. I said, \u201cCtrl + Z. Undoing all my mistakes.\u201dWhy don\u2019t programmers date often? Because they get stuck in an infinite loop of \u201cWhat did I do wrong?\u201dMy crush asked me to teach her coding... Now she just complains, \u201cStop trying to insert yourself everywhere!\u201dWhy do programmers love WiFi? Because it\u2019s the only thing they\u2019ve ever connected to.I told her, \u201cI\u2019ll optimize your backend tonight.\u201d She said, \u201cYou better. Last night it crashed halfway through.\u201dWhy do programmers suck at breakups? They keep saying, \u201cLet\u2019s try one more iteration.\u201dMy ex said I\u2019m like an old iPhone. \u201cYou\u2019re slow, outdated, and your battery doesn\u2019t last long.\u201dI asked her why she likes me. She said, \u201cYou\u2019re like open-source software\u2014free, but I still feel like I\u2019m paying for it.\u201dWhy was the coder so bad at sexting? They kept writing in CamelCase.I told her I\u2019m good with tech... She said, \u201cOkay, but can you handle my settings?\u201dWhy don\u2019t programmers do casual dating? They hate working on temporary projects.My partner said, \u201cI don\u2019t think you\u2019re putting in enough effort.\u201d So, I upgraded my RAM and said, \u201cTry me now.\u201dI dated a programmer once. Worst mistake of my life\u2014they tried to compress all my emotions into a zip file.Why do programmers last longer in relationships? Because they\u2019re too scared to delete their cache.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 400 +2024-12-02 03:11:39,100 - discord.client - DEBUG - Dispatching event command_error +2024-12-02 03:11:39,568 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 117, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:40.150000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896424974749767', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'fields': [{'value': 'Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds.0.description: Must be 4096 or fewer in length.', 'name': 'Error Details', 'inline': True}], 'description': 'An unexpected error occurred. Please try again later.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:39,569 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:39,570 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:39,600 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"fields":[{"inline":true,"name":"Error Details","value":"Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds.0.description: Must be 4096 or fewer in length."}],"color":15158332,"type":"rich","description":"An unexpected error occurred. Please try again later.","title":"An Error Occurred"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:11:39,600 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'description': 'An unexpected error occurred. Please try again later.', 'color': 15158332, 'fields': [{'name': 'Error Details', 'value': 'Command raised an exception: HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body\nIn embeds.0.description: Must be 4096 or fewer in length.', 'inline': True}], 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:40.150000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896424974749767', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:11:42,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 118, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:42.764000+00:00', 'pinned': False, 'nonce': '1312896430821605376', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896435938922549', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:42,084 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:42,084 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:42,085 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:11:42,478 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 119, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:43.110000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896437389889567', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers prefer dark mode? Because light attracts bugs!', 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:42,479 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:42,480 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:42,514 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do programmers prefer dark mode? Because light attracts bugs!","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:11:42,514 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': 'Why do programmers prefer dark mode? Because light attracts bugs!', 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:43.110000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896437389889567', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:11:42,515 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:11:43,642 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 119. +2024-12-02 03:11:43,954 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:11:44,844 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 120, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:45.549000+00:00', 'pinned': False, 'nonce': '1312896442897006592', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896447620055050', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:44,844 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:44,846 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:44,846 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:11:45,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 121, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:45.978000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896449419153438', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Java developers wear glasses? Because they don't see sharp.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:45,276 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:45,276 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:45,301 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do Java developers wear glasses? Because they don't see sharp.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:11:45,301 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Java developers wear glasses? Because they don't see sharp.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:45.978000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896449419153438', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:11:45,302 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:11:47,236 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 122, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:47.938000+00:00', 'pinned': False, 'nonce': '1312896452728455168', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896457640120360', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.quote', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:47,237 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:47,238 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:47,239 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:11:47,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 123, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:48.357000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896459397533776', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'Code is like humor. When you have to explain it, its bad. Cory House', 'content_scan_version': 0, 'color': 10181046}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:47,665 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:47,665 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:47,677 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":10181046,"type":"rich","description":"Code is like humor. When you have to explain it, it\u2019s bad. \u2013 Cory House","title":"Inspirational Quote"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:11:47,678 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Inspirational Quote', 'description': 'Code is like humor. When you have to explain it, its bad. Cory House', 'color': 10181046, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:41:48.357000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896459397533776', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:11:47,678 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:11:52,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 124, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089312, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:52,090 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:52,090 - discord.client - DEBUG - Dispatching event typing +2024-12-02 03:11:52,090 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 03:11:55,047 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 125, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:55.645000+00:00', 'pinned': False, 'nonce': '1312896485368528896', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896489965617216', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:55,048 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:55,049 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:55,049 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:11:55,676 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 126, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:41:56.353000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896492935057469', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:11:55,677 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:11:55,677 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:11:55,710 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```","components":[],"tts":false} has returned 200 +2024-12-02 03:11:55,711 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "```\nAdmin:\n gift Gift a premium tier to a user for a month\n team Add a team member\nAutoMod:\n warn Warn a member\nCodingHelp:\n debug Help debug code issues\n optimize Suggest code optimizations\nDMInteraction:\n update Send updates to users\nFun:\n choose Chooses between multiple choices.\n codechallenge Gives a random coding challenge.\n joke Tells a random programming joke.\n poll Creates a poll with reactions.\n quote Sends a random inspirational quote.\n roll Rolls a dice in NdN format.\n trivia Starts a trivia game with programming questions.\nGeneral:\n ping Check the bot's latency\nLogging:\n initialize_logs Setup logging channels\nModeration:\n ban \n kick \n mute \n unmute \nOCR:\n scan Scan an image for text\nTickets:\n setup_logs Setup logging channels\n ticket Creates a ticket\nVoiceChannel:\n join Join a voice channel\n leave Leave a voice channel\n play Play a sound from a URL\n record Record voice and convert to text\n\u200bNo Category:\n help Shows this message\n\nType .help command for more info on a command.\nYou can also type .help category for more info on a category.\n```", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:41:56.353000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896492935057469', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:11:55,711 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:12:02,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 127, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089323, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-02 03:12:02,538 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:12:02,539 - discord.client - DEBUG - Dispatching event typing +2024-12-02 03:12:02,539 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 03:12:03,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 128, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:42:03.755000+00:00', 'pinned': False, 'nonce': '1312896519057178624', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896523981426811', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.trivia', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:12:03,056 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:12:03,057 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:12:03,057 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:12:03,490 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 129, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:42:04.198000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896525839499284', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "What is the use of the 'return' keyword in programming?", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:12:03,491 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:12:03,491 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:12:03,522 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"What is the use of the 'return' keyword in programming?","components":[],"tts":false} has returned 200 +2024-12-02 03:12:03,522 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "What is the use of the 'return' keyword in programming?", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:42:04.198000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896525839499284', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:12:19,183 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 130, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:42:19.799000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312896591274840257', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Timeout', 'description': 'Sorry, you took too long. The correct answer was To return a value from a function.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:12:19,183 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:12:19,184 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:12:19,303 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"Sorry, you took too long. The correct answer was To return a value from a function.","title":"Timeout"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:12:19,304 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Timeout', 'description': 'Sorry, you took too long. The correct answer was To return a value from a function.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:42:19.799000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312896591274840257', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:12:19,304 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:12:19,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INVITE_CREATE', 's': 131, 'op': 0, 'd': {'uses': 0, 'type': 0, 'temporary': False, 'max_uses': 0, 'max_age': 86400, 'guild_id': '1292805470117171231', 'expires_at': '2024-12-02T21:42:20+00:00', 'created_at': '2024-12-01T21:42:20.542602+00:00', 'code': 'ujtxvSmT', 'channel_id': '1292805471501029399'}} +2024-12-02 03:12:19,856 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:12:19,856 - discord.client - DEBUG - Dispatching event invite_create +2024-12-02 03:12:24,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 131. +2024-12-02 03:12:25,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:13:06,168 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 131. +2024-12-02 03:13:06,480 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:13:47,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 131. +2024-12-02 03:13:47,746 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:14:28,683 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 131. +2024-12-02 03:14:28,996 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:14:47,623 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 132, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:44:48.336000+00:00', 'pinned': False, 'nonce': '1312897209091489792', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897214284169246', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.scan', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:14:47,624 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:14:47,625 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:14:47,625 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:14:48,149 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 133, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:44:48.789000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897216184062034', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Please attach an image to scan.', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:14:48,149 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:14:48,150 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:14:48,158 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Please attach an image to scan.","components":[],"tts":false} has returned 200 +2024-12-02 03:14:48,158 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Please attach an image to scan.', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:44:48.789000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897216184062034', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:14:48,159 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:15:09,938 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 133. +2024-12-02 03:15:10,263 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:15:10,286 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 134, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089511, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-02 03:15:10,286 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:15:10,287 - discord.client - DEBUG - Dispatching event typing +2024-12-02 03:15:10,287 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 03:15:11,848 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 135, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:45:12.471000+00:00', 'pinned': False, 'nonce': '1312897309373104128', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897315513700382', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.scan', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [{'width': 480, 'url': 'https://cdn.discordapp.com/attachments/1292805471643766929/1312897315056386088/image0_1.gif?ex=674e2a68&is=674cd8e8&hm=995a1cd1d4805387f2d71841785619fd9db35cf749ecbcfa433ddd317668bd94&', 'title': 'image0 (1)', 'size': 220153, 'proxy_url': 'https://media.discordapp.net/attachments/1292805471643766929/1312897315056386088/image0_1.gif?ex=674e2a68&is=674cd8e8&hm=995a1cd1d4805387f2d71841785619fd9db35cf749ecbcfa433ddd317668bd94&', 'placeholder_version': 1, 'placeholder': 'TGcJFww3V2dHuJiAd3eIN8i4iIz7yLgP', 'id': '1312897315056386088', 'height': 480, 'flags': 32, 'filename': 'image0_1.gif', 'content_type': 'image/gif', 'content_scan_version': 1}], 'guild_id': '1292805470117171231'}} +2024-12-02 03:15:11,848 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:15:11,849 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:15:11,849 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:15:14,069 - pytesseract - DEBUG - ['tesseract', 'C:\\Users\\mante\\AppData\\Local\\Temp\\tess_yga80e4v_input.GIF', 'C:\\Users\\mante\\AppData\\Local\\Temp\\tess_yga80e4v', 'txt'] +2024-12-02 03:15:14,149 - discord.client - DEBUG - Dispatching event command_error +2024-12-02 03:15:14,622 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 136, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:45:15.244000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897327144370208', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'fields': [{'value': "Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information.", 'name': 'Error Details', 'inline': True}], 'description': 'An unexpected error occurred. Please try again later.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:15:14,623 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:15:14,623 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:15:14,651 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"fields":[{"inline":true,"name":"Error Details","value":"Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information."}],"color":15158332,"type":"rich","description":"An unexpected error occurred. Please try again later.","title":"An Error Occurred"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:15:14,651 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'description': 'An unexpected error occurred. Please try again later.', 'color': 15158332, 'fields': [{'name': 'Error Details', 'value': "Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information.", 'inline': True}], 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:45:15.244000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897327144370208', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:15:45,711 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 137, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089546, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-02 03:15:45,711 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:15:45,712 - discord.client - DEBUG - Dispatching event typing +2024-12-02 03:15:45,712 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 03:15:48,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 138, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:45:48.783000+00:00', 'pinned': False, 'nonce': '1312897455490072576', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897467817263186', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.scan', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [{'width': 431, 'url': 'https://cdn.discordapp.com/attachments/1292805471643766929/1312897467695763516/Capture.png?ex=674e2a8c&is=674cd90c&hm=dc1d0496334f820ef1a454a8cf3ee9fb4b4c003bbc68ad93798c777d3dee6400&', 'size': 38220, 'proxy_url': 'https://media.discordapp.net/attachments/1292805471643766929/1312897467695763516/Capture.png?ex=674e2a8c&is=674cd90c&hm=dc1d0496334f820ef1a454a8cf3ee9fb4b4c003bbc68ad93798c777d3dee6400&', 'placeholder_version': 1, 'placeholder': 'uPcJFYQHV2WJeIeJeIeHeF9o+YaH', 'id': '1312897467695763516', 'height': 307, 'filename': 'Capture.png', 'content_type': 'image/png', 'content_scan_version': 1}], 'guild_id': '1292805470117171231'}} +2024-12-02 03:15:48,193 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:15:48,193 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:15:48,193 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:15:48,683 - PIL.PngImagePlugin - DEBUG - STREAM b'IHDR' 16 13 +2024-12-02 03:15:48,684 - PIL.PngImagePlugin - DEBUG - STREAM b'sRGB' 41 1 +2024-12-02 03:15:48,684 - PIL.PngImagePlugin - DEBUG - STREAM b'gAMA' 54 4 +2024-12-02 03:15:48,684 - PIL.PngImagePlugin - DEBUG - STREAM b'pHYs' 70 9 +2024-12-02 03:15:48,684 - PIL.PngImagePlugin - DEBUG - STREAM b'IDAT' 91 38087 +2024-12-02 03:15:48,686 - PIL.PngImagePlugin - DEBUG - STREAM b'eXIf' 38190 14 +2024-12-02 03:15:48,695 - pytesseract - DEBUG - ['tesseract', 'C:\\Users\\mante\\AppData\\Local\\Temp\\tess_bo6rsj44_input.PNG', 'C:\\Users\\mante\\AppData\\Local\\Temp\\tess_bo6rsj44', 'txt'] +2024-12-02 03:15:48,704 - discord.client - DEBUG - Dispatching event command_error +2024-12-02 03:15:49,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 139, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:45:49.909000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897472539918387', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'fields': [{'value': "Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information.", 'name': 'Error Details', 'inline': True}], 'description': 'An unexpected error occurred. Please try again later.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:15:49,200 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:15:49,200 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:15:49,203 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"fields":[{"inline":true,"name":"Error Details","value":"Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information."}],"color":15158332,"type":"rich","description":"An unexpected error occurred. Please try again later.","title":"An Error Occurred"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:15:49,204 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'description': 'An unexpected error occurred. Please try again later.', 'color': 15158332, 'fields': [{'name': 'Error Details', 'value': "Command raised an exception: TesseractNotFoundError: tesseract is not installed or it's not in your PATH. See README file for more information.", 'inline': True}], 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:45:49.909000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897472539918387', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:15:51,197 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 139. +2024-12-02 03:15:51,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:15:59,908 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 140, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089560, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-02 03:15:59,909 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:15:59,909 - discord.client - DEBUG - Dispatching event typing +2024-12-02 03:15:59,909 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 03:16:00,893 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 141, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:01.514000+00:00', 'pinned': False, 'nonce': '1312897516542361600', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897521214816319', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.setup_logs', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:00,894 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:00,895 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:16:00,895 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:16:01,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 142, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:01.985000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897523190464645', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "Failed to create or get channel general-logs: 'Tickets' object has no attribute 'log_channels'", 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:01,328 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:01,328 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:16:01,340 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Failed to create or get channel general-logs: 'Tickets' object has no attribute 'log_channels'","components":[],"tts":false} has returned 200 +2024-12-02 03:16:01,341 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': "Failed to create or get channel general-logs: 'Tickets' object has no attribute 'log_channels'", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:46:01.985000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897523190464645', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:16:01,341 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:16:10,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 143, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:11.065000+00:00', 'pinned': False, 'nonce': '1312897556304363520', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897561274744875', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ticket', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:10,384 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:10,385 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:16:10,385 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:16:10,910 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 144, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:11.504000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897563116175402', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Please provide a reason for creating a ticket!', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:10,911 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:10,912 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:16:10,977 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Please provide a reason for creating a ticket!","components":[],"tts":false} has returned 200 +2024-12-02 03:16:10,977 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Please provide a reason for creating a ticket!', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:46:11.504000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897563116175402', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:16:10,978 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:16:14,942 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 145, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089575, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:14,943 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:14,943 - discord.client - DEBUG - Dispatching event typing +2024-12-02 03:16:14,943 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 03:16:15,638 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 146, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:16.287000+00:00', 'pinned': False, 'nonce': '1312897578500620288', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897583177535489', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ticket heyo', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:15,640 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:15,640 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:16:15,640 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:16:16,152 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 147, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:16.862000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897585589129266', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Ticket category not configured!', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:16,152 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:16,153 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:16:16,159 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Ticket category not configured!","components":[],"tts":false} has returned 200 +2024-12-02 03:16:16,159 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Ticket category not configured!', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:46:16.862000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897585589129266', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:16:16,160 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:16:26,768 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 148, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:27.457000+00:00', 'pinned': False, 'nonce': '1312897625040617472', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897630027776000', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joim', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:26,769 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:26,769 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:16:26,769 - discord.client - DEBUG - Dispatching event command_error +2024-12-02 03:16:27,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 149, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:27.964000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897632154423367', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:27,304 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:27,304 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:16:27,340 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"color":15158332,"type":"rich","description":"The command you tried to use does not exist. Please check the command and try again.","title":"Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:16:27,340 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Not Found', 'description': 'The command you tried to use does not exist. Please check the command and try again.', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:46:27.964000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897632154423367', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:16:30,392 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 150, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:31.102000+00:00', 'pinned': False, 'nonce': '1312897640228192256', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897645315887204', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.join', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:30,393 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:30,393 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:16:30,394 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:16:30,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 151, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:31.630000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897647530479677', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'You are not connected to a voice channel.', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:30,946 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:30,947 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:16:30,965 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"You are not connected to a voice channel.","components":[],"tts":false} has returned 200 +2024-12-02 03:16:30,965 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'You are not connected to a voice channel.', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:46:31.630000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312897647530479677', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:16:30,965 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:16:32,449 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 151. +2024-12-02 03:16:32,762 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:16:33,759 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 152, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '333974e757095cb87cd716d794a0d438', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'discoverable': True, 'deaf': False, 'channel_id': '1292805471933304848'}} +2024-12-02 03:16:33,760 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:33,761 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 03:16:35,827 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:35,828 - discord.client - DEBUG - Dispatching event guild_update +2024-12-02 03:16:37,580 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 154, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:46:38.292000+00:00', 'pinned': False, 'nonce': '1312897670355877888', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312897675473063977', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.join', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:37,581 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:37,581 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:16:37,581 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:16:37,582 - discord.voice_state - INFO - Connecting to voice... +2024-12-02 03:16:37,582 - discord.voice_state - INFO - Starting voice handshake... (connection attempt 1) +2024-12-02 03:16:37,583 - discord.gateway - DEBUG - Updating our voice state to {'op': 4, 'd': {'guild_id': 1292805470117171231, 'channel_id': 1292805471933304848, 'self_mute': False, 'self_deaf': False}}. +2024-12-02 03:16:37,584 - discord.voice_state - DEBUG - Connection state changed to set_guild_voice_state +2024-12-02 03:16:37,921 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 155, 'op': 0, 'd': {'member': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1304755116255088670', 'suppress': False, 'session_id': 'fa2277b53513e5fe00deb778c28808aa', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'deaf': False, 'channel_id': '1292805471933304848'}} +2024-12-02 03:16:37,922 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:37,922 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 03:16:37,923 - discord.voice_state - DEBUG - Connection state changed to got_voice_state_update +2024-12-02 03:16:38,111 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_SERVER_UPDATE', 's': 156, 'op': 0, 'd': {'token': '42f715c5e7a37c1d', 'guild_id': '1292805470117171231', 'endpoint': 'india10019.discord.media:443'}} +2024-12-02 03:16:38,111 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:38,112 - discord.voice_state - DEBUG - Connection state changed to got_both_voice_updates +2024-12-02 03:16:38,112 - discord.voice_state - INFO - Voice handshake complete. Endpoint found: india10019.discord.media +2024-12-02 03:16:38,261 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 0, 'd': {'server_id': '1292805470117171231', 'user_id': '1304755116255088670', 'session_id': 'fa2277b53513e5fe00deb778c28808aa', 'token': '42f715c5e7a37c1d'}}. +2024-12-02 03:16:38,263 - discord.voice_state - DEBUG - Connection state changed to websocket_connected +2024-12-02 03:16:38,263 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 8, 'd': {'v': 4, 'heartbeat_interval': 13750.0}} +2024-12-02 03:16:38,298 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 2, 'd': {'streams': [{'type': 'video', 'ssrc': 697222, 'rtx_ssrc': 697223, 'rid': '', 'quality': 0, 'active': False}], 'ssrc': 697221, 'port': 50008, 'modes': ['aead_aes256_gcm_rtpsize', 'aead_aes256_gcm', 'aead_xchacha20_poly1305_rtpsize', 'xsalsa20_poly1305_lite_rtpsize', 'xsalsa20_poly1305_lite', 'xsalsa20_poly1305_suffix', 'xsalsa20_poly1305'], 'ip': '35.207.209.118', 'experiments': ['fixed_keyframe_interval']}} +2024-12-02 03:16:38,298 - discord.gateway - DEBUG - Connecting to voice socket +2024-12-02 03:16:38,298 - discord.gateway - DEBUG - Sending ip discovery packet +2024-12-02 03:16:38,300 - discord.voice_state - DEBUG - Registering socket listener callback .get_ip_packet at 0x000001977B2274C0> +2024-12-02 03:16:38,333 - discord.voice_state - DEBUG - Unregistering socket listener callback .get_ip_packet at 0x000001977B2274C0> +2024-12-02 03:16:38,333 - discord.gateway - DEBUG - Received ip discovery packet: b'\x00\x02\x00F\x00\n\xa3\x8549.43.96.179\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xdc\xf6' +2024-12-02 03:16:38,334 - discord.gateway - DEBUG - detected ip: 49.43.96.179 port: 56566 +2024-12-02 03:16:38,334 - discord.gateway - DEBUG - received supported encryption modes: xsalsa20_poly1305_lite, xsalsa20_poly1305_suffix, xsalsa20_poly1305 +2024-12-02 03:16:38,334 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 1, 'd': {'protocol': 'udp', 'data': {'address': '49.43.96.179', 'port': 56566, 'mode': 'xsalsa20_poly1305_lite'}}}. +2024-12-02 03:16:38,335 - discord.gateway - DEBUG - selected the voice protocol for use (xsalsa20_poly1305_lite) +2024-12-02 03:16:38,335 - discord.voice_state - DEBUG - Connection state changed to got_ip_discovery +2024-12-02 03:16:38,335 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 11, 'd': {'user_ids': ['950609706760691752']}} +2024-12-02 03:16:38,336 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 18, 'd': {'user_id': '950609706760691752', 'flags': 2}} +2024-12-02 03:16:38,336 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 20, 'd': {'user_id': '950609706760691752', 'platform': 0}} +2024-12-02 03:16:38,368 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 4, 'd': {'video_codec': 'H264', 'secure_frames_version': 0, 'secret_key': [160, 89, 234, 125, 245, 172, 29, 212, 111, 57, 58, 191, 247, 110, 119, 161, 17, 54, 169, 135, 216, 148, 239, 81, 127, 149, 182, 151, 215, 31, 178, 212], 'mode': 'xsalsa20_poly1305_lite', 'media_session_id': '72970db0ca690b4c65ef7849798f50a9', 'dave_protocol_version': 0, 'audio_codec': 'opus'}} +2024-12-02 03:16:38,369 - discord.gateway - DEBUG - received secret key for voice connection +2024-12-02 03:16:38,369 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 5, 'd': {'speaking': 0, 'delay': 0, 'ssrc': 697221}}. +2024-12-02 03:16:38,369 - discord.voice_state - DEBUG - Connection state changed to connected +2024-12-02 03:16:38,369 - discord.voice_state - INFO - Voice connection complete. +2024-12-02 03:16:38,371 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:16:38,805 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 5, 'd': {'user_id': '950609706760691752', 'ssrc': 697216, 'speaking': 1}} +2024-12-02 03:16:41,560 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 13, 'd': {'user_id': '950609706760691752'}} +2024-12-02 03:16:41,593 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 157, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '333974e757095cb87cd716d794a0d438', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-02 03:16:41,594 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:41,594 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 03:16:43,265 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089603265. +2024-12-02 03:16:43,266 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089603265}. +2024-12-02 03:16:43,303 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089603265} +2024-12-02 03:16:48,269 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089608269. +2024-12-02 03:16:48,270 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089608269}. +2024-12-02 03:16:48,316 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089608269} +2024-12-02 03:16:50,808 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 158, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '333974e757095cb87cd716d794a0d438', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'discoverable': True, 'deaf': False, 'channel_id': '1292805471933304848'}} +2024-12-02 03:16:50,808 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:50,809 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 03:16:51,323 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 11, 'd': {'user_ids': ['950609706760691752']}} +2024-12-02 03:16:51,323 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 18, 'd': {'user_id': '950609706760691752', 'flags': 2}} +2024-12-02 03:16:51,325 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 20, 'd': {'user_id': '950609706760691752', 'platform': 0}} +2024-12-02 03:16:52,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_EFFECT_SEND', 's': 159, 'op': 0, 'd': {'user_id': '950609706760691752', 'sound_volume': 1.0, 'sound_id': '1101662598484729896', 'emoji': None, 'channel_id': '1292805471933304848', 'animation_type': 0, 'animation_id': 0, 'guild_id': '1292805470117171231'}} +2024-12-02 03:16:52,211 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:16:52,211 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_EFFECT_SEND. +2024-12-02 03:16:53,283 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089613283. +2024-12-02 03:16:53,284 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089613283}. +2024-12-02 03:16:53,320 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089613283} +2024-12-02 03:16:54,747 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 5, 'd': {'user_id': '950609706760691752', 'ssrc': 697224, 'speaking': 1}} +2024-12-02 03:16:58,293 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089618293. +2024-12-02 03:16:58,294 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089618293}. +2024-12-02 03:16:58,329 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089618293} +2024-12-02 03:17:03,308 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089623308. +2024-12-02 03:17:03,309 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089623308}. +2024-12-02 03:17:03,346 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089623308} +2024-12-02 03:17:08,323 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089628323. +2024-12-02 03:17:08,324 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089628323}. +2024-12-02 03:17:08,359 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089628323} +2024-12-02 03:17:13,333 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089633333. +2024-12-02 03:17:13,334 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089633333}. +2024-12-02 03:17:13,367 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089633333} +2024-12-02 03:17:13,705 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 159. +2024-12-02 03:17:14,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:17:18,347 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089638347. +2024-12-02 03:17:18,352 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089638347}. +2024-12-02 03:17:18,394 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089638347} +2024-12-02 03:17:23,372 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089643372. +2024-12-02 03:17:23,373 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089643372}. +2024-12-02 03:17:23,410 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089643372} +2024-12-02 03:17:28,379 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089648379. +2024-12-02 03:17:28,379 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089648379}. +2024-12-02 03:17:28,414 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089648379} +2024-12-02 03:17:33,383 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089653383. +2024-12-02 03:17:33,383 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089653383}. +2024-12-02 03:17:33,420 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089653383} +2024-12-02 03:17:38,390 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089658390. +2024-12-02 03:17:38,391 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089658390}. +2024-12-02 03:17:38,425 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089658390} +2024-12-02 03:17:43,398 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089663398. +2024-12-02 03:17:43,398 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089663398}. +2024-12-02 03:17:43,431 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089663398} +2024-12-02 03:17:48,402 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089668402. +2024-12-02 03:17:48,404 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089668402}. +2024-12-02 03:17:48,437 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089668402} +2024-12-02 03:17:53,414 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089673414. +2024-12-02 03:17:53,415 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089673414}. +2024-12-02 03:17:53,455 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089673414} +2024-12-02 03:17:54,975 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 159. +2024-12-02 03:17:55,288 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:17:58,428 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089678428. +2024-12-02 03:17:58,429 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089678428}. +2024-12-02 03:17:58,475 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089678428} +2024-12-02 03:18:03,431 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089683431. +2024-12-02 03:18:03,432 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089683431}. +2024-12-02 03:18:03,466 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089683431} +2024-12-02 03:18:08,437 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089688437. +2024-12-02 03:18:08,439 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089688437}. +2024-12-02 03:18:08,478 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089688437} +2024-12-02 03:18:13,442 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089693442. +2024-12-02 03:18:13,443 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089693442}. +2024-12-02 03:18:13,484 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089693442} +2024-12-02 03:18:18,454 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089698454. +2024-12-02 03:18:18,454 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089698454}. +2024-12-02 03:18:18,488 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089698454} +2024-12-02 03:18:23,467 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089703467. +2024-12-02 03:18:23,467 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089703467}. +2024-12-02 03:18:23,503 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089703467} +2024-12-02 03:18:28,476 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089708476. +2024-12-02 03:18:28,477 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089708476}. +2024-12-02 03:18:28,512 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089708476} +2024-12-02 03:18:33,485 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089713485. +2024-12-02 03:18:33,486 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089713485}. +2024-12-02 03:18:33,520 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089713485} +2024-12-02 03:18:36,229 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 159. +2024-12-02 03:18:36,542 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:18:38,488 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089718488. +2024-12-02 03:18:38,490 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089718488}. +2024-12-02 03:18:38,524 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089718488} +2024-12-02 03:18:43,493 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089723493. +2024-12-02 03:18:43,494 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089723493}. +2024-12-02 03:18:43,530 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089723493} +2024-12-02 03:18:48,508 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089728508. +2024-12-02 03:18:48,510 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089728508}. +2024-12-02 03:18:48,547 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089728508} +2024-12-02 03:18:50,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 160, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733089731, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-02 03:18:50,854 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:18:50,855 - discord.client - DEBUG - Dispatching event typing +2024-12-02 03:18:50,855 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 03:18:51,112 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 161, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:48:51.831000+00:00', 'pinned': False, 'nonce': '1312898230723280896', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898235576356895', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.play https://open.spotify.com/playlist/5xoF7BpGAvY7w5DjLCQBf5?si=26436ca027bc4069', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:18:51,112 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:18:51,113 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:18:51,113 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:18:51,114 - discord.player - DEBUG - Spawning ffmpeg process with command: ['ffmpeg', '-reconnect', '1', '-reconnect_streamed', '1', '-reconnect_delay_max', '5', '-i', 'https://open.spotify.com/playlist/5xoF7BpGAvY7w5DjLCQBf5?si=26436ca027bc4069', '-f', 's16le', '-ar', '48000', '-ac', '2', '-loglevel', 'warning', '-blocksize', '8192', '-vn', 'pipe:1'] +2024-12-02 03:18:51,128 - discord.client - DEBUG - Dispatching event command_error +2024-12-02 03:18:51,585 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 162, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:48:52.291000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898237505601546', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'fields': [{'value': 'Command raised an exception: ClientException: ffmpeg was not found.', 'name': 'Error Details', 'inline': True}], 'description': 'An unexpected error occurred. Please try again later.', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:18:51,586 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:18:51,586 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:18:51,622 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"fields":[{"inline":true,"name":"Error Details","value":"Command raised an exception: ClientException: ffmpeg was not found."}],"color":15158332,"type":"rich","description":"An unexpected error occurred. Please try again later.","title":"An Error Occurred"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-02 03:18:51,624 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'An Error Occurred', 'description': 'An unexpected error occurred. Please try again later.', 'color': 15158332, 'fields': [{'name': 'Error Details', 'value': 'Command raised an exception: ClientException: ffmpeg was not found.', 'inline': True}], 'content_scan_version': 0}], 'timestamp': '2024-12-01T21:48:52.291000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312898237505601546', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:18:53,518 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089733518. +2024-12-02 03:18:53,518 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089733518}. +2024-12-02 03:18:53,554 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089733518} +2024-12-02 03:18:58,525 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089738525. +2024-12-02 03:18:58,526 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089738525}. +2024-12-02 03:18:58,561 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089738525} +2024-12-02 03:19:03,529 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089743529. +2024-12-02 03:19:03,529 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089743529}. +2024-12-02 03:19:03,566 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089743529} +2024-12-02 03:19:04,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 163, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:49:04.627000+00:00', 'pinned': False, 'nonce': '1312898284607504384', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898289246539878', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.record', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:19:04,005 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:19:04,005 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:19:04,005 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:19:04,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 164, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:49:05.141000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898291402539159', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Recording started...', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:19:04,523 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:19:04,524 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:19:04,532 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Recording started...","components":[],"tts":false} has returned 200 +2024-12-02 03:19:04,533 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Recording started...', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:49:05.141000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312898291402539159', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:19:08,538 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089748538. +2024-12-02 03:19:08,538 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089748538}. +2024-12-02 03:19:08,573 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089748538} +2024-12-02 03:19:09,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 165, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:49:10.549000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898314085072907', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Recording stopped. Converting to text...', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:19:09,928 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:19:09,929 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:19:09,935 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"content":"Recording stopped. Converting to text...","components":[],"tts":false} has returned 200 +2024-12-02 03:19:09,935 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages has received {'type': 0, 'content': 'Recording stopped. Converting to text...', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:49:10.549000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312898314085072907', 'channel_id': '1292805471643766929', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:19:10,319 - discord.http - DEBUG - POST https://discord.com/api/v10/users/@me/channels with {"recipient_id":950609706760691752} has returned 200 +2024-12-02 03:19:10,319 - discord.http - DEBUG - POST /users/@me/channels has found its initial rate limit bucket hash (3f1ecb90c49938368145d0f8794b2707). +2024-12-02 03:19:10,320 - discord.http - DEBUG - POST https://discord.com/api/v10/users/@me/channels has received {'id': '1307917783308308480', 'type': 1, 'last_message_id': '1312484353338638376', 'flags': 0, 'recipients': [{'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': '20ce55985a10915cfafbbf910ab31959', 'accent_color': 0, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': '#000000', 'clan': None, 'primary_guild': None}]} +2024-12-02 03:19:10,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 166, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:49:11.492000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312898318040432660', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Here is the transcription of your recording:\nThis is a sample transcription of the recorded audio.', 'components': [], 'channel_id': '1307917783308308480', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': []}} +2024-12-02 03:19:10,783 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:19:10,784 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:19:10,824 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages with {"content":"Here is the transcription of your recording:\nThis is a sample transcription of the recorded audio.","components":[],"tts":false} has returned 200 +2024-12-02 03:19:10,825 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1307917783308308480/messages has received {'type': 0, 'content': 'Here is the transcription of your recording:\nThis is a sample transcription of the recorded audio.', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-01T21:49:11.492000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1312898318040432660', 'channel_id': '1307917783308308480', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-02 03:19:10,825 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:19:13,541 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089753541. +2024-12-02 03:19:13,541 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089753541}. +2024-12-02 03:19:13,579 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089753541} +2024-12-02 03:19:17,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 166. +2024-12-02 03:19:17,796 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:19:18,548 - discord.gateway - DEBUG - Keeping shard ID None voice websocket alive with timestamp 1733089758548. +2024-12-02 03:19:18,549 - discord.gateway - DEBUG - Sending voice websocket frame: {'op': 3, 'd': 1733089758548}. +2024-12-02 03:19:18,584 - discord.gateway - DEBUG - Voice websocket frame received: {'op': 6, 'd': 1733089758548} +2024-12-02 03:19:21,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 167, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T21:49:22.421000+00:00', 'pinned': False, 'nonce': '1312898358796353536', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312898363879850157', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.leave', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-02 03:19:21,751 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:19:21,751 - discord.client - DEBUG - Dispatching event message +2024-12-02 03:19:21,751 - discord.client - DEBUG - Dispatching event command +2024-12-02 03:19:21,752 - discord.voice_state - INFO - The voice handshake is being terminated for Channel ID 1292805471933304848 (Guild ID 1292805470117171231) +2024-12-02 03:19:21,752 - discord.voice_state - DEBUG - Connection state changed to disconnected +2024-12-02 03:19:21,752 - discord.gateway - DEBUG - Updating our voice state to {'op': 4, 'd': {'guild_id': 1292805470117171231, 'channel_id': None, 'self_mute': False, 'self_deaf': False}}. +2024-12-02 03:19:21,753 - discord.gateway - DEBUG - Received voice WSMessage(type=, data=None, extra=None) +2024-12-02 03:19:22,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 168, 'op': 0, 'd': {'member': {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '1304755116255088670', 'suppress': False, 'session_id': 'fa2277b53513e5fe00deb778c28808aa', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'deaf': False, 'channel_id': None}} +2024-12-02 03:19:22,065 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:19:22,065 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 03:19:22,066 - discord.client - DEBUG - Dispatching event command_completion +2024-12-02 03:19:25,279 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_STATE_UPDATE', 's': 169, 'op': 0, 'd': {'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'user_id': '950609706760691752', 'suppress': False, 'session_id': '333974e757095cb87cd716d794a0d438', 'self_video': False, 'self_mute': False, 'self_deaf': False, 'request_to_speak_timestamp': None, 'mute': False, 'guild_id': '1292805470117171231', 'discoverable': True, 'deaf': False, 'channel_id': None}} +2024-12-02 03:19:25,279 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:19:25,280 - discord.client - DEBUG - Dispatching event voice_state_update +2024-12-02 03:19:25,280 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'VOICE_CHANNEL_STATUS_UPDATE', 's': 170, 'op': 0, 'd': {'status': None, 'id': '1292805471933304848', 'guild_id': '1292805470117171231'}} +2024-12-02 03:19:25,280 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 03:19:25,281 - discord.gateway - DEBUG - Unknown event VOICE_CHANNEL_STATUS_UPDATE. +2024-12-02 03:19:58,747 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:19:59,060 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:20:40,008 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:20:40,331 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:21:21,260 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:21:21,577 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:22:02,520 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:22:02,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:22:43,787 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:22:44,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:23:25,050 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:23:25,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:24:06,308 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:24:06,627 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:24:47,572 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:24:47,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:25:28,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:25:29,155 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:26:10,095 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:26:10,425 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:26:51,348 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:26:51,667 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:27:32,600 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:27:32,929 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:28:13,859 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:28:14,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:28:55,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:28:55,436 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:29:36,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:29:36,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:30:17,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:30:17,952 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:30:58,898 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:30:59,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:31:40,154 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:31:40,474 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:32:21,414 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:32:21,744 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:33:02,665 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:33:02,993 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:33:43,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:33:44,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:34:25,172 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:34:25,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:35:06,424 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:35:06,751 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:35:47,687 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:35:48,017 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:36:28,951 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:36:29,281 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:37:10,216 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:37:10,536 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:37:51,471 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:37:51,798 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:38:32,738 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:38:33,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:39:13,992 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:39:14,325 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:39:55,249 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:39:55,570 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:40:36,511 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:40:36,831 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:41:17,773 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:41:18,092 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:41:59,025 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:41:59,357 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:42:40,285 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:42:40,604 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:43:21,537 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:43:21,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:44:02,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:44:03,112 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:44:44,061 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:44:44,394 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:45:25,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:45:25,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:46:06,584 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:46:06,915 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:46:47,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:46:48,162 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:47:29,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:47:29,429 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:48:10,367 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:48:10,687 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:48:51,621 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:48:51,938 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:49:32,887 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:49:33,205 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:50:14,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:50:14,482 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:50:55,401 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:50:55,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:51:36,658 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:51:36,990 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:52:17,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:52:18,235 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:52:59,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:52:59,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:53:40,446 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:53:40,763 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:54:21,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:54:22,047 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:55:02,955 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:55:03,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:55:44,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:55:44,551 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:56:25,471 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:56:25,793 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:57:06,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:57:07,077 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:57:48,000 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:57:48,318 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:58:29,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:58:29,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:59:10,521 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:59:10,841 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 03:59:51,773 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 03:59:52,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:00:33,030 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:00:33,349 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:01:14,290 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:01:14,617 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:01:55,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:01:55,875 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:02:36,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:02:37,144 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:03:18,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:03:18,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:03:59,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:03:59,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:04:40,586 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:04:40,903 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:05:21,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:05:22,161 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:06:03,105 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:06:03,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:06:44,366 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:06:44,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:07:25,626 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:07:25,945 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:08:06,878 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:08:07,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:08:48,134 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:08:48,451 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:09:29,393 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:09:29,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:10:10,648 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:10:10,968 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:10:51,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:10:52,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:11:33,169 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:11:33,484 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:12:14,428 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:12:14,761 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:12:55,688 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:12:56,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:13:36,953 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:13:37,268 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:14:18,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:14:18,537 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:14:59,470 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:14:59,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:15:40,723 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:15:41,046 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:16:21,979 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:16:22,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:17:03,236 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:17:03,549 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:17:44,489 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:17:44,805 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:18:25,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:18:26,068 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:19:07,011 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:19:07,328 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:19:48,272 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:19:48,592 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:20:29,537 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:20:29,849 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:21:10,801 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:21:11,120 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:21:52,063 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:21:52,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:22:33,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:22:33,659 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:23:14,575 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:23:14,889 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:23:55,835 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:23:56,172 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:24:37,088 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:24:37,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:25:18,349 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:25:18,685 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:25:59,609 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:25:59,921 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:26:40,865 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:26:41,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:27:22,119 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:27:22,436 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:28:03,385 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:28:03,704 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:28:44,643 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:28:44,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:29:25,901 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:29:26,214 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:30:07,157 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:30:07,470 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:30:48,423 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:30:48,745 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:31:29,690 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:31:30,000 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:32:10,950 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:32:11,272 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:32:52,217 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:32:52,531 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:33:33,481 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:33:33,792 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:34:14,743 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 170. +2024-12-02 04:34:15,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:34:24,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 171, 'op': 0, 'd': {'user_id': '777755987825131530', 'timestamp': 1733094265, 'member': {'user': {'username': 'dxkshh', 'public_flags': 128, 'id': '777755987825131530', 'global_name': 'storm', 'display_name': 'storm', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '464c68880f6deac82a29207fce0ca763'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1088037634695241768', '1168311263412113448', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-11T05:19:49.529000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} +2024-12-02 04:34:24,646 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 04:34:24,646 - discord.client - DEBUG - Dispatching event typing +2024-12-02 04:34:24,647 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 04:34:32,732 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 172, 'op': 0, 'd': {'user_id': '777755987825131530', 'timestamp': 1733094273, 'member': {'user': {'username': 'dxkshh', 'public_flags': 128, 'id': '777755987825131530', 'global_name': 'storm', 'display_name': 'storm', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '464c68880f6deac82a29207fce0ca763'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1088037634695241768', '1168311263412113448', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-11T05:19:49.529000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} +2024-12-02 04:34:32,733 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 04:34:32,733 - discord.client - DEBUG - Dispatching event typing +2024-12-02 04:34:32,733 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 04:34:46,340 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 173, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T23:04:47.156000+00:00', 'sticker_items': [{'name': 'NX_mcemoji_52', 'id': '1169691922600833045', 'format_type': 1}], 'pinned': False, 'nonce': '1312917339838087168', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1088037634695241768', '1168311263412113448', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-11T05:19:49.529000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312917341994094703', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'dxkshh', 'public_flags': 128, 'primary_guild': None, 'id': '777755987825131530', 'global_name': 'storm', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '464c68880f6deac82a29207fce0ca763'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-02 04:34:46,341 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 04:34:46,341 - discord.client - DEBUG - Dispatching event message +2024-12-02 04:34:55,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 173. +2024-12-02 04:34:56,318 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:35:13,231 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 174, 'op': 0, 'd': {'user_id': '777755987825131530', 'timestamp': 1733094314, 'member': {'user': {'username': 'dxkshh', 'public_flags': 128, 'id': '777755987825131530', 'global_name': 'storm', 'display_name': 'storm', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '464c68880f6deac82a29207fce0ca763'}, 'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1088037634695241768', '1168311263412113448', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-11T05:19:49.529000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1285331307228037291', 'guild_id': '922005348670406667'}} +2024-12-02 04:35:13,232 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 04:35:13,233 - discord.client - DEBUG - Dispatching event typing +2024-12-02 04:35:13,233 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-02 04:35:16,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 175, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-01T23:05:17.714000+00:00', 'pinned': False, 'nonce': '1312917467797913600', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1166279735983230976', '1062343535535325235', '1088385891116003380', '1088037634695241768', '1168311263412113448', '1062250559974940733', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-04-11T05:19:49.529000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1312917470163763251', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': ':3', 'components': [], 'channel_id': '1285331307228037291', 'author': {'username': 'dxkshh', 'public_flags': 128, 'primary_guild': None, 'id': '777755987825131530', 'global_name': 'storm', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '464c68880f6deac82a29207fce0ca763'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-02 04:35:16,877 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 04:35:16,878 - discord.client - DEBUG - Dispatching event message +2024-12-02 04:35:37,254 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:35:37,567 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:36:18,509 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:36:18,823 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:36:59,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:37:00,086 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:37:41,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:37:41,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:38:22,295 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:38:22,608 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:39:03,549 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:39:03,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:39:44,809 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:39:45,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:40:26,060 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:40:26,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:41:07,321 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:41:07,645 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:41:48,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:41:48,887 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:42:29,837 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:42:30,155 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:43:11,094 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:43:11,405 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:43:52,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:43:52,667 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:44:33,611 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:44:33,924 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:45:14,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:45:15,178 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:45:56,124 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:45:56,435 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:46:37,391 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:46:37,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:47:18,645 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:47:18,956 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:47:59,911 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:48:00,237 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:48:41,174 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:48:41,485 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:49:22,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:49:22,777 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:50:03,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:50:04,008 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:50:44,959 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:50:45,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:51:26,217 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:51:26,530 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:52:07,482 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:52:07,806 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:52:48,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:52:49,051 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:53:29,998 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:53:30,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:54:11,261 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:54:11,572 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:54:52,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:54:52,837 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:55:33,777 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:55:34,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:56:15,029 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:56:15,344 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:56:56,291 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:56:56,601 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:57:37,546 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:57:37,859 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:58:18,811 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:58:19,124 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:59:00,068 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:59:00,379 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 04:59:41,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 04:59:41,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:00:22,579 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:00:22,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:01:03,835 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:01:04,150 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:01:45,089 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:01:45,400 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:02:26,340 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:02:26,653 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:03:07,598 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:03:07,912 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:03:48,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:03:49,163 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:04:30,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:04:30,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:05:11,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:05:11,675 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:05:52,629 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:05:52,940 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:06:33,884 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:06:34,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:07:15,141 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:07:15,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:07:56,405 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:07:56,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:08:37,662 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:08:37,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:09:18,915 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:09:19,227 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:10:00,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:10:00,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:10:41,432 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:10:41,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:11:22,698 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:11:23,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:12:03,957 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:12:04,278 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:12:45,209 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:12:45,519 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:13:26,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:13:26,788 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:14:07,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:14:08,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:14:49,001 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:14:49,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:15:30,262 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:15:30,578 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:16:11,525 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:16:11,845 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:16:52,786 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:16:53,113 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:17:34,048 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:17:34,368 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:18:15,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:18:15,629 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:18:56,563 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:18:56,889 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:19:37,818 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:19:38,139 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:20:19,070 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:20:19,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:21:00,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:21:00,651 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:21:41,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:21:41,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:22:22,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:22:23,174 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:23:04,105 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:23:04,439 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:23:45,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:23:45,674 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:24:26,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:24:26,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:25:07,876 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:25:08,193 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:25:49,140 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:25:49,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:26:30,406 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:26:30,727 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:27:11,667 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:27:11,979 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:27:52,928 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:27:53,240 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:28:34,194 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:28:34,506 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:29:15,450 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:29:15,762 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:29:56,712 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:29:57,026 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:30:37,968 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:30:38,284 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:31:19,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:31:19,540 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:32:00,478 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:32:00,794 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:32:41,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:32:42,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:33:23,005 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:33:23,322 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:34:04,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:34:04,577 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:34:45,516 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:34:45,837 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:35:26,770 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:35:27,084 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:36:08,029 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:36:08,342 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:36:49,285 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:36:49,604 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:37:30,539 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:37:30,864 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:38:11,793 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:38:12,113 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:38:53,051 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:38:53,370 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:39:34,316 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:39:34,634 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:40:15,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:40:15,900 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:40:56,827 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:40:57,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:41:38,085 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:41:38,410 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:42:19,342 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:42:19,661 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:43:00,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:43:00,922 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:43:41,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:43:42,171 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:44:23,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:44:23,434 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:45:04,367 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:45:04,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:45:45,632 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:45:45,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:46:26,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:46:27,210 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:47:08,157 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:47:08,478 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:47:49,414 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:47:49,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:48:30,677 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:48:30,995 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:49:11,932 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:49:12,246 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:49:53,189 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:49:53,515 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:50:34,454 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:50:34,773 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:51:15,709 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:51:16,041 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:51:56,963 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:51:57,279 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:52:38,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:52:38,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:53:19,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:53:19,802 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:54:00,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:54:01,074 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:54:41,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:54:42,314 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:55:23,254 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:55:23,590 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:56:04,510 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:56:04,829 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:56:45,775 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:56:46,089 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:57:27,028 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:57:27,344 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:58:08,287 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:58:08,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:58:49,553 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:58:49,867 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 05:59:30,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 05:59:31,129 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:00:12,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:00:12,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:00:53,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:00:53,646 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:01:34,592 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:01:34,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:02:15,851 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:02:16,167 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:02:57,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:02:57,452 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:03:38,382 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:03:38,699 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:04:19,639 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:04:19,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:05:00,897 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:05:01,213 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:05:42,152 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:05:42,471 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:06:23,407 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:06:23,727 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:07:04,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:07:04,992 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:07:45,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:07:46,237 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:08:27,182 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:08:27,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:09:08,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:09:08,762 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:09:49,707 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:09:50,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:10:30,961 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:10:31,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:11:12,216 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:11:12,541 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:11:53,471 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:11:53,787 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:12:34,731 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:12:35,055 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:13:15,998 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:13:16,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:13:57,259 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:13:57,576 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:14:38,513 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:14:38,833 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:15:19,773 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:15:20,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:16:01,028 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:16:01,345 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:16:42,293 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:16:42,615 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:17:23,548 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:17:23,867 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:18:04,806 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:18:05,131 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:18:46,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:18:46,383 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:19:27,327 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:19:27,663 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:20:08,593 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:20:08,911 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:20:49,847 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:20:50,185 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:21:31,101 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:21:31,415 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:22:12,356 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:22:12,687 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:22:53,609 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:22:53,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:23:34,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:23:35,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:24:16,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:24:16,443 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:24:57,386 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:24:57,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:25:38,647 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:25:38,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:26:19,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:26:20,234 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:27:01,166 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:27:01,482 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:27:42,418 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 175. +2024-12-02 06:27:42,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:28:15,659 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 176, 'op': 0, 'd': {'user': {'username': 'fateen09', 'public_flags': 0, 'id': '360498166216523778', 'global_name': 'F.K', 'display_name': 'F.K', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': ['1166279735983230976', '1170543488555810816', '1088037634695241768', '1168311263412113448', '1062249717427355698', '1062343535535325235', '1088385891116003380', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-01-05T14:54:56.163000+00:00', 'guild_id': '922005348670406667', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-02 06:28:15,660 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 06:28:15,660 - discord.client - DEBUG - Dispatching event user_update +2024-12-02 06:28:15,660 - discord.client - DEBUG - Dispatching event member_update +2024-12-02 06:28:16,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 177, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T00:58:17.556000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312945906882052096', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T00:58:16.910718+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/0.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/2dZVVL6feMSM7lxfFkKVW__LToSOzmToSEmocJV5vcA/https/cdn.discordapp.com/embed/avatars/0.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 360498166216523778'}, 'description': '<@360498166216523778>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/2dZVVL6feMSM7lxfFkKVW__LToSOzmToSEmocJV5vcA/https/cdn.discordapp.com/embed/avatars/0.png', 'name': 'fateen09', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/0.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-02 06:28:16,348 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 06:28:16,349 - discord.client - DEBUG - Dispatching event message +2024-12-02 06:28:16,433 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 178, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T00:58:17.556000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312945906882052096', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T00:58:16.910000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/embed/avatars/0.png', 'proxy_url': 'https://images-ext-1.discordapp.net/external/2dZVVL6feMSM7lxfFkKVW__LToSOzmToSEmocJV5vcA/https/cdn.discordapp.com/embed/avatars/0.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 360498166216523778'}, 'description': '<@360498166216523778>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/2dZVVL6feMSM7lxfFkKVW__LToSOzmToSEmocJV5vcA/https/cdn.discordapp.com/embed/avatars/0.png', 'name': 'fateen09', 'icon_url': 'https://cdn.discordapp.com/embed/avatars/0.png'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-02 06:28:16,434 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 06:28:16,436 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 06:28:16,436 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 06:28:23,684 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:28:23,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:29:04,944 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:29:05,286 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:29:46,195 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:29:46,511 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:30:27,450 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:30:27,766 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:31:08,707 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:31:09,022 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:31:49,966 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:31:50,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:32:31,230 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:32:31,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:33:12,482 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:33:12,804 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:33:53,747 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:33:54,064 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:34:35,006 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:34:35,323 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:35:16,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:35:16,584 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:35:57,530 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:35:57,846 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:36:38,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:36:39,113 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:37:20,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:37:20,366 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:38:01,310 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:38:01,626 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:38:42,577 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:38:42,892 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:39:23,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:39:24,166 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:40:05,101 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:40:05,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:40:46,361 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:40:46,685 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:41:27,615 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:41:27,932 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:42:08,873 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:42:09,190 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:42:50,126 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:42:50,443 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:43:31,387 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:43:31,706 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:44:12,649 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:44:12,964 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:44:53,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:44:54,238 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:45:35,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:45:35,491 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:46:16,438 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 178. +2024-12-02 06:46:16,765 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:46:18,497 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 179, 'op': 0, 'd': {'user': {'username': 'xd.snickers.', 'public_flags': 64, 'id': '1160893323721056257', 'global_name': '!xd.Snickers.', 'display_name': '!xd.Snickers.', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '0e9edf73dea06ce7e897e30d975e4e05'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168301657906491523', '1080184984423366726', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1083804166385836084', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-30T20:43:34.469000+00:00', 'guild_id': '922005348670406667', 'flags': 106, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-02 06:46:18,498 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 06:46:18,499 - discord.client - DEBUG - Dispatching event user_update +2024-12-02 06:46:18,501 - discord.client - DEBUG - Dispatching event member_update +2024-12-02 06:46:18,906 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 180, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T01:16:20.156000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312950447635693668', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T01:16:19.795404+00:00', 'thumbnail': {'width': 549, 'url': 'https://cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/PHs6FyWWXAPFoTX_hFx6AqinaD5z0cdSppoGK_UEwNA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png', 'height': 549, 'flags': 0}, 'footer': {'text': 'ID: 1160893323721056257'}, 'description': '<@1160893323721056257>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/PHs6FyWWXAPFoTX_hFx6AqinaD5z0cdSppoGK_UEwNA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png', 'name': 'xd.snickers.', 'icon_url': 'https://cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-02 06:46:18,907 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 06:46:18,907 - discord.client - DEBUG - Dispatching event message +2024-12-02 06:46:18,955 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 181, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T01:16:20.156000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312950447635693668', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T01:16:19.795000+00:00', 'thumbnail': {'width': 549, 'url': 'https://cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/PHs6FyWWXAPFoTX_hFx6AqinaD5z0cdSppoGK_UEwNA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png', 'height': 549, 'flags': 0}, 'footer': {'text': 'ID: 1160893323721056257'}, 'description': '<@1160893323721056257>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/PHs6FyWWXAPFoTX_hFx6AqinaD5z0cdSppoGK_UEwNA/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png', 'name': 'xd.snickers.', 'icon_url': 'https://cdn.discordapp.com/avatars/1160893323721056257/0e9edf73dea06ce7e897e30d975e4e05.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-02 06:46:18,955 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 06:46:18,955 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 06:46:18,956 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 06:46:57,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-02 06:46:58,020 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:47:38,957 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-02 06:47:39,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:48:20,215 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-02 06:48:20,534 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:49:01,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-02 06:49:01,810 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:49:42,742 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-02 06:49:43,059 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:50:23,996 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-02 06:50:24,342 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:51:05,261 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-02 06:51:05,577 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:51:46,527 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-02 06:51:46,866 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:52:27,788 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-02 06:52:28,102 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:53:09,052 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 181. +2024-12-02 06:53:09,375 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:53:49,860 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 06:53:49,860 - discord.client - DEBUG - Dispatching event user_update +2024-12-02 06:53:49,861 - discord.client - DEBUG - Dispatching event member_update +2024-12-02 06:53:50,317 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 182. +2024-12-02 06:53:50,634 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:53:53,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 183, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T01:23:55.175000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312952356123705425', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T01:23:51.158276+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/tBZh3zlG5IFU1qMU26Q6utfbAPpl1yDgb5iHGuCOAvU/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 813779006595661834'}, 'description': '<@813779006595661834>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/tBZh3zlG5IFU1qMU26Q6utfbAPpl1yDgb5iHGuCOAvU/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png', 'name': 'adhimwol', 'icon_url': 'https://cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-02 06:53:53,920 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 06:53:53,920 - discord.client - DEBUG - Dispatching event message +2024-12-02 06:53:53,983 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 184, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-02T01:23:55.175000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1312952356123705425', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-02T01:23:51.158000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/tBZh3zlG5IFU1qMU26Q6utfbAPpl1yDgb5iHGuCOAvU/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 813779006595661834'}, 'description': '<@813779006595661834>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/tBZh3zlG5IFU1qMU26Q6utfbAPpl1yDgb5iHGuCOAvU/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png', 'name': 'adhimwol', 'icon_url': 'https://cdn.discordapp.com/avatars/813779006595661834/0592e14d027845e2be328aa71760e695.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-02 06:53:53,985 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 06:53:53,985 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-02 06:53:53,986 - discord.client - DEBUG - Dispatching event message_edit +2024-12-02 06:54:31,581 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 06:54:31,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:55:12,836 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 06:55:13,151 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:55:54,091 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 06:55:54,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:56:35,346 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 06:56:35,663 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:57:16,599 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 06:57:16,915 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:57:57,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 06:57:58,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:58:39,106 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 06:58:39,428 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 06:59:20,365 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 06:59:20,680 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:00:01,631 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:00:01,949 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:00:42,891 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:00:43,206 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:01:24,157 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:01:24,473 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:02:05,421 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:02:05,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:02:46,679 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:02:46,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:03:27,932 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:03:28,246 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:04:09,187 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:04:09,503 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:04:50,453 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:04:50,781 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:05:31,717 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:05:32,034 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:06:12,982 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:06:13,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:06:54,243 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:06:54,561 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:07:35,504 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:07:35,821 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:08:16,762 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 184. +2024-12-02 07:08:17,081 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:08:56,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-02 07:08:56,511 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-02 07:08:56,827 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-02 07:08:56,828 - discord.client - DEBUG - Dispatching event disconnect +2024-12-02 07:08:57,283 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-d.discord.gg +2024-12-02 07:08:57,284 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-k928",{"micros":0.0}]']}} +2024-12-02 07:08:57,286 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-02 07:08:57,604 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:08:57,605 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 185, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-d-k928",{"micros":415,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":212,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-99",{"micros":22}]}]']}} +2024-12-02 07:08:57,605 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 07:08:57,606 - discord.gateway - INFO - Shard ID None has successfully RESUMED session fa2277b53513e5fe00deb778c28808aa. +2024-12-02 07:08:57,606 - discord.client - DEBUG - Dispatching event resumed +2024-12-02 07:09:38,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:09:38,864 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:10:19,806 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:10:20,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:11:01,063 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:11:01,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:11:42,329 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:11:42,652 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:12:23,585 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:12:23,900 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:13:04,851 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:13:05,174 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:13:46,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:13:46,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:14:27,362 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:14:27,692 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:15:08,615 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:15:08,931 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:15:49,867 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:15:50,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:16:31,121 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:16:31,446 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:17:12,379 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:17:12,702 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:17:53,637 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:17:53,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:18:34,892 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:18:35,218 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:19:16,153 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:19:16,503 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:19:57,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:19:57,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:20:38,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:20:39,004 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:21:19,929 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:21:20,258 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:22:01,188 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:22:01,516 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:22:42,454 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:22:42,778 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:23:23,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:23:24,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:24:04,977 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:24:05,304 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:24:46,237 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:24:46,565 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:25:27,503 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:25:27,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:26:08,757 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:26:09,082 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:26:50,011 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:26:50,328 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:27:31,271 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:27:31,609 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:28:12,534 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:28:12,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:28:53,786 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:28:54,110 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:29:35,047 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:29:35,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:30:16,300 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:30:16,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:30:57,561 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:30:57,879 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:31:38,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:31:39,130 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:32:20,069 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:32:20,386 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:33:01,331 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:33:01,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:33:42,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:33:42,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:34:23,857 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:34:24,182 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:35:05,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:35:05,445 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:35:46,364 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:35:46,692 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:36:27,625 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:36:27,946 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:37:08,880 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:37:09,214 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:37:50,135 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:37:50,453 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:38:31,388 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:38:31,722 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:39:12,641 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:39:12,963 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:39:53,898 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:39:54,229 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:40:35,149 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:40:35,470 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:41:16,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:41:16,730 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:41:57,662 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:41:57,982 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:42:38,920 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:42:39,242 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:43:20,184 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:43:20,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:44:01,442 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:44:01,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:44:42,697 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:44:43,025 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:45:23,955 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:45:24,283 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:46:05,218 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:46:05,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:46:46,469 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:46:46,799 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:47:27,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:47:28,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:48:08,987 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:48:09,313 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:48:50,238 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:48:50,562 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:49:31,499 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:49:31,814 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:50:12,751 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:50:13,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:50:54,009 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:50:54,326 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:51:35,267 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:51:35,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:52:16,521 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:52:16,850 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:52:57,777 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:52:58,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:53:39,038 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:53:39,365 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:54:20,293 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:54:20,610 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:55:01,556 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:55:01,891 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:55:42,817 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:55:43,143 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:56:24,071 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:56:24,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:57:05,330 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:57:05,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:57:46,597 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:57:46,924 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:58:27,852 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:58:28,170 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:59:09,110 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:59:09,440 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 07:59:50,371 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 07:59:50,699 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:00:31,631 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:00:31,967 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:01:12,891 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:01:13,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:01:54,155 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:01:54,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:02:35,419 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:02:35,743 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:03:16,680 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:03:17,007 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:03:57,945 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:03:58,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:04:39,199 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:04:39,525 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:05:20,456 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:05:20,780 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:06:01,715 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:06:02,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:06:42,973 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:06:43,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:07:24,235 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:07:24,566 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:08:05,493 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:08:05,818 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:08:46,761 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:08:47,088 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:09:28,027 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:09:28,349 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:10:09,288 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:10:09,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:10:50,548 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:10:50,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:11:31,805 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:11:32,135 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:12:13,059 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:12:13,384 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:12:54,320 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:12:54,649 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:13:35,580 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:13:35,919 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:14:16,835 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:14:17,164 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:14:58,093 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:14:58,418 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:15:39,355 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:15:39,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:16:20,610 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:16:20,932 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:17:01,872 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:17:02,199 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:17:43,132 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:17:43,457 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:18:24,397 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:18:24,721 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:19:05,648 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:19:05,971 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:19:46,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:19:47,237 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:20:28,169 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:20:28,510 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:21:09,420 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:21:09,770 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:21:50,681 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:21:51,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:22:31,947 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:22:32,274 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:23:13,204 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:23:13,533 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:23:54,466 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:23:54,791 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:24:35,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:24:36,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:25:16,991 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:25:17,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:25:58,254 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:25:58,611 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:26:39,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:26:39,849 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:27:20,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:27:21,105 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:28:02,034 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:28:02,358 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:28:43,287 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:28:43,613 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:29:24,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:29:24,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:30:05,813 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:30:06,161 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:30:47,078 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:30:47,404 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:31:28,335 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:31:28,668 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:32:09,592 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:32:09,916 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:32:50,845 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:32:51,171 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:33:32,109 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:33:32,432 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:34:13,369 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:34:13,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:34:54,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:34:54,947 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:35:35,879 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:35:36,205 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:36:17,132 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:36:17,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:36:58,386 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:36:58,717 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:37:39,647 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:37:39,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:38:20,905 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:38:21,226 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:39:02,159 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:39:02,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:39:43,412 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:39:43,737 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:40:24,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:40:24,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:41:05,932 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:41:06,253 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:41:47,190 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:41:47,512 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:42:28,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:42:28,768 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:43:09,711 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:43:10,042 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:43:50,974 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:43:51,298 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:44:32,234 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:44:32,568 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:45:13,487 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:45:13,814 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:45:54,745 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:45:55,083 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:46:36,010 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:46:36,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:47:17,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:47:17,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:47:58,523 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:47:58,855 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:48:39,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:48:40,115 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:49:21,041 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:49:21,371 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:50:02,303 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:50:02,641 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:50:43,558 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:50:43,892 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:51:24,817 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:51:25,188 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:52:06,077 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:52:06,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:52:47,338 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:52:47,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:53:28,605 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:53:28,935 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:54:09,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:54:10,191 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:54:51,132 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:54:51,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:55:32,385 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:55:32,709 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:56:13,647 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:56:13,985 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:56:54,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:56:55,257 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:57:36,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:57:36,508 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:58:17,443 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:58:17,775 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:58:58,704 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:58:59,038 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 08:59:39,970 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 08:59:40,291 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:00:21,225 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 09:00:21,549 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:01:02,489 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 185. +2024-12-02 09:01:02,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:01:04,676 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-02 09:01:04,677 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-02 09:01:05,008 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-02 09:01:05,009 - discord.client - DEBUG - Dispatching event disconnect +2024-12-02 09:01:05,431 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-d.discord.gg +2024-12-02 09:01:05,432 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-bh66",{"micros":0.0}]']}} +2024-12-02 09:01:05,433 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-02 09:01:05,750 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:01:05,751 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 186, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-d-bh66",{"micros":420,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":207,"calls":[]},"session_lookup_finished",{"micros":18,"calls":[]},"discord-sessions-prd-1-99",{"micros":22}]}]']}} +2024-12-02 09:01:05,751 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 09:01:05,751 - discord.gateway - INFO - Shard ID None has successfully RESUMED session fa2277b53513e5fe00deb778c28808aa. +2024-12-02 09:01:05,752 - discord.client - DEBUG - Dispatching event resumed +2024-12-02 09:01:46,696 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:01:47,011 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:02:27,954 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:02:28,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:03:09,211 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:03:09,527 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:03:50,468 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:03:50,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:04:31,733 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:04:32,078 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:05:12,989 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:05:13,303 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:05:54,246 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:05:54,569 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:06:35,498 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:06:35,815 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:07:16,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:07:17,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:07:58,009 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:07:58,342 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:08:39,273 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:08:39,594 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:09:20,526 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:09:20,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:10:01,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:10:02,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:10:43,031 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:10:43,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:11:24,296 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:11:24,616 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:12:05,560 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:12:05,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:12:46,816 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:12:47,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:13:28,079 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:13:28,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:14:09,347 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:14:09,667 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:14:50,606 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:14:50,920 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:15:31,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:15:32,185 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:16:13,130 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:16:13,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:16:54,392 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:16:54,705 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:17:35,657 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:17:35,978 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:18:16,923 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:18:17,243 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:18:58,178 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:18:58,499 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:19:39,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:19:39,745 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:20:20,691 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:20:21,012 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:21:01,952 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:21:02,274 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:21:43,206 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:21:43,522 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:22:24,459 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:22:24,777 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:23:05,716 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:23:06,038 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:23:46,977 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:23:47,294 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:24:28,229 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 186. +2024-12-02 09:24:28,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:24:35,541 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-02 09:24:35,543 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-02 09:24:35,861 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-02 09:24:35,862 - discord.client - DEBUG - Dispatching event disconnect +2024-12-02 09:24:36,276 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-d.discord.gg +2024-12-02 09:24:36,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-37bl",{"micros":0.0}]']}} +2024-12-02 09:24:36,278 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-02 09:24:36,618 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:24:36,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 187, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-d-37bl",{"micros":4180,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":3983,"calls":[]},"session_lookup_finished",{"micros":13,"calls":[]},"discord-sessions-prd-1-99",{"micros":23}]}]']}} +2024-12-02 09:24:36,619 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 09:24:36,619 - discord.gateway - INFO - Shard ID None has successfully RESUMED session fa2277b53513e5fe00deb778c28808aa. +2024-12-02 09:24:36,619 - discord.client - DEBUG - Dispatching event resumed +2024-12-02 09:25:17,529 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:25:17,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:25:58,792 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:25:59,122 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:26:40,050 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:26:40,366 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:27:21,314 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:27:21,632 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:28:02,580 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:28:02,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:28:43,833 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:28:44,157 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:29:25,100 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:29:25,422 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:30:06,352 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:30:06,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:30:47,616 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:30:47,934 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:31:28,872 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:31:29,203 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:32:10,136 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:32:10,455 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:32:51,403 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:32:51,718 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:33:32,666 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:33:32,984 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:34:13,932 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:34:14,250 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:34:55,198 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:34:55,512 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:35:36,455 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:35:36,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:36:17,713 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:36:18,032 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:36:58,966 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:36:59,290 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:37:40,217 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:37:40,539 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:38:21,483 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:38:21,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:39:02,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:39:03,049 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:39:44,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:39:44,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:40:25,269 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:40:25,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:41:06,523 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:41:06,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:41:47,779 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:41:48,101 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:42:29,042 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:42:29,358 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:43:10,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:43:10,628 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:43:51,564 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:43:51,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:44:32,825 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:44:33,140 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:45:14,082 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:45:14,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:45:55,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:45:55,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:46:36,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:46:36,917 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:47:17,864 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:47:18,184 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:47:59,119 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:47:59,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:48:40,381 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:48:40,710 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:49:21,636 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:49:21,966 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:50:02,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:50:03,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:50:44,156 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:50:44,477 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:51:25,409 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:51:25,736 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:52:06,664 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:52:06,981 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:52:47,919 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:52:48,247 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:53:29,178 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:53:29,501 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:54:10,439 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:54:10,758 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:54:51,692 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:54:52,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:55:32,951 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:55:33,275 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:56:14,216 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:56:14,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:56:55,475 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:56:55,803 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:57:36,736 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:57:37,054 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:58:17,995 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:58:18,321 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:58:59,258 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:58:59,575 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 09:59:40,524 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 09:59:40,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:00:21,789 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:00:22,106 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:01:03,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:01:03,363 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:01:44,311 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:01:44,626 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:02:25,577 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:02:25,893 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:03:06,834 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:03:07,152 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:03:48,092 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:03:48,409 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:04:29,348 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:04:29,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:05:10,602 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:05:10,921 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:05:51,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:05:52,196 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:06:33,127 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:06:33,444 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:07:14,388 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:07:14,709 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:07:55,653 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:07:55,970 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:08:36,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:08:37,234 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:09:18,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:09:18,496 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:09:59,437 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:09:59,757 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:10:40,703 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:10:41,021 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:11:21,956 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:11:22,284 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:12:03,219 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:12:03,545 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:12:44,473 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:12:44,793 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:13:25,727 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:13:26,047 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:14:06,991 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:14:07,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:14:48,257 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:14:48,571 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:15:29,511 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:15:29,826 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:16:10,763 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:16:11,078 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:16:52,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:16:52,343 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:17:33,290 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:17:33,619 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:18:14,554 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:18:14,868 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:18:55,814 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:18:56,134 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:19:37,067 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:19:37,389 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:20:18,323 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:20:18,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:20:59,575 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:20:59,896 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:21:40,838 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:21:41,160 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:22:22,103 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:22:22,426 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:23:03,367 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:23:03,682 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:23:44,631 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:23:44,951 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:24:25,892 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:24:26,209 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:25:07,147 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:25:07,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:25:48,405 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:25:48,719 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:26:29,659 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:26:29,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:27:10,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:27:11,229 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:27:52,175 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:27:52,493 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:28:33,443 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:28:33,756 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:29:14,695 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:29:15,010 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:29:55,954 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:29:56,269 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:30:37,205 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:30:37,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:31:18,472 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:31:18,785 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:31:59,726 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:32:00,038 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:32:40,988 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:32:41,300 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:33:22,242 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 187. +2024-12-02 10:33:22,553 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:33:26,754 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 7, 'd': None} +2024-12-02 10:33:26,755 - discord.gateway - DEBUG - Received RECONNECT opcode. +2024-12-02 10:33:27,064 - discord.client - DEBUG - Got a request to RESUME the websocket. +2024-12-02 10:33:27,065 - discord.client - DEBUG - Dispatching event disconnect +2024-12-02 10:33:27,487 - discord.gateway - DEBUG - Created websocket connected to wss://gateway-us-east1-d.discord.gg +2024-12-02 10:33:27,487 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-d-x8fh",{"micros":0.0}]']}} +2024-12-02 10:33:27,489 - discord.gateway - DEBUG - Shard ID None has sent the RESUME payload. +2024-12-02 10:33:27,812 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:33:27,813 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'RESUMED', 's': 188, 'op': 0, 'd': {'_trace': ['["gateway-prd-us-east1-d-x8fh",{"micros":463,"calls":["id_created",{"micros":0,"calls":[]},"session_lookup_time",{"micros":214,"calls":[]},"session_lookup_finished",{"micros":12,"calls":[]},"discord-sessions-prd-1-99",{"micros":28}]}]']}} +2024-12-02 10:33:27,813 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 10:33:27,813 - discord.gateway - INFO - Shard ID None has successfully RESUMED session fa2277b53513e5fe00deb778c28808aa. +2024-12-02 10:33:27,814 - discord.client - DEBUG - Dispatching event resumed +2024-12-02 10:34:08,741 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:34:09,062 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:34:50,003 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:34:50,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:35:31,263 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:35:31,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:36:12,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:36:12,842 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:36:53,776 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:36:54,097 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:37:35,033 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:37:35,361 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:38:16,289 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:38:16,610 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:38:57,545 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:38:57,858 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:39:38,796 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:39:39,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:40:20,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:40:20,371 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:41:01,306 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:41:01,629 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:41:42,566 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:41:42,889 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:42:23,827 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:42:24,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:43:05,079 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:43:05,403 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:43:46,331 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:43:46,653 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:44:27,595 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:44:27,918 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:45:08,855 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:45:09,181 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:45:50,116 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:45:50,438 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:46:31,371 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:46:31,697 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:47:12,630 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:47:12,953 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:47:53,893 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:47:54,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:48:35,150 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:48:35,474 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:49:16,414 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:49:16,739 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:49:57,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:49:57,991 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:50:38,921 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:50:39,249 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:51:20,186 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:51:20,512 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:52:01,437 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:52:01,744 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:52:42,701 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:52:43,023 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:53:23,966 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:53:24,289 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:54:05,227 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:54:05,551 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:54:46,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:54:46,808 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:55:27,750 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:55:28,073 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:56:09,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:56:09,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:56:50,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:56:50,586 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:57:31,530 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:57:31,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:58:12,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:58:13,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:58:54,055 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:58:54,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 10:59:35,321 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 10:59:35,643 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:00:16,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:00:16,900 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:00:57,843 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:00:58,165 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:01:39,101 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:01:39,424 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:02:20,369 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:02:20,692 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:03:01,620 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:03:01,944 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:03:42,875 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:03:43,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:04:24,128 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:04:24,449 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:05:05,392 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:05:05,716 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:05:46,656 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:05:46,979 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:06:27,922 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:06:28,230 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:07:09,180 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:07:09,502 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:07:50,440 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:07:50,764 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:08:31,694 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:08:32,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:09:12,947 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:09:13,272 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:09:54,199 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:09:54,523 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:10:35,456 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:10:35,776 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:11:16,708 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:11:17,030 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:11:57,973 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:11:58,295 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:12:39,224 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 188. +2024-12-02 11:12:39,546 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:12:51,800 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 189, 'op': 0, 'd': {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-02 11:12:51,800 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 11:12:51,800 - discord.client - DEBUG - Dispatching event user_update +2024-12-02 11:12:51,800 - discord.client - DEBUG - Dispatching event member_update +2024-12-02 11:12:51,800 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 190, 'op': 0, 'd': {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1166279735983230976', '1168249317203640550', '1088037634695241768', '1168311263412113448', '1062343535535325235', '1088385891116003380', '1088037558648311829', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-01T18:35:17.945000+00:00', 'guild_id': '922005348670406667', 'flags': 2, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-02 11:12:51,800 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-02 11:12:51,800 - discord.client - DEBUG - Dispatching event member_update +2024-12-02 11:13:20,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:13:20,788 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:14:01,735 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:14:02,056 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:14:42,998 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:14:43,336 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:15:24,265 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:15:24,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:16:05,525 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:16:05,853 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:16:46,785 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:16:47,093 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:17:28,042 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:17:28,368 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:18:09,295 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:18:09,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:18:50,552 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:18:50,874 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:19:31,815 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:19:32,153 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:20:13,079 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:20:13,402 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:20:54,343 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:20:54,666 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:21:35,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:21:35,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:22:16,865 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:22:17,187 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:22:58,117 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:22:58,441 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:23:39,374 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:23:39,698 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:24:20,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:24:20,953 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:25:01,895 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:25:02,220 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:25:43,153 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:25:43,480 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:26:24,405 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:26:24,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:27:05,657 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:27:05,980 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:27:46,913 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:27:47,236 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:28:28,167 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:28:28,476 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:29:09,419 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:29:09,742 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:29:50,672 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:29:50,980 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:30:31,937 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:30:32,244 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:31:13,203 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:31:13,509 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:31:54,467 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:31:54,790 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:32:35,729 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:32:36,037 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:33:16,982 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:33:17,306 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:33:58,242 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:33:58,565 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:34:39,494 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:34:39,816 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:35:20,753 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:35:21,063 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:36:02,016 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:36:02,323 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:36:43,268 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:36:43,581 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:37:24,519 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:37:24,827 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:38:05,772 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:38:06,080 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:38:47,034 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:38:47,341 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:39:28,286 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:39:28,593 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:40:09,552 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:40:09,863 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:40:50,812 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:40:51,119 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:41:32,071 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:41:32,379 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:42:13,331 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:42:13,645 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:42:54,587 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:42:54,894 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:43:35,841 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:43:36,148 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:44:17,095 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:44:17,401 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:44:58,358 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:44:58,664 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:45:39,616 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:45:39,923 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:46:20,869 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:46:21,176 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:47:02,124 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:47:02,431 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:47:43,377 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:47:43,684 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:48:24,628 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:48:24,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:49:05,893 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:49:06,200 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:49:47,156 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:49:47,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:50:28,418 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:50:28,726 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:51:09,669 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:51:09,975 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:51:50,933 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:51:51,241 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:52:32,191 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:52:32,498 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:53:13,444 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:53:13,767 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:53:54,710 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:53:55,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:54:35,972 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:54:36,344 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:55:17,227 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:55:17,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:55:58,486 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:55:58,794 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:56:39,745 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:56:40,069 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:57:21,011 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:57:21,317 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:58:02,276 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:58:02,588 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:58:43,532 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:58:43,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 11:59:24,786 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 11:59:25,104 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:00:06,044 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:00:06,360 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:00:47,310 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:00:47,623 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:01:28,564 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:01:28,871 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:02:09,826 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:02:10,156 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:02:51,090 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:02:51,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:03:32,352 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:03:32,660 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:04:13,611 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:04:13,935 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:04:54,877 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:04:55,201 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:05:36,142 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:05:36,449 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:06:17,398 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:06:17,706 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:06:58,656 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:06:58,963 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:07:39,918 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:07:40,225 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:08:21,181 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:08:21,489 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:09:02,447 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:09:02,752 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:09:43,706 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:09:44,013 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:10:24,965 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:10:25,277 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:11:06,220 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:11:06,535 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:11:47,479 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:11:47,786 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:12:28,737 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:12:29,050 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:13:10,002 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:13:10,309 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:13:51,264 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:13:51,573 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:14:32,521 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:14:32,837 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:15:13,776 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:15:14,082 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:15:55,040 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:15:55,346 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:16:36,304 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:16:36,616 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:17:17,566 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:17:17,873 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:17:58,818 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:17:59,126 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:18:40,074 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:18:40,377 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:19:21,325 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:19:21,639 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:20:02,578 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:20:02,886 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:20:43,837 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:20:44,143 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:21:25,102 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:21:25,408 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:22:06,368 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:22:06,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:22:47,619 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:22:47,926 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:23:28,875 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:23:29,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:24:10,131 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:24:10,437 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:24:51,393 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:24:51,708 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:25:32,644 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:25:32,950 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:26:13,910 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:26:14,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:26:55,173 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:26:55,479 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:27:36,426 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:27:36,731 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:28:17,692 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:28:17,999 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:28:58,958 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:28:59,271 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:29:40,223 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:29:40,530 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:30:21,485 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:30:21,807 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:31:02,739 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:31:03,068 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:31:44,005 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:31:44,327 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:32:25,266 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:32:25,583 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:33:06,520 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:33:06,843 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:33:47,783 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:33:48,090 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:34:29,049 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:34:29,355 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:35:10,305 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:35:10,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:35:51,567 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:35:51,876 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:36:32,829 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:36:33,135 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:37:14,090 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:37:14,471 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:37:55,345 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:37:55,650 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:38:36,601 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:38:36,907 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:39:17,861 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:39:18,173 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:39:59,113 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:39:59,420 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:40:40,375 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:40:40,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:41:21,636 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:41:21,957 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:42:02,899 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:42:03,216 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-02 12:42:44,165 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 190. +2024-12-02 12:42:44,483 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-06 07:12:59,675 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported +2024-12-06 07:12:59,675 - asyncio - DEBUG - Using proactor: IocpProactor +2024-12-06 07:12:59,677 - discord.client - INFO - logging in using static token +2024-12-06 07:13:00,196 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-12-06 07:13:00,196 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-12-06 07:13:00,196 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-12-06 07:13:00,732 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-12-06 07:13:00,732 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-12-06 07:13:00,733 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGO is your reliable companion for a thriving developer community. Join the Indie Hub and get started!', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': False, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 19439872, 'tags': ['Programming', 'Community', 'productivity', 'Moderation', 'fun'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 7, 'approximate_user_install_count': 1, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 1, 'discovery_eligibility_flags': 3071, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-12-06 07:13:00,733 - IndieGOBot - INFO - Starting bot setup... +2024-12-06 07:13:00,734 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors +2024-12-06 07:13:00,746 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base +2024-12-06 07:13:00,754 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help +2024-12-06 07:13:00,761 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-12-06 07:13:00,773 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-12-06 07:13:00,773 - IndieGOBot - ERROR - Error details: Extension 'cogs.general' raised an error: TypeError: unsupported parameter kind in callback: VAR_POSITIONAL +2024-12-06 07:13:00,774 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 951, in _load_from_module_spec + spec.loader.exec_module(lib) # type: ignore + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "", line 995, in exec_module + File "", line 488, in _call_with_frames_removed + File "C:\Users\Drago\Desktop\IndieGo\cogs\general.py", line 43, in + class General(commands.Cog): + File "C:\Users\Drago\Desktop\IndieGo\cogs\general.py", line 94, in General + @app_commands.command(name="choose", description="Choose between multiple options") + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\commands.py", line 2060, in decorator + return Command( + ^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\commands.py", line 687, in __init__ + self._params: Dict[str, CommandParameter] = _extract_parameters_from_callback(callback, callback.__globals__) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\commands.py", line 383, in _extract_parameters_from_callback + param = annotation_to_parameter(resolved, parameter) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\transformers.py", line 868, in annotation_to_parameter + raise TypeError(f'unsupported parameter kind in callback: {parameter.kind!s}') +TypeError: unsupported parameter kind in callback: VAR_POSITIONAL + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 64, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 954, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.general' raised an error: TypeError: unsupported parameter kind in callback: VAR_POSITIONAL + +2024-12-06 07:13:00,774 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-12-06 07:13:00,784 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-12-06 07:13:00,791 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-12-06 07:13:00,802 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-12-06 07:13:00,802 - IndieGOBot - ERROR - Error details: Extension 'cogs.tickets' raised an error: ImportError: cannot import name 'TICKET_CATEGORY_ID' from 'config' (C:\Users\Drago\Desktop\IndieGo\config.py) +2024-12-06 07:13:00,803 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 951, in _load_from_module_spec + spec.loader.exec_module(lib) # type: ignore + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "", line 995, in exec_module + File "", line 488, in _call_with_frames_removed + File "C:\Users\Drago\Desktop\IndieGo\cogs\tickets.py", line 5, in + from config import TICKET_CATEGORY_ID, STAFF_ROLE_ID, LOG_CHANNEL_ID +ImportError: cannot import name 'TICKET_CATEGORY_ID' from 'config' (C:\Users\Drago\Desktop\IndieGo\config.py) + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 64, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 954, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.tickets' raised an error: ImportError: cannot import name 'TICKET_CATEGORY_ID' from 'config' (C:\Users\Drago\Desktop\IndieGo\config.py) + +2024-12-06 07:13:00,804 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-12-06 07:13:00,812 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-12-06 07:13:00,827 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-12-06 07:13:04,245 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help +2024-12-06 07:13:04,252 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod +2024-12-06 07:13:04,263 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction +2024-12-06 07:13:04,579 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel +2024-12-06 07:13:04,612 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-12-06 07:13:04,612 - IndieGOBot - ERROR - Error details: Extension 'cogs.voice_channel' raised an error: ImportError: cannot import name 'speech_v1' from 'google.cloud' (unknown location) +2024-12-06 07:13:04,613 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 951, in _load_from_module_spec + spec.loader.exec_module(lib) # type: ignore + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "", line 995, in exec_module + File "", line 488, in _call_with_frames_removed + File "C:\Users\Drago\Desktop\IndieGo\cogs\voice_channel.py", line 10, in + from google.cloud import speech_v1 +ImportError: cannot import name 'speech_v1' from 'google.cloud' (unknown location) + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 64, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 954, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.voice_channel' raised an error: ImportError: cannot import name 'speech_v1' from 'google.cloud' (unknown location) + +2024-12-06 07:13:04,613 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr +2024-12-06 07:13:04,625 - IndieGOBot - DEBUG - Attempting to load extension: cogs.redditcogs.interactions +2024-12-06 07:13:04,629 - IndieGOBot - ERROR - Error type: ModuleNotFoundError +2024-12-06 07:13:04,629 - IndieGOBot - ERROR - Error details: No module named 'cogs.redditcogs' +2024-12-06 07:13:04,629 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\Desktop\IndieGo\main.py", line 64, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1025, in load_extension + spec = importlib.util.find_spec(name) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "", line 91, in find_spec +ModuleNotFoundError: No module named 'cogs.redditcogs' + +2024-12-06 07:13:04,630 - IndieGOBot - INFO - Syncing command tree... +2024-12-06 07:13:05,184 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"help","description":"Show help information with a dropdown menu","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ask","description":"Ask a question to the AI assistant","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"warn","description":"Warn a member","type":1,"options":[{"type":6,"name":"member","description":"The member to warn","required":true},{"type":3,"name":"reason","description":"The reason for the warning","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"automod_setup","description":"Set up AutoMod in the server","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"add_bad_word","description":"Add a bad word to the AutoMod filter","type":1,"options":[{"type":3,"name":"word","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"remove_bad_word","description":"Remove a bad word from the AutoMod filter","type":1,"options":[{"type":3,"name":"word","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 +2024-12-06 07:13:05,184 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). +2024-12-06 07:13:05,185 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1314406734508327023', 'application_id': '1304755116255088670', 'version': '1314406734642811000', 'default_member_permissions': None, 'type': 1, 'name': 'help', 'name_localizations': None, 'description': 'Show help information with a dropdown menu', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734508327024', 'application_id': '1304755116255088670', 'version': '1314406734730756188', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327025', 'application_id': '1304755116255088670', 'version': '1314406734730756189', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327026', 'application_id': '1304755116255088670', 'version': '1314406734730756190', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327027', 'application_id': '1304755116255088670', 'version': '1314406734730756191', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327028', 'application_id': '1304755116255088670', 'version': '1314406734730756192', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734508327029', 'application_id': '1304755116255088670', 'version': '1314406734730756193', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734508327030', 'application_id': '1304755116255088670', 'version': '1314406734730756194', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734508327031', 'application_id': '1304755116255088670', 'version': '1314406734730756195', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327032', 'application_id': '1304755116255088670', 'version': '1314406734730756196', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734642810991', 'application_id': '1304755116255088670', 'version': '1314406734730756197', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810992', 'application_id': '1304755116255088670', 'version': '1314406734751596575', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734642810993', 'application_id': '1304755116255088670', 'version': '1314406734751596576', 'default_member_permissions': None, 'type': 1, 'name': 'ask', 'name_localizations': None, 'description': 'Ask a question to the AI assistant', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810994', 'application_id': '1304755116255088670', 'version': '1314406734751596577', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810995', 'application_id': '1304755116255088670', 'version': '1314406734751596578', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810996', 'application_id': '1304755116255088670', 'version': '1314406734751596579', 'default_member_permissions': None, 'type': 1, 'name': 'warn', 'name_localizations': None, 'description': 'Warn a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': 'The member to warn', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': 'The reason for the warning', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810997', 'application_id': '1304755116255088670', 'version': '1314406734751596580', 'default_member_permissions': None, 'type': 1, 'name': 'automod_setup', 'name_localizations': None, 'description': 'Set up AutoMod in the server', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734642810998', 'application_id': '1304755116255088670', 'version': '1314406734751596581', 'default_member_permissions': None, 'type': 1, 'name': 'add_bad_word', 'name_localizations': None, 'description': 'Add a bad word to the AutoMod filter', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'word', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810999', 'application_id': '1304755116255088670', 'version': '1314406734751596582', 'default_member_permissions': None, 'type': 1, 'name': 'remove_bad_word', 'name_localizations': None, 'description': 'Remove a bad word from the AutoMod filter', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'word', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] +2024-12-06 07:13:05,538 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ +2024-12-06 07:13:05,538 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-c-qjzf",{"micros":0.0}]']}} +2024-12-06 07:13:05,539 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. +2024-12-06 07:13:05,836 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-06 07:13:05,933 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': 'bf87607533a26bbe29608d9de2320a7a', 'resume_gateway_url': 'wss://gateway-us-east1-c.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1292805470117171231'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-c-qjzf",{"micros":95461,"calls":["id_created",{"micros":1327,"calls":[]},"session_lookup_time",{"micros":658,"calls":[]},"session_lookup_finished",{"micros":15,"calls":[]},"discord-sessions-prd-1-86",{"micros":93013,"calls":["start_session",{"micros":41896,"calls":["discord-api-rpc-6c7688bf65-7n8xr",{"micros":37408,"calls":["get_user",{"micros":5433},"get_guilds",{"micros":2743},"send_scheduled_deletion_message",{"micros":6},"guild_join_requests",{"micros":493},"authorized_ip_coro",{"micros":5}]}]},"starting_guild_connect",{"micros":78,"calls":[]},"presence_started",{"micros":17006,"calls":[]},"guilds_started",{"micros":143,"calls":[]},"guilds_connect",{"micros":2,"calls":[]},"presence_connect",{"micros":33856,"calls":[]},"connect_finished",{"micros":33863,"calls":[]},"build_ready",{"micros":24,"calls":[]},"clean_ready",{"micros":0,"calls":[]},"optimize_ready",{"micros":1,"calls":[]},"split_ready",{"micros":0,"calls":[]}]}]}]']}} +2024-12-06 07:13:05,933 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:05,934 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: bf87607533a26bbe29608d9de2320a7a). +2024-12-06 07:13:05,934 - discord.client - DEBUG - Dispatching event connect +2024-12-06 07:13:05,940 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:05,948 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:06,006 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:06,047 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:06,316 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:06,352 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:06,370 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:06,380 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 9, 'op': 0, 'd': {'nonce': '6f73c54a359e4c5e7c65297a89406295', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-06 07:13:06,380 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:06,381 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. +2024-12-06 07:13:06,769 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 10, 'op': 0, 'd': {'nonce': '1be6c0e80973aefd8d97a32e592e51e5', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-06 07:13:06,770 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:06,770 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. +2024-12-06 07:13:07,246 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 11, 'op': 0, 'd': {'nonce': '5616ae4b830a808fee4051c2bd66920c', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-06 07:13:07,247 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:07,247 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. +2024-12-06 07:13:07,749 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 12, 'op': 0, 'd': {'nonce': '78ac02e28e5596f464d482afc3cbace4', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-06 07:13:07,749 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:07,750 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. +2024-12-06 07:13:08,381 - discord.client - DEBUG - Dispatching event guild_available +2024-12-06 07:13:08,381 - discord.client - DEBUG - Dispatching event guild_available +2024-12-06 07:13:08,381 - discord.client - DEBUG - Dispatching event guild_available +2024-12-06 07:13:08,381 - discord.client - DEBUG - Dispatching event guild_available +2024-12-06 07:13:08,942 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:08,952 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-06 07:13:09,207 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:09,218 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-06 07:13:09,461 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:09,468 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-06 07:13:09,722 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:09,729 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-06 07:13:09,967 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:09,985 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-06 07:13:10,009 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:10,015 - discord.state - DEBUG - Processed a chunk for 142 members in guild ID 922005348670406667. +2024-12-06 07:13:10,016 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 19, 'op': 0, 'd': {'nonce': '1224f36facf51f90bf39953deebf5510', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 4194560, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'paws', 'identity_guild_id': '1177040176531378256', 'identity_enabled': True, 'badge': '5ce1e94c9b862cb052f2a19b91889b7e'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': '20e3133fd57072287d1dcc698fc2b1f0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a2998595a8c1ee02a8c67abba680037f'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd927c73f72eb117b498180ff193a065a'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'cb1c367ed0fd4af89efe07ba45bddc26'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb6bce027eecfe7643709ad90323c82b'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.uraharaa', 'public_flags': 0, 'id': '1285608593063673928', 'global_name': 'AGR!M?', 'display_name': 'AGR!M?', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'ff07d4c42304ee2da0f2c607a428e9be'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312895927908040785', '1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-06 07:13:10,017 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:10,018 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. +2024-12-06 07:13:10,018 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '5578e07a7036b6364a2caa6ef82db63b', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-06 07:13:10,019 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:10,019 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. +2024-12-06 07:13:10,019 - discord.client - DEBUG - Dispatching event guild_available +2024-12-06 07:13:10,019 - discord.client - DEBUG - Dispatching event guild_available +2024-12-06 07:13:10,019 - discord.client - DEBUG - Dispatching event guild_available +2024-12-06 07:13:10,020 - discord.client - DEBUG - Dispatching event ready +2024-12-06 07:13:10,020 - IndieGOBot - INFO - Logged in as IndieGO#9052 (ID: 1304755116255088670) +2024-12-06 07:13:10,021 - IndieGOBot - INFO - +Cog Status: +2024-12-06 07:13:10,051 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":".help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status +2024-12-06 07:13:10,051 - IndieGOBot - INFO - Bot is ready! +2024-12-06 07:13:30,881 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INTERACTION_CREATE', 's': 21, 'op': 0, 'd': {'version': 1, 'type': 2, 'token': 'aW50ZXJhY3Rpb246MTMxNDQwNjg0MjcxNzE3OTkxNDpseG5oNU1nMUVHNkpqOW5ZVHo5dVdUZDJxd05leFJyM2Zud1pQR2lyWWQ2OTdZbk9yeTJaZU9La0ZTRExRYk9OYWpWaGx4RHEySmFaNFlpMUR0OXZ0ZENkSVUwVHJjYnpxdWJPWlJ1cXU1Wml6OUxqRlRraExCemdFQ3pleVJaMg', 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'unusual_dm_activity_until': None, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'permissions': '2251799813685247', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'locale': 'en-US', 'id': '1314406842717179914', 'guild_locale': 'en-US', 'guild_id': '1292805470117171231', 'guild': {'locale': 'en-US', 'id': '1292805470117171231', 'features': ['MEMBER_VERIFICATION_GATE_ENABLED', 'NEWS', 'AUTO_MODERATION', 'COMMUNITY', 'SOUNDBOARD', 'PREVIEW_ENABLED', 'ENABLED_MODERATION_EXPERIENCE_FOR_NON_COMMUNITY']}, 'entitlements': [], 'entitlement_sku_ids': [], 'data': {'type': 1, 'name': 'help', 'id': '1314406734508327023'}, 'context': 0, 'channel_id': '1310707299177992262', 'channel': {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 44, 'permissions': '2251799813685247', 'parent_id': None, 'nsfw': False, 'name': 'codes', 'last_message_id': '1314406017546584105', 'id': '1310707299177992262', 'guild_id': '1292805470117171231', 'flags': 0}, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}, 'application_id': '1304755116255088670', 'app_permissions': '2251799813685247'}} +2024-12-06 07:13:30,882 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:30,882 - discord.client - DEBUG - Dispatching event interaction +2024-12-06 07:13:31,467 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:31,468 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:13:31,508 - discord.webhook.async_ - DEBUG - Webhook ID 1314406842717179914 with POST https://discord.com/api/v10/interactions/1314406842717179914/aW50ZXJhY3Rpb246MTMxNDQwNjg0MjcxNzE3OTkxNDpseG5oNU1nMUVHNkpqOW5ZVHo5dVdUZDJxd05leFJyM2Zud1pQR2lyWWQ2OTdZbk9yeTJaZU9La0ZTRExRYk9OYWpWaGx4RHEySmFaNFlpMUR0OXZ0ZENkSVUwVHJjYnpxdWJPWlJ1cXU1Wml6OUxqRlRraExCemdFQ3pleVJaMg/callback has returned status code 204 +2024-12-06 07:13:31,509 - discord.client - DEBUG - Dispatching event app_command_completion +2024-12-06 07:13:34,841 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:34,842 - discord.client - DEBUG - Dispatching event interaction +2024-12-06 07:13:35,349 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:35,349 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-06 07:13:35,349 - discord.client - DEBUG - Dispatching event message_edit +2024-12-06 07:13:35,358 - discord.webhook.async_ - DEBUG - Webhook ID 1314406859477614612 with POST https://discord.com/api/v10/interactions/1314406859477614612/aW50ZXJhY3Rpb246MTMxNDQwNjg1OTQ3NzYxNDYxMjp3aE41bHIwVmw4WnMycnRTaXZ0TXVtdnp3cjE5Z2RlSjlhaURoVGV5bnk1cWhFTjNxbXprTlJEcVFHdjVCc1JUaFhJNVRpTEo4cHQ0RmdXanc3NU03RVhBU2tPZHlJZmZTa1I4NTNSd2lTOW1DYWJTcHBUdkg4M250Z1pPQ0kxMw/callback has returned status code 204 +2024-12-06 07:13:41,424 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:41,424 - discord.client - DEBUG - Dispatching event interaction +2024-12-06 07:13:41,900 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:41,900 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-06 07:13:41,901 - discord.client - DEBUG - Dispatching event message_edit +2024-12-06 07:13:41,901 - discord.webhook.async_ - DEBUG - Webhook ID 1314406887101304923 with POST https://discord.com/api/v10/interactions/1314406887101304923/aW50ZXJhY3Rpb246MTMxNDQwNjg4NzEwMTMwNDkyMzo4eGVhUjlsNkprNjF6a2FvNG5vdVBpSXc5Y2Z1TnlEYVpMUWp2S0RYd2RubWU0a2tQa2FkU3BRV0xWNnhFaW9ob2p0UHA0RjJmRTlTMDZLVlFCb2NFQkxLWFRJeFdoMHBKejF6Zm5zR2VVR09GSjBVZzFpSzFrMkhxS1J0RkFZaQ/callback has returned status code 204 +2024-12-06 07:13:46,797 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 26. +2024-12-06 07:13:47,096 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-06 07:13:50,338 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 27, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:43:51.284000+00:00', 'pinned': False, 'nonce': '1314406918109790208', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314406924430872618', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.sacn', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:13:50,339 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:50,339 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:13:50,339 - discord.client - DEBUG - Dispatching event command_error +2024-12-06 07:13:50,807 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:50,808 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:13:50,820 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 29, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:43:51.764000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314406926443872317', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "sacn" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1313300507036749824', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-06 07:13:50,821 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:50,821 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:13:50,828 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"sacn\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:13:50,829 - discord.http - DEBUG - POST /channels/{channel_id}/messages has found its initial rate limit bucket hash (3df15bae86f6647dd4dfcbd5c6949480). +2024-12-06 07:13:50,829 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "sacn" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:43:51.764000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314406926443872317', 'channel_id': '1313300507036749824', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:13:50,859 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `sacn` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:13:50,862 - discord.client - ERROR - Ignoring exception in on_command_error +Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event + await coro(*args, **kwargs) + File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error + log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) + ^^^^^^^^^^^^^^^ +UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value +2024-12-06 07:13:53,686 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 30, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:43:54.660000+00:00', 'pinned': False, 'nonce': '1314406932664025088', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314406938590838804', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.scan', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:13:53,686 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:53,686 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:13:53,687 - discord.client - DEBUG - Dispatching event command +2024-12-06 07:13:54,099 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 31, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:43:55.015000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314406940079685673', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': 'Please attach an image to scan.', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:13:54,100 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:54,100 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:13:54,128 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages with {"content":"Please attach an image to scan.","components":[],"tts":false} has returned 200 +2024-12-06 07:13:54,129 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages has received {'type': 0, 'content': 'Please attach an image to scan.', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-06T01:43:55.015000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314406940079685673', 'channel_id': '1310707299177992262', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:13:54,129 - discord.client - DEBUG - Dispatching event command_completion +2024-12-06 07:13:54,581 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 32, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:43:55.542000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314406942290219098', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'scan was executed by <@950609706760691752>.', 'content_scan_version': 0, 'color': 3066993}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1313300507036749824', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-06 07:13:54,582 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:54,582 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:13:54,585 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages with {"embeds":[{"color":3066993,"type":"rich","description":"scan was executed by <@950609706760691752>.","title":"Command Executed"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:13:54,586 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'scan was executed by <@950609706760691752>.', 'color': 3066993, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:43:55.542000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314406942290219098', 'channel_id': '1313300507036749824', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:13:57,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 33, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733449438, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1310707299177992262', 'guild_id': '1292805470117171231'}} +2024-12-06 07:13:57,728 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:13:57,728 - discord.client - DEBUG - Dispatching event typing +2024-12-06 07:13:57,728 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-06 07:14:10,599 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 34, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:11.466000+00:00', 'pinned': False, 'nonce': '1314406995083657216', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407009080311940', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.scan', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [{'width': 1500, 'url': 'https://cdn.discordapp.com/attachments/1310707299177992262/1314407008870600734/2bqXuBq.JPG?ex=6753a86b&is=675256eb&hm=7e0f5fb5ad5a9d5e32754a31d39141d23c6b64b2f9e38ecd0c96eb8ced26b30c&', 'size': 35705, 'proxy_url': 'https://media.discordapp.net/attachments/1310707299177992262/1314407008870600734/2bqXuBq.JPG?ex=6753a86b&is=675256eb&hm=7e0f5fb5ad5a9d5e32754a31d39141d23c6b64b2f9e38ecd0c96eb8ced26b30c&', 'placeholder_version': 1, 'placeholder': 'xPcJDwI4hoiId4dwnHeH6EiJo3r4vIcP', 'id': '1314407008870600734', 'height': 1500, 'filename': '2bqXuBq.JPG', 'content_type': 'image/jpeg', 'content_scan_version': 1}], 'guild_id': '1292805470117171231'}} +2024-12-06 07:14:10,599 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:14:10,599 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:14:10,601 - discord.client - DEBUG - Dispatching event command +2024-12-06 07:14:11,475 - pytesseract - DEBUG - ['tesseract', 'C:\\Users\\Drago\\AppData\\Local\\Temp\\tess_8bpwgoib_input.JPEG', 'C:\\Users\\Drago\\AppData\\Local\\Temp\\tess_8bpwgoib', 'txt'] +2024-12-06 07:14:12,061 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 35, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:12.931000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407015224836118', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': "An error occurred while processing the image: tesseract is not installed or it's not in your PATH. See README file for more information.", 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:14:12,062 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:14:12,062 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:14:12,069 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages with {"content":"An error occurred while processing the image: tesseract is not installed or it's not in your PATH. See README file for more information.","components":[],"tts":false} has returned 200 +2024-12-06 07:14:12,070 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages has received {'type': 0, 'content': "An error occurred while processing the image: tesseract is not installed or it's not in your PATH. See README file for more information.", 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [], 'timestamp': '2024-12-06T01:44:12.931000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407015224836118', 'channel_id': '1310707299177992262', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:14:12,070 - discord.client - DEBUG - Dispatching event command_completion +2024-12-06 07:14:12,500 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages with {"embeds":[{"color":3066993,"type":"rich","description":"scan was executed by <@950609706760691752>.","title":"Command Executed"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:14:12,500 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'scan was executed by <@950609706760691752>.', 'color': 3066993, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:44:13.461000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407017447686174', 'channel_id': '1313300507036749824', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:14:12,501 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 36, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:13.461000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407017447686174', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'scan was executed by <@950609706760691752>.', 'content_scan_version': 0, 'color': 3066993}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1313300507036749824', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-06 07:14:12,501 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:14:12,501 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:14:28,056 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 36. +2024-12-06 07:14:28,351 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-06 07:14:33,673 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 37, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733449474, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1310707299177992262', 'guild_id': '1292805470117171231'}} +2024-12-06 07:14:33,674 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:14:33,674 - discord.client - DEBUG - Dispatching event typing +2024-12-06 07:14:33,674 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-06 07:14:34,485 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 38, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:35.441000+00:00', 'pinned': False, 'nonce': '1314407103699353600', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407109638754344', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.joke', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:14:34,485 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:14:34,485 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:14:34,485 - discord.client - DEBUG - Dispatching event command +2024-12-06 07:14:34,961 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 39, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:35.928000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407111681249360', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'content_scan_version': 0, 'color': 15105570}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:14:34,961 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:14:34,961 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:14:34,996 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages with {"embeds":[{"color":15105570,"type":"rich","description":"Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.","title":"Programming Joke"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:14:34,996 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1310707299177992262/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Programming Joke', 'description': "Why do Python programmers have low self-esteem? Because they're constantly comparing their self to others.", 'color': 15105570, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:44:35.928000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407111681249360', 'channel_id': '1310707299177992262', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:14:34,996 - discord.client - DEBUG - Dispatching event command_completion +2024-12-06 07:14:35,463 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 40, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:44:36.405000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1308480302988918797'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T17:13:34.708134+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407113681797180', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'joke was executed by <@950609706760691752>.', 'content_scan_version': 0, 'color': 3066993}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1313300507036749824', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '922005348670406667'}} +2024-12-06 07:14:35,463 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:14:35,464 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:14:35,465 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages with {"embeds":[{"color":3066993,"type":"rich","description":"joke was executed by <@950609706760691752>.","title":"Command Executed"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:14:35,465 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1313300507036749824/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'joke was executed by <@950609706760691752>.', 'color': 3066993, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:44:36.405000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407113681797180', 'channel_id': '1313300507036749824', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:15:02,696 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'INTERACTION_CREATE', 's': 41, 'op': 0, 'd': {'version': 1, 'type': 2, 'token': 'aW50ZXJhY3Rpb246MTMxNDQwNzIyNzg3MTg1NDcyMzpqQnU5a09jdWNrWHF0MWdSTUo3UXRFdXR6WXJJU3ViR0R1Qm9rYnFSTUJFSThjNFFlNjdvZDkzajhSUGJsendEQjRKYUZCN3Y4bkU4N3FYTm9MZHlUZUk3QVl4WXNSaXdFZGdpWWpvU0w3U0JoODhqaGFOTDVFRldJYWE1MnBaTg', 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'unusual_dm_activity_until': None, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'permissions': '2251799813685247', 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'locale': 'en-US', 'id': '1314407227871854723', 'guild_locale': 'en-US', 'guild_id': '1292805470117171231', 'guild': {'locale': 'en-US', 'id': '1292805470117171231', 'features': ['AUTO_MODERATION', 'SOUNDBOARD', 'PREVIEW_ENABLED', 'COMMUNITY', 'NEWS', 'ENABLED_MODERATION_EXPERIENCE_FOR_NON_COMMUNITY', 'MEMBER_VERIFICATION_GATE_ENABLED']}, 'entitlements': [], 'entitlement_sku_ids': [], 'data': {'type': 1, 'name': 'setup_logs', 'id': '1314406734508327030'}, 'context': 0, 'channel_id': '1310707299177992262', 'channel': {'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 44, 'permissions': '2251799813685247', 'parent_id': None, 'nsfw': False, 'name': 'codes', 'last_message_id': '1314407111681249360', 'id': '1310707299177992262', 'guild_id': '1292805470117171231', 'flags': 0}, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}, 'application_id': '1304755116255088670', 'app_permissions': '2251799813685247'}} +2024-12-06 07:15:02,697 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:02,697 - discord.client - DEBUG - Dispatching event interaction +2024-12-06 07:15:03,269 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_CREATE', 's': 42, 'op': 0, 'd': {'version': 1733449504237, 'type': 4, 'position': 11, 'permission_overwrites': [], 'parent_id': None, 'name': 'Server Logging', 'id': '1314407230375858356', 'guild_id': '1292805470117171231', 'flags': 0}} +2024-12-06 07:15:03,269 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:03,269 - discord.client - DEBUG - Dispatching event guild_channel_create +2024-12-06 07:15:03,302 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 43, 'op': 0, 'd': {'user_id': '1304755116255088670', 'target_id': '1314407230375858356', 'id': '1314407230375858357', 'changes': [{'new_value': 'Server Logging', 'key': 'name'}, {'new_value': 4, 'key': 'type'}, {'new_value': [], 'key': 'permission_overwrites'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 10, 'guild_id': '1292805470117171231'}} +2024-12-06 07:15:03,302 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:03,302 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-06 07:15:03,332 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels with {"type":4,"name":"Server Logging","permission_overwrites":[]} has returned 201 +2024-12-06 07:15:03,333 - discord.http - DEBUG - POST /guilds/{guild_id}/channels has found its initial rate limit bucket hash (be56019ae011689ff5baf218062aacf5). +2024-12-06 07:15:03,333 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels has received {'id': '1314407230375858356', 'type': 4, 'flags': 0, 'guild_id': '1292805470117171231', 'name': 'Server Logging', 'parent_id': None, 'position': 11, 'permission_overwrites': []} +2024-12-06 07:15:03,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_CREATE', 's': 44, 'op': 0, 'd': {'version': 1733449504753, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 50, 'permission_overwrites': [], 'parent_id': '1314407230375858356', 'nsfw': False, 'name': 'admin-logs', 'last_message_id': None, 'id': '1314407232577867868', 'guild_id': '1292805470117171231', 'flags': 0}} +2024-12-06 07:15:03,782 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:03,782 - discord.client - DEBUG - Dispatching event guild_channel_create +2024-12-06 07:15:03,782 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 45, 'op': 0, 'd': {'user_id': '1304755116255088670', 'target_id': '1314407232577867868', 'id': '1314407232577867869', 'changes': [{'new_value': 'admin-logs', 'key': 'name'}, {'new_value': 0, 'key': 'type'}, {'new_value': [], 'key': 'permission_overwrites'}, {'new_value': False, 'key': 'nsfw'}, {'new_value': 0, 'key': 'rate_limit_per_user'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 10, 'guild_id': '1292805470117171231'}} +2024-12-06 07:15:03,783 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:03,783 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-06 07:15:03,828 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels with {"type":0,"name":"admin-logs","parent_id":1314407230375858356,"permission_overwrites":[]} has returned 201 +2024-12-06 07:15:03,829 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels has received {'id': '1314407232577867868', 'type': 0, 'last_message_id': None, 'flags': 0, 'guild_id': '1292805470117171231', 'name': 'admin-logs', 'parent_id': '1314407230375858356', 'rate_limit_per_user': 0, 'topic': None, 'position': 50, 'permission_overwrites': [], 'nsfw': False} +2024-12-06 07:15:04,344 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_CREATE', 's': 46, 'op': 0, 'd': {'version': 1733449505302, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 51, 'permission_overwrites': [], 'parent_id': '1314407230375858356', 'nsfw': False, 'name': 'server-logs', 'last_message_id': None, 'id': '1314407234599522335', 'guild_id': '1292805470117171231', 'flags': 0}} +2024-12-06 07:15:04,345 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:04,345 - discord.client - DEBUG - Dispatching event guild_channel_create +2024-12-06 07:15:04,347 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 47, 'op': 0, 'd': {'user_id': '1304755116255088670', 'target_id': '1314407234599522335', 'id': '1314407234599522336', 'changes': [{'new_value': 'server-logs', 'key': 'name'}, {'new_value': 0, 'key': 'type'}, {'new_value': [], 'key': 'permission_overwrites'}, {'new_value': False, 'key': 'nsfw'}, {'new_value': 0, 'key': 'rate_limit_per_user'}, {'new_value': 0, 'key': 'flags'}], 'action_type': 10, 'guild_id': '1292805470117171231'}} +2024-12-06 07:15:04,347 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:04,347 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-06 07:15:04,435 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels with {"type":0,"name":"server-logs","parent_id":1314407230375858356,"permission_overwrites":[]} has returned 201 +2024-12-06 07:15:04,436 - discord.http - DEBUG - POST https://discord.com/api/v10/guilds/1292805470117171231/channels has received {'id': '1314407234599522335', 'type': 0, 'last_message_id': None, 'flags': 0, 'guild_id': '1292805470117171231', 'name': 'server-logs', 'parent_id': '1314407230375858356', 'rate_limit_per_user': 0, 'topic': None, 'position': 51, 'permission_overwrites': [], 'nsfw': False} +2024-12-06 07:15:04,882 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 48, 'op': 0, 'd': {'webhook_id': '1304755116255088670', 'type': 20, 'tts': False, 'timestamp': '2024-12-06T01:45:05.798000+00:00', 'position': 0, 'pinned': False, 'nonce': '1314407221706096640', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'interaction_metadata': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'setup_logs', 'id': '1314407227871854723', 'command_type': 1, 'authorizing_integration_owners': {'1': '950609706760691752', '0': '1292805470117171231'}}, 'interaction': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'type': 2, 'name': 'setup_logs', 'id': '1314407227871854723'}, 'id': '1314407236964978729', 'flags': 64, 'embeds': [], 'edited_timestamp': None, 'content': 'Logging channels setup successfully.', 'components': [], 'channel_id': '1310707299177992262', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'application_id': '1304755116255088670'}} +2024-12-06 07:15:04,883 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:04,883 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:15:04,896 - discord.webhook.async_ - DEBUG - Webhook ID 1314407227871854723 with POST https://discord.com/api/v10/interactions/1314407227871854723/aW50ZXJhY3Rpb246MTMxNDQwNzIyNzg3MTg1NDcyMzpqQnU5a09jdWNrWHF0MWdSTUo3UXRFdXR6WXJJU3ViR0R1Qm9rYnFSTUJFSThjNFFlNjdvZDkzajhSUGJsendEQjRKYUZCN3Y4bkU4N3FYTm9MZHlUZUk3QVl4WXNSaXdFZGdpWWpvU0w3U0JoODhqaGFOTDVFRldJYWE1MnBaTg/callback has returned status code 204 +2024-12-06 07:15:04,896 - discord.client - DEBUG - Dispatching event app_command_completion +2024-12-06 07:15:08,312 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_UPDATE', 's': 49, 'op': 0, 'd': {'version': 1733449509283, 'type': 4, 'position': 11, 'permission_overwrites': [{'type': 0, 'id': '1293087512855838722', 'deny': '377957125121', 'allow': '0'}], 'parent_id': None, 'name': 'Server Logging', 'id': '1314407230375858356', 'guild_id': '1292805470117171231', 'flags': 0}} +2024-12-06 07:15:08,312 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:08,312 - discord.client - DEBUG - Dispatching event guild_channel_update +2024-12-06 07:15:08,319 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 50, 'op': 0, 'd': {'user_id': '536991182035746816', 'target_id': '1314407230375858356', 'reason': 'Wick sanitizing the channel after finding bypasses.', 'options': {'type': '0', 'role_name': 'Quarantine', 'id': '1293087512855838722'}, 'id': '1314407251603095632', 'changes': [{'new_value': '1293087512855838722', 'key': 'id'}, {'new_value': 0, 'key': 'type'}, {'new_value': '0', 'key': 'allow'}, {'new_value': '377957125121', 'key': 'deny'}], 'action_type': 13, 'guild_id': '1292805470117171231'}} +2024-12-06 07:15:08,320 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:08,320 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-06 07:15:08,648 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_UPDATE', 's': 51, 'op': 0, 'd': {'version': 1733449509602, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 50, 'permission_overwrites': [{'type': 0, 'id': '1293087512855838722', 'deny': '377957125121', 'allow': '0'}], 'parent_id': '1314407230375858356', 'nsfw': False, 'name': 'admin-logs', 'last_message_id': None, 'id': '1314407232577867868', 'guild_id': '1292805470117171231', 'flags': 0}} +2024-12-06 07:15:08,648 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:08,648 - discord.client - DEBUG - Dispatching event guild_channel_update +2024-12-06 07:15:08,676 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 52, 'op': 0, 'd': {'user_id': '536991182035746816', 'target_id': '1314407232577867868', 'reason': 'Wick sanitizing the channel after finding bypasses.', 'options': {'type': '0', 'role_name': 'Quarantine', 'id': '1293087512855838722'}, 'id': '1314407252697808907', 'changes': [{'new_value': '1293087512855838722', 'key': 'id'}, {'new_value': 0, 'key': 'type'}, {'new_value': '0', 'key': 'allow'}, {'new_value': '377957125121', 'key': 'deny'}], 'action_type': 13, 'guild_id': '1292805470117171231'}} +2024-12-06 07:15:08,676 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:08,676 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-06 07:15:08,831 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'CHANNEL_UPDATE', 's': 53, 'op': 0, 'd': {'version': 1733449509807, 'type': 0, 'topic': None, 'rate_limit_per_user': 0, 'position': 51, 'permission_overwrites': [{'type': 0, 'id': '1293087512855838722', 'deny': '377957125121', 'allow': '0'}], 'parent_id': '1314407230375858356', 'nsfw': False, 'name': 'server-logs', 'last_message_id': None, 'id': '1314407234599522335', 'guild_id': '1292805470117171231', 'flags': 0}} +2024-12-06 07:15:08,831 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:08,831 - discord.client - DEBUG - Dispatching event guild_channel_update +2024-12-06 07:15:08,847 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 54, 'op': 0, 'd': {'user_id': '536991182035746816', 'target_id': '1314407234599522335', 'reason': 'Wick sanitizing the channel after finding bypasses.', 'options': {'type': '0', 'role_name': 'Quarantine', 'id': '1293087512855838722'}, 'id': '1314407253809434668', 'changes': [{'new_value': '1293087512855838722', 'key': 'id'}, {'new_value': 0, 'key': 'type'}, {'new_value': '0', 'key': 'allow'}, {'new_value': '377957125121', 'key': 'deny'}], 'action_type': 13, 'guild_id': '1292805470117171231'}} +2024-12-06 07:15:08,847 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:08,847 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-06 07:15:09,315 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 54. +2024-12-06 07:15:09,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-06 07:15:17,398 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_DELETE', 's': 55, 'op': 0, 'd': {'id': '1313300577555578890', 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-06 07:15:17,398 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:17,399 - discord.client - DEBUG - Dispatching event raw_message_delete +2024-12-06 07:15:48,367 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 56, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733449549, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-06 07:15:48,368 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:48,368 - discord.client - DEBUG - Dispatching event typing +2024-12-06 07:15:48,368 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-06 07:15:49,725 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 57, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:45:50.603000+00:00', 'pinned': False, 'nonce': '1314407419245232128', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407424890896415', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.about', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:15:49,726 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:49,726 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:15:49,726 - discord.client - DEBUG - Dispatching event command_error +2024-12-06 07:15:50,186 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 58, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:45:51.096000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407426958557317', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "about" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:15:50,187 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:50,187 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:15:50,223 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:15:50,223 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:15:50,574 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 59. +2024-12-06 07:15:50,864 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-06 07:15:53,348 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `about` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:15:53,350 - discord.client - ERROR - Ignoring exception in on_command_error +Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event + await coro(*args, **kwargs) + File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error + log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) + ^^^^^^^^^^^^^^^ +UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value +2024-12-06 07:15:54,169 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"about\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:15:54,170 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "about" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:45:51.096000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407426958557317', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:16:23,198 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 60, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:24.082000+00:00', 'pinned': False, 'nonce': '1314407559607615488', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407565312000173', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.ping', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:23,198 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:23,199 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:23,199 - discord.client - DEBUG - Dispatching event command_error +2024-12-06 07:16:23,723 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 61, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:24.631000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407567614541898', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "ping" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:23,723 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:23,723 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:23,742 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"ping\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:23,743 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "ping" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:24.631000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407567614541898', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:16:24,559 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:24,559 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:24,652 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `ping` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:24,654 - discord.client - ERROR - Ignoring exception in on_command_error +Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event + await coro(*args, **kwargs) + File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error + log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) + ^^^^^^^^^^^^^^^ +UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value +2024-12-06 07:16:27,885 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 63, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:28.856000+00:00', 'pinned': False, 'nonce': '1314407579098546176', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407585335476267', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.serverinfo', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:27,886 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:27,886 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:27,886 - discord.client - DEBUG - Dispatching event command_error +2024-12-06 07:16:28,291 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 64, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:29.246000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407586971385998', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "serverinfo" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:28,291 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:28,291 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:28,302 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"serverinfo\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:28,302 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "serverinfo" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:29.246000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407586971385998', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:16:28,310 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:28,311 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:28,343 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `serverinfo` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:28,345 - discord.client - ERROR - Ignoring exception in on_command_error +Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event + await coro(*args, **kwargs) + File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error + log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) + ^^^^^^^^^^^^^^^ +UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value +2024-12-06 07:16:31,826 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 65. +2024-12-06 07:16:32,117 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-06 07:16:33,579 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 66, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:34.482000+00:00', 'pinned': False, 'nonce': '1314407599533195264', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407608932630540', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.help', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:33,580 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:33,580 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:33,580 - discord.client - DEBUG - Dispatching event command +2024-12-06 07:16:34,008 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:34,008 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:34,030 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Select a category below to view specific commands"},"fields":[{"inline":false,"name":"Prefix Commands","value":"Use . before commands (e.g. .help)"},{"inline":false,"name":"Slash Commands","value":"Use / to access slash commands"}],"color":3447003,"type":"rich","description":"Select a category from the dropdown menu below to see available commands.","title":"IndieGO Bot Help"}],"content":null,"components":[{"type":1,"components":[{"type":3,"custom_id":"2436ae955fdb2f644fa28f32848bc9b5","min_values":1,"max_values":1,"disabled":false,"placeholder":"Choose a category...","options":[{"label":"General","value":"General","default":false,"emoji":{"id":null,"name":"\ud83e\udd16"},"description":"General bot commands"},{"label":"Moderation","value":"Moderation","default":false,"emoji":{"id":null,"name":"\ud83d\udee1\ufe0f"},"description":"Moderation commands"},{"label":"Fun","value":"Fun","default":false,"emoji":{"id":null,"name":"\ud83c\udfae"},"description":"Fun commands"},{"label":"AI Assistant","value":"AI Assistant","default":false,"emoji":{"id":null,"name":"\ud83e\udde0"},"description":"AI-powered commands"},{"label":"Coding","value":"Coding","default":false,"emoji":{"id":null,"name":"\ud83d\udcbb"},"description":"Programming help commands"},{"label":"Reddit","value":"Reddit","default":false,"emoji":{"id":null,"name":"\ud83d\udd17"},"description":"Reddit commands"},{"label":"AutoMod","value":"AutoMod","default":false,"emoji":{"id":null,"name":"\ud83d\udd12"},"description":"AutoMod commands"},{"label":"DM Interaction","value":"DM Interaction","default":false,"emoji":{"id":null,"name":"\u2709\ufe0f"},"description":"DM interaction commands"},{"label":"Logging","value":"Logging","default":false,"emoji":{"id":null,"name":"\ud83d\udcdc"},"description":"Logging commands"},{"label":"Tickets","value":"Tickets","default":false,"emoji":{"id":null,"name":"\ud83c\udfab"},"description":"Ticketing commands"},{"label":"Voice","value":"Voice","default":false,"emoji":{"id":null,"name":"\ud83d\udd0a"},"description":"Voice channel commands"},{"label":"OCR","value":"OCR","default":false,"emoji":{"id":null,"name":"\ud83d\udcc4"},"description":"OCR commands"}]}]}],"tts":false} has returned 200 +2024-12-06 07:16:34,036 - discord.client - DEBUG - Dispatching event command_completion +2024-12-06 07:16:34,462 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 68, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:35.424000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407612883665036', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'help was executed by <@950609706760691752>.', 'content_scan_version': 0, 'color': 3066993}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:34,463 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:34,463 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:34,507 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":3066993,"type":"rich","description":"help was executed by <@950609706760691752>.","title":"Command Executed"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:34,507 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Executed', 'description': 'help was executed by <@950609706760691752>.', 'color': 3066993, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:35.424000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407612883665036', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:16:38,201 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:38,202 - discord.client - DEBUG - Dispatching event interaction +2024-12-06 07:16:38,623 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:38,623 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-06 07:16:38,623 - discord.client - DEBUG - Dispatching event message_edit +2024-12-06 07:16:38,660 - discord.webhook.async_ - DEBUG - Webhook ID 1314407628344000542 with POST https://discord.com/api/v10/interactions/1314407628344000542/aW50ZXJhY3Rpb246MTMxNDQwNzYyODM0NDAwMDU0Mjo5Tk5HSEdzV21UeXhTZG1kVGxPakZ3S09Fa2JqbkhISEFyNlI1cXU4ZloxUlJHUDBJSDNwbVdMek9Qb2p2TW8xTWVpVm5lcXpFSWdoQXlNQjdtVmhKb1pnTnVyNkNqemJ4cW0zdWRkT2xZY3ZFNUxmMUlOaGF6SXVvZ1RHTm52Uw/callback has returned status code 204 +2024-12-06 07:16:41,280 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 71, 'op': 0, 'd': {'user': {'username': 'vi87659', 'public_flags': 0, 'id': '750762262708355122', 'global_name': '~+*EZ EIRA*+~', 'display_name': '~+*EZ EIRA*+~', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1197344326133502032', 'expires_at': None, 'asset': 'a_e90ebc0114e7bdc30353c8b11953ea41'}, 'avatar': 'ce90374e3aa2d70148cddc979a027e18'}, 'roles': ['1166279735983230976', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1170543505966370927', '1087734833318465587', '1088385891116003380', '1062251705921720411', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-31T21:23:39.626000+00:00', 'guild_id': '922005348670406667', 'flags': 106, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-06 07:16:41,280 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:41,280 - discord.client - DEBUG - Dispatching event user_update +2024-12-06 07:16:41,280 - discord.client - DEBUG - Dispatching event member_update +2024-12-06 07:16:41,691 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 72, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:42.653000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407643204554775', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar Changed', 'thumbnail': {'width': 0, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/bSYNBTrvtyW-ohMqGUHAQw61zqGFcSsmxLv6VdhI-S8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png', 'height': 0, 'flags': 0}, 'image': {'width': 0, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'height': 0, 'flags': 0}, 'description': '<@750762262708355122> changed their avatar.', 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407234599522335', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:41,691 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:41,692 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:41,738 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407234599522335/messages with {"embeds":[{"image":{"url":"https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024"},"thumbnail":{"url":"https://cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png?size=1024"},"color":3447003,"type":"rich","description":"<@750762262708355122> changed their avatar.","title":"Avatar Changed"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:41,738 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407234599522335/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Avatar Changed', 'description': '<@750762262708355122> changed their avatar.', 'color': 3447003, 'image': {'url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'width': 0, 'height': 0, 'flags': 0}, 'thumbnail': {'url': 'https://cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/bSYNBTrvtyW-ohMqGUHAQw61zqGFcSsmxLv6VdhI-S8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png', 'width': 0, 'height': 0, 'flags': 0}}], 'timestamp': '2024-12-06T01:46:42.653000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407643204554775', 'channel_id': '1314407234599522335', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:16:42,094 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 73, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:42.653000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407643204554775', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar Changed', 'thumbnail': {'width': 0, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/bSYNBTrvtyW-ohMqGUHAQw61zqGFcSsmxLv6VdhI-S8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/5be71d93aa2eb75fa660d70fb45d14f7.png', 'height': 0, 'flags': 0}, 'image': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'height': 256, 'flags': 0}, 'description': '<@750762262708355122> changed their avatar.', 'color': 3447003}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407234599522335', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:42,095 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:42,095 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-06 07:16:42,095 - discord.client - DEBUG - Dispatching event message_edit +2024-12-06 07:16:43,489 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 74, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:44.412000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1314407650582200474', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-06T01:46:42.339884+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 750762262708355122'}, 'description': '<@750762262708355122>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'name': 'vi87659', 'icon_url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-06 07:16:43,489 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:43,490 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:43,629 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_UPDATE', 's': 75, 'op': 0, 'd': {'webhook_id': '1180223854195523775', 'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:44.412000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'id': '1314407650582200474', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Avatar update', 'timestamp': '2024-12-06T01:46:42.339000+00:00', 'thumbnail': {'width': 256, 'url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024', 'proxy_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'height': 256, 'flags': 0}, 'footer': {'text': 'ID: 750762262708355122'}, 'description': '<@750762262708355122>', 'color': 4359924, 'author': {'proxy_icon_url': 'https://images-ext-1.discordapp.net/external/x0Tg_XkniPIsDGpwtLj6hrio8wc7rV0ixd5XXE0iz_8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png', 'name': 'vi87659', 'icon_url': 'https://cdn.discordapp.com/avatars/750762262708355122/ce90374e3aa2d70148cddc979a027e18.png?size=1024'}}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1173351196505944285', 'author': {'username': 'Carl-bot Logging', 'id': '1180223854195523775', 'global_name': None, 'discriminator': '0000', 'bot': True, 'avatar': '9bdbba85c24c636cf57d7e310d356fe1'}, 'attachments': [], 'application_id': '235148962103951360', 'guild_id': '922005348670406667'}} +2024-12-06 07:16:43,630 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:43,630 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-06 07:16:43,630 - discord.client - DEBUG - Dispatching event message_edit +2024-12-06 07:16:44,217 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 76, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:45.185000+00:00', 'pinned': False, 'nonce': '1314407647566364672', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407653824270347', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.profil;e', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:44,217 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:44,218 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:44,218 - discord.client - DEBUG - Dispatching event command_error +2024-12-06 07:16:44,612 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 77, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:45.580000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407655481278565', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "profil;e" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:44,612 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:44,613 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:44,642 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"profil;e\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:44,642 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "profil;e" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:45.580000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407655481278565', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:16:44,710 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:44,710 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:44,755 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `profil;e` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:44,758 - discord.client - ERROR - Ignoring exception in on_command_error +Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event + await coro(*args, **kwargs) + File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error + log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) + ^^^^^^^^^^^^^^^ +UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value +2024-12-06 07:16:47,322 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 79, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:48.288000+00:00', 'pinned': False, 'nonce': '1314407660782616576', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407666839457853', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.profile', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:47,322 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:47,323 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:47,323 - discord.client - DEBUG - Dispatching event command_error +2024-12-06 07:16:47,726 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:47,726 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:47,738 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 81, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:48.691000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407668529762435', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "profile" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:47,738 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:47,738 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:47,761 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `profile` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:47,764 - discord.client - ERROR - Ignoring exception in on_command_error +Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event + await coro(*args, **kwargs) + File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error + log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) + ^^^^^^^^^^^^^^^ +UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value +2024-12-06 07:16:47,773 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"profile\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:47,774 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "profile" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:48.691000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407668529762435', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:16:52,378 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'TYPING_START', 's': 82, 'op': 0, 'd': {'user_id': '950609706760691752', 'timestamp': 1733449613, 'member': {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'channel_id': '1292805471643766929', 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:52,378 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:52,378 - discord.client - DEBUG - Dispatching event typing +2024-12-06 07:16:52,378 - discord.client - DEBUG - Dispatching event raw_typing +2024-12-06 07:16:53,035 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 83, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:53.984000+00:00', 'pinned': False, 'nonce': '1314407684774035456', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407690729951232', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': ',support', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:53,035 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:53,036 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:58,389 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 84, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:59.347000+00:00', 'pinned': False, 'nonce': '1314407707200978944', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407713224134656', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.support', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:58,389 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:58,389 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:58,389 - discord.client - DEBUG - Dispatching event command_error +2024-12-06 07:16:58,823 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 85, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:46:59.715000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407714767638600', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "support" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:16:58,823 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:58,823 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:58,826 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:16:58,826 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:16:58,856 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"support\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:58,856 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "support" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:46:59.715000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407714767638600', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:16:58,918 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `support` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:16:58,921 - discord.client - ERROR - Ignoring exception in on_command_error +Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event + await coro(*args, **kwargs) + File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error + log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) + ^^^^^^^^^^^^^^^ +UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value +2024-12-06 07:17:01,542 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 87, 'op': 0, 'd': {'user': {'username': 'vi87659', 'public_flags': 0, 'id': '750762262708355122', 'global_name': '~+*EZ EIRA*+~', 'display_name': '~+*EZ EIRA*+~', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1217625794382401577', 'expires_at': None, 'asset': 'a_9867b1ba56601e745cfe741e6b00b835'}, 'avatar': 'ce90374e3aa2d70148cddc979a027e18'}, 'roles': ['1166279735983230976', '1062322383303749672', '1088037634695241768', '1168311263412113448', '1170543505966370927', '1087734833318465587', '1088385891116003380', '1062251705921720411', '1087734805564772412', '1168310895592611870'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-12-31T21:23:39.626000+00:00', 'guild_id': '922005348670406667', 'flags': 106, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-06 07:17:01,543 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:17:01,543 - discord.client - DEBUG - Dispatching event user_update +2024-12-06 07:17:01,543 - discord.client - DEBUG - Dispatching event member_update +2024-12-06 07:17:04,589 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 88, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:47:05.550000+00:00', 'pinned': False, 'nonce': '1314407733226635264', 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407739241529474', 'flags': 0, 'embeds': [], 'edited_timestamp': None, 'content': '.clear', 'components': [], 'channel_id': '1292805471643766929', 'author': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'discriminator': '0', 'clan': None, 'avatar_decoration_data': None, 'avatar': '5d886cd610dc9f712e24c0d5c6bc6fda'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:17:04,589 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:17:04,590 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:17:04,590 - discord.client - DEBUG - Dispatching event command_error +2024-12-06 07:17:05,013 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'MESSAGE_CREATE', 's': 89, 'op': 0, 'd': {'type': 0, 'tts': False, 'timestamp': '2024-12-06T01:47:05.924000+00:00', 'pinned': False, 'mentions': [], 'mention_roles': [], 'mention_everyone': False, 'member': {'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, 'id': '1314407740810068061', 'flags': 0, 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "clear" is not found', 'content_scan_version': 0, 'color': 15158332}], 'edited_timestamp': None, 'content': '', 'components': [], 'channel_id': '1314407232577867868', 'author': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'attachments': [], 'guild_id': '1292805470117171231'}} +2024-12-06 07:17:05,013 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:17:05,013 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:17:05,063 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages with {"embeds":[{"color":15158332,"type":"rich","description":"An error occurred: Command \"clear\" is not found","title":"Command Error"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:17:05,063 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1314407232577867868/messages has received {'type': 0, 'content': '', 'mentions': [], 'mention_roles': [], 'attachments': [], 'embeds': [{'type': 'rich', 'title': 'Command Error', 'description': 'An error occurred: Command "clear" is not found', 'color': 15158332, 'content_scan_version': 0}], 'timestamp': '2024-12-06T01:47:05.924000+00:00', 'edited_timestamp': None, 'flags': 0, 'components': [], 'id': '1314407740810068061', 'channel_id': '1314407232577867868', 'author': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'pinned': False, 'mention_everyone': False, 'tts': False} +2024-12-06 07:17:05,073 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:17:05,073 - discord.client - DEBUG - Dispatching event message +2024-12-06 07:17:05,107 - discord.http - DEBUG - POST https://discord.com/api/v10/channels/1292805471643766929/messages with {"embeds":[{"footer":{"text":"Command: .Unknown"},"color":15158332,"type":"rich","description":"**Error:** The command `clear` does not exist.\n\n**Solution:** Use `.help` to see all available commands.\n\n**Note:** Commands are case-sensitive.","title":"\u274c Command Not Found"}],"content":null,"components":[],"tts":false} has returned 200 +2024-12-06 07:17:05,109 - discord.client - ERROR - Ignoring exception in on_command_error +Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\client.py", line 449, in _run_event + await coro(*args, **kwargs) + File "C:\Users\Drago\Desktop\IndieGo\cogs\errors.py", line 88, in on_command_error + log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) + ^^^^^^^^^^^^^^^ +UnboundLocalError: cannot access local variable 'error_traceback' where it is not associated with a value +2024-12-06 07:17:13,082 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 90. +2024-12-06 07:17:13,374 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-06 07:17:54,347 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 90. +2024-12-06 07:17:54,637 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-06 07:18:35,602 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 90. +2024-12-06 07:18:35,895 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-06 07:19:01,156 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_EMOJIS_UPDATE', 's': 91, 'op': 0, 'd': {'guild_id': '1292805470117171231', 'emojis': [{'version': 1733449742032, 'roles': [], 'require_colons': True, 'name': 'IndieGO', 'managed': False, 'id': '1314408227546333194', 'available': True, 'animated': False}]}} +2024-12-06 07:19:01,157 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:19:01,157 - discord.client - DEBUG - Dispatching event guild_emojis_update +2024-12-06 07:19:01,192 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_AUDIT_LOG_ENTRY_CREATE', 's': 92, 'op': 0, 'd': {'user_id': '950609706760691752', 'target_id': '1314408227546333194', 'id': '1314408228263694348', 'changes': [{'new_value': 'IndieGO', 'key': 'name'}], 'action_type': 60, 'guild_id': '1292805470117171231'}} +2024-12-06 07:19:01,192 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-06 07:19:01,193 - discord.client - DEBUG - Dispatching event audit_log_entry_create +2024-12-06 07:19:16,854 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 92. +2024-12-06 07:19:17,154 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-06 07:19:58,105 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 92. +2024-12-06 07:19:58,399 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:28:43,754 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported +2024-12-31 16:28:43,754 - asyncio - DEBUG - Using proactor: IocpProactor +2024-12-31 16:28:43,757 - discord.client - INFO - logging in using static token +2024-12-31 16:28:44,297 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me with None has returned 200 +2024-12-31 16:28:44,297 - discord.http - DEBUG - GET /users/@me has found its initial rate limit bucket hash (78bb8553d9352a5a2f89f9def401287a). +2024-12-31 16:28:44,297 - discord.http - DEBUG - GET https://discord.com/api/v10/users/@me has received {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None, 'mfa_enabled': True, 'locale': 'en-US', 'premium_type': 0, 'email': None, 'verified': True, 'bio': ''} +2024-12-31 16:28:44,801 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me with None has returned 200 +2024-12-31 16:28:44,801 - discord.http - DEBUG - GET /oauth2/applications/@me has found its initial rate limit bucket hash (d28a133af187e91d71d96a223467ce49). +2024-12-31 16:28:44,802 - discord.http - DEBUG - GET https://discord.com/api/v10/oauth2/applications/@me has received {'id': '1304755116255088670', 'name': 'IndieGo', 'icon': '104f5b1c25bc15d397d1a10a09e33aed', 'description': 'IndieGo is a powerful, all-in-one Discord bot designed for developers. It offers moderation tools, ticket creation, and coding assistance, along with fun utilities. Whether you need help with code, server management, or just want to have fun, IndieGo is your reliable companion for a thriving developer community. Join the Indie Hub and get started!\nSupport Server : https://discord.gg/9bPsjgnJ5v', 'type': None, 'bot': {'id': '1304755116255088670', 'username': 'IndieGO', 'avatar': '104f5b1c25bc15d397d1a10a09e33aed', 'discriminator': '9052', 'public_flags': 65536, 'flags': 65536, 'bot': True, 'banner': '196a0aca7e55b8c4030d57e4aa5ff4b3', 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'summary': '', 'is_monetized': False, 'is_verified': True, 'is_discoverable': True, 'guild_id': '1292805470117171231', 'bot_public': True, 'bot_require_code_grant': False, 'terms_of_service_url': 'https://github.com/Drago-03/IndieGo/blob/main/TERMS_OF_SERVICE.md', 'privacy_policy_url': 'https://github.com/Drago-03/IndieGo/blob/main/PRIVACY_POLICY.md', 'install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}, 'integration_types_config': {'0': {'oauth2_install_params': {'scopes': ['applications.commands', 'bot'], 'permissions': '18701295479039'}}, '1': {'oauth2_install_params': {'scopes': ['applications.commands'], 'permissions': '0'}}}, 'verify_key': '5175f5b96c71d917f126b28591fb140b372cd40ce9cbc46c4eb5d48f80dd007a', 'flags': 27828480, 'tags': ['fun', 'Moderation', 'Community', 'Programming', 'productivity'], 'hook': True, 'storefront_available': False, 'redirect_uris': ['https://discord.com/oauth2/authorize?client_id=1304755116255088670'], 'interactions_endpoint_url': None, 'role_connections_verification_url': None, 'owner': {'id': '1304754857596555326', 'username': 'team1304754857596555326', 'avatar': None, 'discriminator': '0000', 'public_flags': 1024, 'flags': 1024, 'banner': None, 'accent_color': None, 'global_name': None, 'avatar_decoration_data': None, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'approximate_guild_count': 12, 'approximate_user_install_count': 4, 'interactions_event_types': [], 'interactions_version': 1, 'explicit_content_filter': 0, 'rpc_application_state': 0, 'store_application_state': 1, 'verification_state': 6, 'integration_public': True, 'integration_require_code_grant': False, 'discoverability_state': 3, 'discovery_eligibility_flags': 65535, 'monetization_state': 1, 'verification_eligibility_flags': 125950, 'monetization_eligibility_flags': 247551, 'team': {'id': '1304754857596555326', 'icon': '9934a6ecddc735030d38be86b2683683', 'name': 'INDIE HUB', 'owner_user_id': '950609706760691752', 'members': [{'user': {'id': '950609706760691752', 'username': 'drago.exe', 'avatar': 'd321372887d554f43da6daad5e855264', 'discriminator': '0', 'public_flags': 4194368, 'flags': 4194368, 'banner': None, 'accent_color': None, 'global_name': 'Drago', 'avatar_decoration_data': {'asset': 'a_a657b4509fd2b75f5bb12e3a0bb0a7a0', 'sku_id': '1315853682235019326', 'expires_at': 1739520000}, 'banner_color': None, 'clan': None, 'primary_guild': None}, 'team_id': '1304754857596555326', 'membership_state': 2, 'role': 'admin', 'permissions': ['*']}]}, 'internal_guild_restriction': 2} +2024-12-31 16:28:44,802 - IndieGOBot - INFO - Starting bot setup... +2024-12-31 16:28:44,802 - IndieGOBot - DEBUG - Attempting to load extension: cogs.errors +2024-12-31 16:28:44,811 - IndieGOBot - DEBUG - Attempting to load extension: cogs.base +2024-12-31 16:28:44,814 - IndieGOBot - DEBUG - Attempting to load extension: cogs.help +2024-12-31 16:28:44,816 - IndieGOBot - DEBUG - Attempting to load extension: cogs.general +2024-12-31 16:28:44,824 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-12-31 16:28:44,824 - IndieGOBot - ERROR - Error details: Extension 'cogs.general' raised an error: TypeError: unsupported parameter kind in callback: VAR_POSITIONAL +2024-12-31 16:28:44,825 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 951, in _load_from_module_spec + spec.loader.exec_module(lib) # type: ignore + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "", line 995, in exec_module + File "", line 488, in _call_with_frames_removed + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\cogs\general.py", line 43, in + class General(commands.Cog): + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\cogs\general.py", line 94, in General + @app_commands.command(name="choose", description="Choose between multiple options") + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\commands.py", line 2060, in decorator + return Command( + ^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\commands.py", line 687, in __init__ + self._params: Dict[str, CommandParameter] = _extract_parameters_from_callback(callback, callback.__globals__) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\commands.py", line 383, in _extract_parameters_from_callback + param = annotation_to_parameter(resolved, parameter) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\app_commands\transformers.py", line 868, in annotation_to_parameter + raise TypeError(f'unsupported parameter kind in callback: {parameter.kind!s}') +TypeError: unsupported parameter kind in callback: VAR_POSITIONAL + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\main.py", line 64, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 954, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.general' raised an error: TypeError: unsupported parameter kind in callback: VAR_POSITIONAL + +2024-12-31 16:28:44,825 - IndieGOBot - DEBUG - Attempting to load extension: cogs.moderation +2024-12-31 16:28:44,828 - IndieGOBot - DEBUG - Attempting to load extension: cogs.admin +2024-12-31 16:28:44,831 - IndieGOBot - DEBUG - Attempting to load extension: cogs.tickets +2024-12-31 16:28:44,834 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-12-31 16:28:44,834 - IndieGOBot - ERROR - Error details: Extension 'cogs.tickets' raised an error: ImportError: cannot import name 'TICKET_CATEGORY_ID' from 'config' (C:\Users\Drago\Desktop\Indie Hub\IndieGo\config.py) +2024-12-31 16:28:44,835 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 951, in _load_from_module_spec + spec.loader.exec_module(lib) # type: ignore + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "", line 995, in exec_module + File "", line 488, in _call_with_frames_removed + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\cogs\tickets.py", line 5, in + from config import TICKET_CATEGORY_ID, STAFF_ROLE_ID, LOG_CHANNEL_ID +ImportError: cannot import name 'TICKET_CATEGORY_ID' from 'config' (C:\Users\Drago\Desktop\Indie Hub\IndieGo\config.py) + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\main.py", line 64, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 954, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.tickets' raised an error: ImportError: cannot import name 'TICKET_CATEGORY_ID' from 'config' (C:\Users\Drago\Desktop\Indie Hub\IndieGo\config.py) + +2024-12-31 16:28:44,835 - IndieGOBot - DEBUG - Attempting to load extension: cogs.logging +2024-12-31 16:28:44,837 - IndieGOBot - DEBUG - Attempting to load extension: cogs.fun +2024-12-31 16:28:44,844 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ai_assistant +2024-12-31 16:28:45,319 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-12-31 16:28:45,319 - IndieGOBot - ERROR - Error details: Extension 'cogs.ai_assistant' raised an error: ImportError: cannot import name 'BaseTransport' from 'httpx' (C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\httpx\__init__.py) +2024-12-31 16:28:45,320 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 951, in _load_from_module_spec + spec.loader.exec_module(lib) # type: ignore + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "", line 995, in exec_module + File "", line 488, in _call_with_frames_removed + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\cogs\ai_assistant.py", line 4, in + import anthropic + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\anthropic\__init__.py", line 3, in + from . import types + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\anthropic\types\__init__.py", line 6, in + from .usage import Usage as Usage + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\anthropic\types\usage.py", line 4, in + from .._models import BaseModel + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\anthropic\_models.py", line 25, in + from ._types import ( + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\anthropic\_types.py", line 23, in + from httpx import URL, Proxy, Timeout, Response, BaseTransport, AsyncBaseTransport +ImportError: cannot import name 'BaseTransport' from 'httpx' (C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\httpx\__init__.py). Did you mean: 'ASGITransport'? + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\main.py", line 64, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 954, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.ai_assistant' raised an error: ImportError: cannot import name 'BaseTransport' from 'httpx' (C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\httpx\__init__.py) + +2024-12-31 16:28:45,320 - IndieGOBot - DEBUG - Attempting to load extension: cogs.coding_help +2024-12-31 16:28:45,323 - IndieGOBot - DEBUG - Attempting to load extension: cogs.automod +2024-12-31 16:28:45,325 - IndieGOBot - DEBUG - Attempting to load extension: cogs.dm_interaction +2024-12-31 16:28:45,335 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-12-31 16:28:45,335 - IndieGOBot - ERROR - Error details: Extension 'cogs.dm_interaction' raised an error: ImportError: cannot import name 'BaseTransport' from 'httpx' (C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\httpx\__init__.py) +2024-12-31 16:28:45,336 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 951, in _load_from_module_spec + spec.loader.exec_module(lib) # type: ignore + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "", line 995, in exec_module + File "", line 488, in _call_with_frames_removed + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\cogs\dm_interaction.py", line 3, in + import anthropic + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\anthropic\__init__.py", line 3, in + from . import types + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\anthropic\types\__init__.py", line 6, in + from .usage import Usage as Usage + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\anthropic\types\usage.py", line 4, in + from .._models import BaseModel + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\anthropic\_models.py", line 25, in + from ._types import ( + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\anthropic\_types.py", line 23, in + from httpx import URL, Proxy, Timeout, Response, BaseTransport, AsyncBaseTransport +ImportError: cannot import name 'BaseTransport' from 'httpx' (C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\httpx\__init__.py). Did you mean: 'ASGITransport'? + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\main.py", line 64, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 954, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.dm_interaction' raised an error: ImportError: cannot import name 'BaseTransport' from 'httpx' (C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\httpx\__init__.py) + +2024-12-31 16:28:45,337 - IndieGOBot - DEBUG - Attempting to load extension: cogs.voice_channel +2024-12-31 16:28:45,744 - IndieGOBot - ERROR - Error type: ExtensionFailed +2024-12-31 16:28:45,744 - IndieGOBot - ERROR - Error details: Extension 'cogs.voice_channel' raised an error: ImportError: cannot import name 'speech_v1' from 'google.cloud' (unknown location) +2024-12-31 16:28:45,745 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 951, in _load_from_module_spec + spec.loader.exec_module(lib) # type: ignore + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "", line 995, in exec_module + File "", line 488, in _call_with_frames_removed + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\cogs\voice_channel.py", line 10, in + from google.cloud import speech_v1 +ImportError: cannot import name 'speech_v1' from 'google.cloud' (unknown location) + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\main.py", line 64, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1029, in load_extension + await self._load_from_module_spec(spec, name) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 954, in _load_from_module_spec + raise errors.ExtensionFailed(key, e) from e +discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.voice_channel' raised an error: ImportError: cannot import name 'speech_v1' from 'google.cloud' (unknown location) + +2024-12-31 16:28:45,745 - IndieGOBot - DEBUG - Attempting to load extension: cogs.ocr +2024-12-31 16:28:45,791 - IndieGOBot - DEBUG - Attempting to load extension: cogs.redditcogs.interactions +2024-12-31 16:28:45,793 - IndieGOBot - ERROR - Error type: ModuleNotFoundError +2024-12-31 16:28:45,793 - IndieGOBot - ERROR - Error details: No module named 'cogs.redditcogs' +2024-12-31 16:28:45,793 - IndieGOBot - ERROR - Traceback (most recent call last): + File "C:\Users\Drago\Desktop\Indie Hub\IndieGo\main.py", line 64, in setup_hook + await self.load_extension(extension) + File "C:\Users\Drago\AppData\Roaming\Python\Python312\site-packages\discord\ext\commands\bot.py", line 1025, in load_extension + spec = importlib.util.find_spec(name) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "", line 91, in find_spec +ModuleNotFoundError: No module named 'cogs.redditcogs' + +2024-12-31 16:28:45,793 - IndieGOBot - INFO - Syncing command tree... +2024-12-31 16:28:47,017 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands with [{"name":"help","description":"Show help information with a dropdown menu","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"kick","description":"Kick a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"ban","description":"Ban a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"mute","description":"Mute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false},{"type":3,"name":"reason","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"unmute","description":"Unmute a member","type":1,"options":[{"type":6,"name":"member","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"gift","description":"Gift a premium tier to a user for a month","type":1,"options":[{"type":3,"name":"tier","description":"\u2026","required":true},{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"team","description":"Add a team member","type":1,"options":[{"type":4,"name":"user_id","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"setup_logs","description":"Setup logging channels","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"roll","description":"Rolls a dice in NdN format.","type":1,"options":[{"type":3,"name":"dice","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"choose","description":"Chooses between multiple choices.","type":1,"options":[{"type":3,"name":"choices","description":"\u2026","required":false}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"poll","description":"Create a poll","type":1,"options":[{"type":3,"name":"question","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"trivia","description":"Start a trivia game","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"debug","description":"Help debug code issues","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"optimize","description":"Suggest code optimizations","type":1,"options":[{"type":3,"name":"code","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"warn","description":"Warn a member","type":1,"options":[{"type":6,"name":"member","description":"The member to warn","required":true},{"type":3,"name":"reason","description":"The reason for the warning","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"automod_setup","description":"Set up AutoMod in the server","type":1,"options":[],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"add_bad_word","description":"Add a bad word to the AutoMod filter","type":1,"options":[{"type":3,"name":"word","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null},{"name":"remove_bad_word","description":"Remove a bad word from the AutoMod filter","type":1,"options":[{"type":3,"name":"word","description":"\u2026","required":true}],"nsfw":false,"dm_permission":true,"default_member_permissions":null,"contexts":null,"integration_types":null}] has returned 200 +2024-12-31 16:28:47,018 - discord.http - DEBUG - PUT /applications/{application_id}/commands has found its initial rate limit bucket hash (3e32a240d3716487d7d8f6dae6c54f6b). +2024-12-31 16:28:47,018 - discord.http - DEBUG - PUT https://discord.com/api/v10/applications/1304755116255088670/commands has received [{'id': '1314406734508327023', 'application_id': '1304755116255088670', 'version': '1314406734642811000', 'default_member_permissions': None, 'type': 1, 'name': 'help', 'name_localizations': None, 'description': 'Show help information with a dropdown menu', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734508327024', 'application_id': '1304755116255088670', 'version': '1314406734730756188', 'default_member_permissions': None, 'type': 1, 'name': 'kick', 'name_localizations': None, 'description': 'Kick a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327025', 'application_id': '1304755116255088670', 'version': '1314406734730756189', 'default_member_permissions': None, 'type': 1, 'name': 'ban', 'name_localizations': None, 'description': 'Ban a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327026', 'application_id': '1304755116255088670', 'version': '1314406734730756190', 'default_member_permissions': None, 'type': 1, 'name': 'mute', 'name_localizations': None, 'description': 'Mute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327027', 'application_id': '1304755116255088670', 'version': '1314406734730756191', 'default_member_permissions': None, 'type': 1, 'name': 'unmute', 'name_localizations': None, 'description': 'Unmute a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327028', 'application_id': '1304755116255088670', 'version': '1314406734730756192', 'default_member_permissions': None, 'type': 1, 'name': 'gift', 'name_localizations': None, 'description': 'Gift a premium tier to a user for a month', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'tier', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}, {'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734508327029', 'application_id': '1304755116255088670', 'version': '1314406734730756193', 'default_member_permissions': None, 'type': 1, 'name': 'team', 'name_localizations': None, 'description': 'Add a team member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 4, 'name': 'user_id', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734508327030', 'application_id': '1304755116255088670', 'version': '1314406734730756194', 'default_member_permissions': None, 'type': 1, 'name': 'setup_logs', 'name_localizations': None, 'description': 'Setup logging channels', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734508327031', 'application_id': '1304755116255088670', 'version': '1314406734730756195', 'default_member_permissions': None, 'type': 1, 'name': 'roll', 'name_localizations': None, 'description': 'Rolls a dice in NdN format.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'dice', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734508327032', 'application_id': '1304755116255088670', 'version': '1314406734730756196', 'default_member_permissions': None, 'type': 1, 'name': 'choose', 'name_localizations': None, 'description': 'Chooses between multiple choices.', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'choices', 'name_localizations': None, 'description': '', 'description_localizations': None}], 'nsfw': False}, {'id': '1314406734642810991', 'application_id': '1304755116255088670', 'version': '1314406734730756197', 'default_member_permissions': None, 'type': 1, 'name': 'poll', 'name_localizations': None, 'description': 'Create a poll', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'question', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810992', 'application_id': '1304755116255088670', 'version': '1314406734751596575', 'default_member_permissions': None, 'type': 1, 'name': 'trivia', 'name_localizations': None, 'description': 'Start a trivia game', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734642810994', 'application_id': '1304755116255088670', 'version': '1314406734751596577', 'default_member_permissions': None, 'type': 1, 'name': 'debug', 'name_localizations': None, 'description': 'Help debug code issues', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810995', 'application_id': '1304755116255088670', 'version': '1314406734751596578', 'default_member_permissions': None, 'type': 1, 'name': 'optimize', 'name_localizations': None, 'description': 'Suggest code optimizations', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'code', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810996', 'application_id': '1304755116255088670', 'version': '1314406734751596579', 'default_member_permissions': None, 'type': 1, 'name': 'warn', 'name_localizations': None, 'description': 'Warn a member', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 6, 'name': 'member', 'name_localizations': None, 'description': 'The member to warn', 'description_localizations': None, 'required': True}, {'type': 3, 'name': 'reason', 'name_localizations': None, 'description': 'The reason for the warning', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810997', 'application_id': '1304755116255088670', 'version': '1314406734751596580', 'default_member_permissions': None, 'type': 1, 'name': 'automod_setup', 'name_localizations': None, 'description': 'Set up AutoMod in the server', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'nsfw': False}, {'id': '1314406734642810998', 'application_id': '1304755116255088670', 'version': '1314406734751596581', 'default_member_permissions': None, 'type': 1, 'name': 'add_bad_word', 'name_localizations': None, 'description': 'Add a bad word to the AutoMod filter', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'word', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}, {'id': '1314406734642810999', 'application_id': '1304755116255088670', 'version': '1314406734751596582', 'default_member_permissions': None, 'type': 1, 'name': 'remove_bad_word', 'name_localizations': None, 'description': 'Remove a bad word from the AutoMod filter', 'description_localizations': None, 'dm_permission': True, 'contexts': None, 'integration_types': [0, 1], 'options': [{'type': 3, 'name': 'word', 'name_localizations': None, 'description': '', 'description_localizations': None, 'required': True}], 'nsfw': False}] +2024-12-31 16:28:47,391 - discord.gateway - DEBUG - Created websocket connected to wss://gateway.discord.gg/ +2024-12-31 16:28:47,391 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 10, 'd': {'heartbeat_interval': 41250, '_trace': ['["gateway-prd-us-east1-c-q6dp",{"micros":0.0}]']}} +2024-12-31 16:28:47,392 - discord.gateway - DEBUG - Shard ID None has sent the IDENTIFY payload. +2024-12-31 16:28:47,690 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:28:47,814 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'READY', 's': 1, 'op': 0, 'd': {'v': 10, 'user_settings': {}, 'user': {'verified': True, 'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'mfa_enabled': True, 'id': '1304755116255088670', 'global_name': None, 'flags': 65536, 'email': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'session_type': 'normal', 'session_id': '9a16e8241381e34e839ad984738ebabd', 'resume_gateway_url': 'wss://gateway-us-east1-c.discord.gg', 'relationships': [], 'private_channels': [], 'presences': [], 'guilds': [{'unavailable': True, 'id': '922005348670406667'}, {'unavailable': True, 'id': '1004621739893993573'}, {'unavailable': True, 'id': '1197349052476575794'}, {'unavailable': True, 'id': '1276213423038005419'}, {'unavailable': True, 'id': '1276215268791550055'}, {'unavailable': True, 'id': '1285681923464892437'}, {'unavailable': True, 'id': '1288026038189690921'}, {'unavailable': True, 'id': '1290596162038136894'}, {'unavailable': True, 'id': '1292805470117171231'}, {'unavailable': True, 'id': '1295744072681525279'}, {'unavailable': True, 'id': '1316958520817750066'}, {'unavailable': True, 'id': '1317607813723193395'}], 'guild_join_requests': [], 'geo_ordered_rtc_regions': ['india', 'dubai', 'hongkong', 'tel-aviv', 'russia'], 'game_relationships': [], 'auth': {}, 'application': {'id': '1304755116255088670', 'flags': 27828480}, '_trace': ['["gateway-prd-us-east1-c-q6dp",{"micros":119627,"calls":["id_created",{"micros":640,"calls":[]},"session_lookup_time",{"micros":278,"calls":[]},"session_lookup_finished",{"micros":14,"calls":[]},"discord-sessions-prd-1-299",{"micros":118456,"calls":["start_session",{"micros":74337,"calls":["discord-api-rpc-799bd6f864-lrv2w",{"micros":38193,"calls":["get_user",{"micros":11327},"get_guilds",{"micros":4360},"send_scheduled_deletion_message",{"micros":7},"guild_join_requests",{"micros":1},"authorized_ip_coro",{"micros":8}]}]},"starting_guild_connect",{"micros":44,"calls":[]},"presence_started",{"micros":515,"calls":[]},"guilds_started",{"micros":157,"calls":[]},"lobbies_started",{"micros":1,"calls":[]},"guilds_connect",{"micros":3,"calls":[]},"presence_connect",{"micros":43353,"calls":[]},"connect_finished",{"micros":43360,"calls":[]},"build_ready",{"micros":22,"calls":[]},"clean_ready",{"micros":0,"calls":[]},"optimize_ready",{"micros":1,"calls":[]},"split_ready",{"micros":0,"calls":[]}]}]}]']}} +2024-12-31 16:28:47,814 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:47,814 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 9a16e8241381e34e839ad984738ebabd). +2024-12-31 16:28:47,815 - discord.client - DEBUG - Dispatching event connect +2024-12-31 16:28:48,088 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,112 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,118 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,255 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,280 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,283 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,322 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,338 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,341 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,357 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,359 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,361 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,895 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:48,902 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-31 16:28:49,037 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:49,043 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-31 16:28:49,143 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:49,149 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-31 16:28:49,253 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:49,260 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-31 16:28:49,363 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:49,370 - discord.state - DEBUG - Processed a chunk for 1000 members in guild ID 922005348670406667. +2024-12-31 16:28:49,384 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:49,385 - discord.state - DEBUG - Processed a chunk for 135 members in guild ID 922005348670406667. +2024-12-31 16:28:49,385 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 20, 'op': 0, 'd': {'nonce': '12a41499fb46e666db04c7cef46e6f51', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1315853682235019326', 'expires_at': 1739520000, 'asset': 'a_a657b4509fd2b75f5bb12e3a0bb0a7a0'}, 'avatar': 'd321372887d554f43da6daad5e855264'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2022-08-04T05:28:07.789000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Asssistant', 'public_flags': 524288, 'primary_guild': None, 'id': '1087748235751338087', 'global_name': None, 'display_name': None, 'discriminator': '7407', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4b1fa598ef8b56243f8adeff2ba3e85b'}, 'roles': ['1087765622638788652'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2023-03-21T15:52:14.233000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Halito', 'public_flags': 0, 'primary_guild': None, 'id': '1237497853765746719', 'global_name': None, 'display_name': None, 'discriminator': '1062', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a9bb467a84d5383b20e2b5177b6bb28'}, 'roles': ['1237498834385506397'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-05-07T20:18:33.836000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461820770549897'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:03.952000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1004621739893993573', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-31 16:28:49,386 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:49,386 - discord.state - DEBUG - Processed a chunk for 4 members in guild ID 1004621739893993573. +2024-12-31 16:28:49,393 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 21, 'op': 0, 'd': {'nonce': '380f0d6f1cfe3c5edb28d9841e7b7ebd', 'members': [{'user': {'username': 'DraftBot', 'public_flags': 65536, 'primary_guild': None, 'id': '318312854816161792', 'global_name': None, 'display_name': None, 'discriminator': '0535', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'f1d4dc93441273f3f8985a07e0bad164'}, 'roles': ['1220390620892496015'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-03-21T15:16:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'mrquentin50', 'public_flags': 128, 'primary_guild': None, 'id': '337318615260856324', 'global_name': 'MrQuentin', 'display_name': 'MrQuentin', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1232071712695386162', 'expires_at': None, 'asset': 'a_8552f9857793aed0cf816f370e2df3be'}, 'avatar': 'a_9d8ff0156ecb8ebe9457daef98eda8d1'}, 'roles': ['1220392976409296977', '1220392667599601725'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-01-18T01:17:39.835000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Noti', 'public_flags': 65536, 'primary_guild': None, 'id': '719310199944642753', 'global_name': None, 'display_name': None, 'discriminator': '2519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a041c9759ab692b16477d0b0a6d9acef'}, 'roles': ['1220824577588854836'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-03-22T20:01:01.168000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'lo_rhum_zamal', 'public_flags': 0, 'primary_guild': None, 'id': '957271089627680838', 'global_name': 'Lo_Rhum_Zamal', 'display_name': 'Lo_Rhum_Zamal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'e86ddef36272be5af7cf6553150261a1'}, 'roles': ['1220392684615635037', '1220392678865502318'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-03-19T23:23:08.813000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1318899313774170177'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T11:15:00.468225+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1197349052476575794', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-31 16:28:49,393 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:49,394 - discord.state - DEBUG - Processed a chunk for 5 members in guild ID 1197349052476575794. +2024-12-31 16:28:49,910 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 22, 'op': 0, 'd': {'nonce': '8dc0fc25bfa7a0f27224009d9bbb9b0f', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1315853682235019326', 'expires_at': 1739520000, 'asset': 'a_a657b4509fd2b75f5bb12e3a0bb0a7a0'}, 'avatar': 'd321372887d554f43da6daad5e855264'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:23:51.200000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461711785754668'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:40:37.951000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276215268791550055', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-31 16:28:49,910 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:49,911 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1276215268791550055. +2024-12-31 16:28:50,375 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:50,376 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:50,376 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:50,376 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:50,397 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 23, 'op': 0, 'd': {'nonce': '95cd8e8b1d430c709d752a341850164e', 'members': [{'user': {'username': 'Xenon', 'public_flags': 589824, 'primary_guild': None, 'id': '416358583220043796', 'global_name': None, 'display_name': None, 'discriminator': '7325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '4a963aeddc8ab926b37663d1704e93e2'}, 'roles': ['1276213819412058279'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:18:05.536224+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1315853682235019326', 'expires_at': 1739520000, 'asset': 'a_a657b4509fd2b75f5bb12e3a0bb0a7a0'}, 'avatar': 'd321372887d554f43da6daad5e855264'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-08-22T16:16:31.411000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311461888076419145'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:41:19.978510+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1276213423038005419', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-31 16:28:50,397 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:50,397 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1276213423038005419. +2024-12-31 16:28:50,397 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:50,890 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 24, 'op': 0, 'd': {'nonce': '4d735f42cc0323037c3c5aa08a728d5a', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1315853682235019326', 'expires_at': 1739520000, 'asset': 'a_a657b4509fd2b75f5bb12e3a0bb0a7a0'}, 'avatar': 'd321372887d554f43da6daad5e855264'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-17T19:20:57.388000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1304759808712511491'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-09T10:49:39.724000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1285681923464892437', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-31 16:28:50,890 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:50,890 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1285681923464892437. +2024-12-31 16:28:50,890 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:51,404 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 25, 'op': 0, 'd': {'nonce': 'd1233383d9ca57101bab86669ebb19e6', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'primary_guild': None, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1292805470117171233', '1295430234946142292'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:57:16.016000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Carl-bot', 'public_flags': 65536, 'primary_guild': None, 'id': '235148962103951360', 'global_name': None, 'display_name': None, 'discriminator': '1536', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ed3dac3b6e7a851df781632a4295fcb9'}, 'roles': ['1293081062099910659'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:29.561824+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Mimu', 'public_flags': 65536, 'primary_guild': None, 'id': '493716749342998541', 'global_name': None, 'display_name': None, 'discriminator': '5713', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a_336f66f03fd64d6b7b97c2ca97ca6e48'}, 'roles': ['1293088072459747342'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:50:20.930797+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wick', 'public_flags': 65536, 'primary_guild': None, 'id': '536991182035746816', 'global_name': None, 'display_name': None, 'discriminator': '3938', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c850c9bbeb25e119a4c85a9bfdb7871e'}, 'roles': ['1293081011550162979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:17.505539+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Ticket Tool', 'public_flags': 65536, 'primary_guild': None, 'id': '557628352828014614', 'global_name': None, 'display_name': None, 'discriminator': '4843', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'dd89587457ef9f971d331426cad9e2be'}, 'roles': ['1293150462140223683'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T09:58:15.811455+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Security', 'public_flags': 65536, 'primary_guild': None, 'id': '651095740390834176', 'global_name': None, 'display_name': None, 'discriminator': '1120', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac317a9c2fc3540d9dd7d8536cdc749'}, 'roles': ['1293081148724875329', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:22:50.195000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'rigved526', 'public_flags': 0, 'primary_guild': None, 'id': '686143205246238755', 'global_name': 'RiG', 'display_name': 'RiG', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': 'a_7f3c01b1e1f29dd658ef31472895ab7d'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T14:57:01.933000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Double Counter', 'public_flags': 589824, 'primary_guild': None, 'id': '703886990948565003', 'global_name': None, 'display_name': None, 'discriminator': '8519', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6cd6ac028ee3164df698da60d27ebd69'}, 'roles': ['1295429440242847840', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T16:54:06.544000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Invite Tracker', 'public_flags': 65536, 'primary_guild': None, 'id': '720351927581278219', 'global_name': None, 'display_name': None, 'discriminator': '0478', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '7ac935300e9bc3edcbc2de1b91c597b1'}, 'roles': ['1292805470117171233', '1295433111592767562'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T17:08:41.844000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'cyber._.warrior.', 'public_flags': 256, 'primary_guild': None, 'id': '745870990365556787', 'global_name': 'Cyber Warrior', 'display_name': 'Cyber Warrior', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1305905202578325535', 'expires_at': 1737792000, 'asset': 'a_7f1a6455d390697420e8b3af663143b3'}, 'avatar': 'd9180efc115fba1e3425f14c5f4c80e4'}, 'roles': ['1292805470117171237', '1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470221893654', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T09:16:14.578000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'adroll', 'public_flags': 128, 'primary_guild': None, 'id': '752797478394527835', 'global_name': 'AdRoll', 'display_name': 'AdRoll', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1316597786862419988', 'expires_at': 1740124800, 'asset': 'a_db05e7fc49cb1a078f6aec1e559e2891'}, 'avatar': '60cd54270bb3031dae70de41468a47e5'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T20:55:34.256000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'kid._.slayer', 'public_flags': 256, 'primary_guild': None, 'id': '808998804883243009', 'global_name': 'Safa', 'display_name': 'Safa', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1256321669426053198', 'expires_at': None, 'asset': 'a_fe63036018fefb8abe3172383497e3bf'}, 'avatar': 'dbe79216a01e61529089200c836b39ec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-20T01:41:54.753000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'thewolmer', 'public_flags': 256, 'primary_guild': None, 'id': '932865250930360331', 'global_name': 'Wolmer', 'display_name': 'Wolmer', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '16611f934505dfe461eecd3bb7c16438'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-18T18:35:44.349000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1315853682235019326', 'expires_at': 1739520000, 'asset': 'a_a657b4509fd2b75f5bb12e3a0bb0a7a0'}, 'avatar': 'd321372887d554f43da6daad5e855264'}, 'roles': ['1292805470117171239', '1295430673594581002', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T11:07:23.317000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jalkarna', 'public_flags': 256, 'primary_guild': None, 'id': '1052125310486839296', 'global_name': 'JALKARNA', 'display_name': 'JALKARNA', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'fb82635b2d7ddd125d39776af54ebe00'}, 'roles': ['1292805470117171239', '1295430499929423912', '1292805470247194667', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T18:33:47.541000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '.raydu.', 'public_flags': 128, 'primary_guild': None, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'meow', 'identity_guild_id': '1239922420786139177', 'identity_enabled': True, 'badge': 'ec60c5e6d1f14d3bbff586e2e0b9e54e'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': 'fb2d371318965416936de70de2cfdc3f'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'san._exe', 'public_flags': 0, 'primary_guild': None, 'id': '1083968373693628509', 'global_name': 'San', 'display_name': 'San', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1319423712474435655', 'expires_at': 1740790800, 'asset': 'a_c54442527d9d19bbb1695a41d090a379'}, 'avatar': 'b30aedf24dde1b721d99f6d4956bc119'}, 'roles': ['1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470117171239', '1292805470221893661', '1292805470175887438'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T10:04:55.853000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': '_yashvardhan_', 'public_flags': 0, 'primary_guild': None, 'id': '1089638597218537492', 'global_name': 'Yashvardhan', 'display_name': 'Yashvardhan', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '6e71e216b6bc291ccf4553462a055ad0'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-08T05:45:41.497000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'aka.ronak', 'public_flags': 0, 'primary_guild': None, 'id': '1262290989813338155', 'global_name': 'Randalal', 'display_name': 'Randalal', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '055ca18b2b65d226da9796d2ac77dbec'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-07T12:49:58.295000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'the_ogadam', 'public_flags': 128, 'primary_guild': None, 'id': '1268813461048135784', 'global_name': 'Adam', 'display_name': 'Adam', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1309270800099971122', 'expires_at': 1739001600, 'asset': 'a_e132d6014f2075d9fc2a8ece507ef5cf'}, 'avatar': '0047defd2c3d97f3b7bbb882d2b16e65'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T17:54:21.478000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'h4rsheyyy', 'public_flags': 0, 'primary_guild': None, 'id': '1285608593063673928', 'global_name': 'h4rsheyyyyyy', 'display_name': 'h4rsheyyyyyy', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': '4d49a737dbc54452daffc0739a3c1661'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-13T09:25:53.473000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1312895927908040785', '1308517312667844702', '1292805470117171233'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-19T19:40:38.480000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Harmonia', 'public_flags': 65536, 'primary_guild': None, 'id': '1312017085131391098', 'global_name': None, 'display_name': None, 'discriminator': '0266', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '118876a3424ff4c45053389d2844ede1'}, 'roles': ['1312895927908040785', '1312025108344209483'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-29T11:59:22.189000+00:00', 'flags': 1, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1292805470117171231', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-31 16:28:51,406 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:51,406 - discord.state - DEBUG - Processed a chunk for 23 members in guild ID 1292805470117171231. +2024-12-31 16:28:51,406 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:51,893 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 26, 'op': 0, 'd': {'nonce': 'a6ce8eb296f7a77cc4b016611fe68a41', 'members': [{'user': {'username': 'Dyno', 'public_flags': 589824, 'primary_guild': None, 'id': '155149108183695360', 'global_name': None, 'display_name': None, 'discriminator': '3861', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b4fdfc64edff74c37e1574d34fad66c2'}, 'roles': ['1318857881537482815'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T08:30:22.269058+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'MEE6', 'public_flags': 65536, 'primary_guild': None, 'id': '159985870458322944', 'global_name': None, 'display_name': None, 'discriminator': '4876', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b50adff099924dd5e6b72d13f77eb9d7'}, 'roles': ['1318878298993983501'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:51:30.146210+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Maki', 'public_flags': 65536, 'primary_guild': None, 'id': '563434444321587202', 'global_name': None, 'display_name': None, 'discriminator': '4920', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '3bedfc513ab9272409513297aa9265ea'}, 'roles': ['1318875528245149741'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:40:29.513476+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jon.caldbeck', 'public_flags': 0, 'primary_guild': None, 'id': '668614726917423115', 'global_name': 'Jon', 'display_name': 'Jon', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'befa58384e25019e6383406092879e07'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-01T08:48:23.609000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Zaria', 'public_flags': 65536, 'primary_guild': None, 'id': '953722741368967239', 'global_name': None, 'display_name': None, 'discriminator': '6359', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '28f10cdb2cc49846ff58202746d7ac3b'}, 'roles': ['1318876379873284168'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:43:52.634925+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'TopicBot', 'public_flags': 65536, 'primary_guild': None, 'id': '975367171372900422', 'global_name': None, 'display_name': None, 'discriminator': '4558', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '3fd7bbba40d6f26a2bc9238f552d0792'}, 'roles': ['1318876937695006754'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:46:05.603551+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'BosINT', 'public_flags': 65536, 'primary_guild': None, 'id': '1070147390746656788', 'global_name': None, 'display_name': None, 'discriminator': '4592', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b5db7b03ed53258a7d7c023c284b8064'}, 'roles': ['1318878088062439447'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:50:39.841388+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Novexa', 'public_flags': 65536, 'primary_guild': None, 'id': '1115015829776498779', 'global_name': None, 'display_name': None, 'discriminator': '3721', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9c298c046d1b29da82631ed59c4ac949'}, 'roles': ['1318877786785447968'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:49:27.963145+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Knowledge Manager', 'public_flags': 589824, 'primary_guild': None, 'id': '1130522848478384239', 'global_name': None, 'display_name': None, 'discriminator': '8167', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a1635c634fa59e1a401c0070ae03092'}, 'roles': ['1318878804738969653'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:53:30.723011+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Embed Builder', 'public_flags': 65536, 'primary_guild': None, 'id': '1194522070667767898', 'global_name': None, 'display_name': None, 'discriminator': '7697', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a33b618bb7a49d8137db629975421f79'}, 'roles': ['1318877913994498049'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:49:58.339095+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'NodCord', 'public_flags': 65536, 'primary_guild': None, 'id': '1268210710505324624', 'global_name': None, 'display_name': None, 'discriminator': '2834', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b92ba84c4a7924819cbc8ea12691e9e5'}, 'roles': ['1318876717800230975'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:45:13.128590+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Pro AI', 'public_flags': 65536, 'primary_guild': None, 'id': '1273134012843692084', 'global_name': None, 'display_name': None, 'discriminator': '7114', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6aade23334a7fc2e21aaae85151df2b6'}, 'roles': ['1318879248806842381'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:55:16.637081+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Guilds', 'public_flags': 65536, 'primary_guild': None, 'id': '1281286413861523567', 'global_name': None, 'display_name': None, 'discriminator': '5509', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'fe0190734d3fdf6359c685e2e875afe9'}, 'roles': ['1318876079167115297'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:42:40.905148+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1318880396653363252'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:59:50.208190+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'PixelBot', 'public_flags': 65536, 'primary_guild': None, 'id': '1304932122611552346', 'global_name': None, 'display_name': None, 'discriminator': '2472', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6f749db0daca5b78e7be780e5cd7863b'}, 'roles': ['1318879493196222499'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:56:14.841284+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1290596162038136894', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-31 16:28:51,894 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:51,895 - discord.state - DEBUG - Processed a chunk for 15 members in guild ID 1290596162038136894. +2024-12-31 16:28:51,895 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:52,394 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 27, 'op': 0, 'd': {'nonce': 'f577a5b0659aa789d485d72ef7a0459c', 'members': [{'user': {'username': 'MEE6', 'public_flags': 65536, 'primary_guild': None, 'id': '159985870458322944', 'global_name': None, 'display_name': None, 'discriminator': '4876', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b50adff099924dd5e6b72d13f77eb9d7'}, 'roles': ['1318878241703989261'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:51:16.467275+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Maki', 'public_flags': 65536, 'primary_guild': None, 'id': '563434444321587202', 'global_name': None, 'display_name': None, 'discriminator': '4920', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '3bedfc513ab9272409513297aa9265ea'}, 'roles': ['1318858995947012159'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T08:34:47.908491+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'To-do Bot', 'public_flags': 65536, 'primary_guild': None, 'id': '617706329229754379', 'global_name': None, 'display_name': None, 'discriminator': '5259', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '403495b8b0c6fc530b0a432f66ecf639'}, 'roles': ['1318857522240815127'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T08:28:56.595502+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'jon.caldbeck', 'public_flags': 0, 'primary_guild': None, 'id': '668614726917423115', 'global_name': 'Jon', 'display_name': 'Jon', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'befa58384e25019e6383406092879e07'}, 'roles': ['1307242600335544400'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-15T13:44:20.696000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'ChronicleBot', 'public_flags': 589824, 'primary_guild': None, 'id': '903380664336928798', 'global_name': None, 'display_name': None, 'discriminator': '0372', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '96c929d8d8a3b285959a999c29767314'}, 'roles': ['1318880764405878857'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T10:01:17.925876+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'timezoner', 'public_flags': 65536, 'primary_guild': None, 'id': '909820903574106203', 'global_name': None, 'display_name': None, 'discriminator': '9167', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'e69491bc8880f10219faa63bcead4b7a'}, 'roles': ['1318877427803623448'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:48:02.433093+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Midjourney Bot', 'public_flags': 589824, 'primary_guild': None, 'id': '936929561302675456', 'global_name': None, 'display_name': None, 'discriminator': '9282', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'f6ce562a6b4979c4b1cbc5b436d3be76'}, 'roles': ['1318857243323666434'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T08:27:50.078029+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Zaria', 'public_flags': 65536, 'primary_guild': None, 'id': '953722741368967239', 'global_name': None, 'display_name': None, 'discriminator': '6359', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '28f10cdb2cc49846ff58202746d7ac3b'}, 'roles': ['1318876323090792482'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:43:39.079106+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'TopicBot', 'public_flags': 65536, 'primary_guild': None, 'id': '975367171372900422', 'global_name': None, 'display_name': None, 'discriminator': '4558', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '3fd7bbba40d6f26a2bc9238f552d0792'}, 'roles': ['1318876889464574015'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:45:54.077142+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Automate', 'public_flags': 65536, 'primary_guild': None, 'id': '980964704694464512', 'global_name': None, 'display_name': None, 'discriminator': '7836', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '01ed98c3f81d36a6fe488086d88cecd8'}, 'roles': ['1318879625233039373'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:56:46.283363+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'KnowUp', 'public_flags': 65536, 'primary_guild': None, 'id': '1039096476908916839', 'global_name': None, 'display_name': None, 'discriminator': '0019', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'cbd7f4521e52cc01af9d19ddb38f5b57'}, 'roles': ['1318878529462468671'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:52:25.057304+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'ChatGPT', 'public_flags': 65536, 'primary_guild': None, 'id': '1059541954473492611', 'global_name': None, 'display_name': None, 'discriminator': '6325', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '0a682d7afe00ba3b2e6e1d0871204523'}, 'roles': ['1318880099629662211'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:58:39.426246+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Staff List V2', 'public_flags': 65536, 'primary_guild': None, 'id': '1060296720073891922', 'global_name': None, 'display_name': None, 'discriminator': '9139', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'c84e12bc75a84673f89006ec270c2574'}, 'roles': ['1318857430796472423'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T08:28:34.762119+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'BosINT', 'public_flags': 65536, 'primary_guild': None, 'id': '1070147390746656788', 'global_name': None, 'display_name': None, 'discriminator': '4592', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b5db7b03ed53258a7d7c023c284b8064'}, 'roles': ['1318878039614033940'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:50:28.254935+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'ChatGPT', 'public_flags': 65536, 'primary_guild': None, 'id': '1077003964882620416', 'global_name': None, 'display_name': None, 'discriminator': '9641', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '279b6bd87022e83246c1ff352e6bb960'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T08:26:44.585441+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Novexa', 'public_flags': 65536, 'primary_guild': None, 'id': '1115015829776498779', 'global_name': None, 'display_name': None, 'discriminator': '3721', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9c298c046d1b29da82631ed59c4ac949'}, 'roles': ['1318877740895830018'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:49:17.071540+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Wamellow', 'public_flags': 65536, 'primary_guild': None, 'id': '1125449347451068437', 'global_name': None, 'display_name': None, 'discriminator': '1138', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9d2921dbf473aa1e7ec86e8458f690bc'}, 'roles': ['1318877286052663341'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:47:28.685336+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Knowledge Manager', 'public_flags': 589824, 'primary_guild': None, 'id': '1130522848478384239', 'global_name': None, 'display_name': None, 'discriminator': '8167', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '9a1635c634fa59e1a401c0070ae03092'}, 'roles': ['1318878753157419050'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:53:18.454025+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Embed Builder', 'public_flags': 65536, 'primary_guild': None, 'id': '1194522070667767898', 'global_name': None, 'display_name': None, 'discriminator': '7697', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'a33b618bb7a49d8137db629975421f79'}, 'roles': ['1318877864380207188'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:49:46.484445+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Lawyer Bot', 'public_flags': 65536, 'primary_guild': None, 'id': '1261827669012512809', 'global_name': None, 'display_name': None, 'discriminator': '5836', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '8fb209a674b641f65f43244018642097'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:57:21.967208+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'NodCord', 'public_flags': 65536, 'primary_guild': None, 'id': '1268210710505324624', 'global_name': None, 'display_name': None, 'discriminator': '2834', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'b92ba84c4a7924819cbc8ea12691e9e5'}, 'roles': ['1318876636799696911'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:44:53.818012+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Pro AI', 'public_flags': 65536, 'primary_guild': None, 'id': '1273134012843692084', 'global_name': None, 'display_name': None, 'discriminator': '7114', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6aade23334a7fc2e21aaae85151df2b6'}, 'roles': ['1318879197623750680'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:55:04.438976+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'OpenQOTD', 'public_flags': 65536, 'primary_guild': None, 'id': '1275472589375930418', 'global_name': None, 'display_name': None, 'discriminator': '2986', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '0589228598a76178914b02ef134e4fac'}, 'roles': ['1318878610588831748'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:52:44.408083+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'Guilds', 'public_flags': 65536, 'primary_guild': None, 'id': '1281286413861523567', 'global_name': None, 'display_name': None, 'discriminator': '5509', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'fe0190734d3fdf6359c685e2e875afe9'}, 'roles': ['1318876025312251979'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:42:28.058907+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'RSS Transcripts', 'public_flags': 65536, 'primary_guild': None, 'id': '1284202515919011960', 'global_name': None, 'display_name': None, 'discriminator': '3660', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': 'ff78f233fa8edc330c1a34462c0020c0'}, 'roles': ['1318878896556474461'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:53:52.597780+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1318880344308715543'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:59:37.779980+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'PixelBot', 'public_flags': 65536, 'primary_guild': None, 'id': '1304932122611552346', 'global_name': None, 'display_name': None, 'discriminator': '2472', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '6f749db0daca5b78e7be780e5cd7863b'}, 'roles': ['1318879445402259520'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-18T09:56:03.442205+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1295744072681525279', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-31 16:28:52,396 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:52,396 - discord.state - DEBUG - Processed a chunk for 27 members in guild ID 1295744072681525279. +2024-12-31 16:28:52,396 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:52,900 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:52,901 - discord.state - DEBUG - Processed a chunk for 17 members in guild ID 1316958520817750066. +2024-12-31 16:28:52,901 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:53,416 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 29, 'op': 0, 'd': {'nonce': 'a96bbb6e827d39f6c3bc592aa0dcdbf8', 'members': [{'user': {'username': 'drago.exe', 'public_flags': 4194368, 'primary_guild': None, 'id': '950609706760691752', 'global_name': 'Drago', 'display_name': 'Drago', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': {'sku_id': '1315853682235019326', 'expires_at': 1739520000, 'asset': 'a_a657b4509fd2b75f5bb12e3a0bb0a7a0'}, 'avatar': 'd321372887d554f43da6daad5e855264'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T06:35:37.884000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'vishal.sharma_25_', 'public_flags': 0, 'primary_guild': None, 'id': '1288167597728333977', 'global_name': 'Vishal.sharma_25', 'display_name': 'Vishal.sharma_25', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': 'c82b3fa769ed6e6ffdea579381ed5f5c'}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-09-24T16:10:04.261000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1311459379526111285'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-11-27T22:31:21.887000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1288026038189690921', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-31 16:28:53,416 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:53,416 - discord.state - DEBUG - Processed a chunk for 3 members in guild ID 1288026038189690921. +2024-12-31 16:28:53,416 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:53,928 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBERS_CHUNK', 's': 30, 'op': 0, 'd': {'nonce': 'fbdc47a542be46b8d7e99c9d92003c3a', 'members': [{'user': {'username': 'trxmp1490', 'public_flags': 0, 'primary_guild': None, 'id': '765263134608719923', 'global_name': 'Trxmp', 'display_name': 'Trxmp', 'discriminator': '0', 'clan': None, 'bot': False, 'avatar_decoration_data': None, 'avatar': None}, 'roles': [], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-14T21:43:02.777000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}, {'user': {'username': 'IndieGO', 'public_flags': 65536, 'primary_guild': None, 'id': '1304755116255088670', 'global_name': None, 'display_name': None, 'discriminator': '9052', 'clan': None, 'bot': True, 'avatar_decoration_data': None, 'avatar': '104f5b1c25bc15d397d1a10a09e33aed'}, 'roles': ['1317611930663522394'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-12-14T21:59:24.385000+00:00', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}], 'guild_id': '1317607813723193395', 'chunk_index': 0, 'chunk_count': 1}} +2024-12-31 16:28:53,928 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:28:53,928 - discord.state - DEBUG - Processed a chunk for 2 members in guild ID 1317607813723193395. +2024-12-31 16:28:53,928 - discord.client - DEBUG - Dispatching event guild_available +2024-12-31 16:28:53,929 - discord.client - DEBUG - Dispatching event ready +2024-12-31 16:28:53,929 - IndieGOBot - INFO - Logged in as IndieGO#9052 (ID: 1304755116255088670) +2024-12-31 16:28:53,929 - IndieGOBot - INFO - +Cog Status: +2024-12-31 16:28:53,948 - discord.gateway - DEBUG - Sending "{"op":3,"d":{"activities":[{"flags":0,"type":3,"name":".help | /help","buttons":[]}],"afk":false,"since":0.0,"status":"online"}}" to change status +2024-12-31 16:28:53,948 - IndieGOBot - INFO - Bot is ready! +2024-12-31 16:29:00,798 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:29:00,798 - discord.client - DEBUG - Dispatching event interaction +2024-12-31 16:29:01,226 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:29:01,227 - discord.client - DEBUG - Dispatching event message +2024-12-31 16:29:02,379 - discord.webhook.async_ - DEBUG - Webhook ID 1323606329809698909 with POST https://discord.com/api/v10/interactions/1323606329809698909/aW50ZXJhY3Rpb246MTMyMzYwNjMyOTgwOTY5ODkwOTo2NXllWUsySVEwcUVNalhJSFlDMExVeEp6M2NxZnpWTWV4Z2JHTzdkTFBuSGtaaGxKeU1wM0gxM3VkQkUzQ202UFR4U1lOVUNOeHFyanpGUGljYUYwY1BYZkIyQURid0YwSGpSUXVvUkFFa2ROZDI0UlNGcjlDM0JaZmMyVkpsbA/callback has returned status code 204 +2024-12-31 16:29:02,379 - discord.client - DEBUG - Dispatching event app_command_completion +2024-12-31 16:29:28,650 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 32. +2024-12-31 16:29:28,955 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:30:09,903 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 32. +2024-12-31 16:30:10,207 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:30:51,169 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 32. +2024-12-31 16:30:51,461 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:31:32,430 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 32. +2024-12-31 16:31:32,728 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:32:13,695 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 32. +2024-12-31 16:32:13,988 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:32:54,950 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 32. +2024-12-31 16:32:55,250 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:33:36,211 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 32. +2024-12-31 16:33:36,517 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:34:17,462 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 32. +2024-12-31 16:34:17,762 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:34:28,180 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:34:28,180 - discord.client - DEBUG - Dispatching event interaction +2024-12-31 16:34:35,079 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:34:35,079 - discord.client - DEBUG - Dispatching event interaction +2024-12-31 16:34:42,503 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:34:42,503 - discord.client - DEBUG - Dispatching event interaction +2024-12-31 16:34:43,029 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:34:43,029 - discord.client - DEBUG - Dispatching event message +2024-12-31 16:34:43,055 - discord.webhook.async_ - DEBUG - Webhook ID 1323607762973884427 with POST https://discord.com/api/v10/interactions/1323607762973884427/aW50ZXJhY3Rpb246MTMyMzYwNzc2Mjk3Mzg4NDQyNzpUQjJvc3hmYUN0bmsxQjlhVDRPbDJSQmdYcVNaUGxTSVlHbEY3Y0hxS3R6cm9nYThURnV3WWU1WHhlc0VOd2NmRXJ5bWV4WEVGV1kxQ3pOeFhJc3F6cnZHNWR2WlhUaVpzNk1pNmV6cUduSGFETTM4VHRJbGR6U1FJdlQyV1hqeA/callback has returned status code 204 +2024-12-31 16:34:43,055 - discord.client - DEBUG - Dispatching event app_command_completion +2024-12-31 16:34:47,523 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:34:47,523 - discord.client - DEBUG - Dispatching event interaction +2024-12-31 16:34:48,001 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:34:48,001 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-31 16:34:48,001 - discord.client - DEBUG - Dispatching event message_edit +2024-12-31 16:34:48,006 - discord.webhook.async_ - DEBUG - Webhook ID 1323607783932825630 with POST https://discord.com/api/v10/interactions/1323607783932825630/aW50ZXJhY3Rpb246MTMyMzYwNzc4MzkzMjgyNTYzMDoyNDVGM2pNUkV6aHdaY1ZvdVFGWWJhbkQ0UTNaYThkaFd5ZHhXZ3pjSVlIRlNMamVKZHIxcmc5aFJUNkRRQlpwanJkcVptQjdVRUxsUU91QXo2RkhQcGkxc2djNWRJOHhNVk1MN0lNd1diTjR0RDg2YXZnRVFER1JyTU40T29qag/callback has returned status code 204 +2024-12-31 16:34:58,724 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 38. +2024-12-31 16:34:59,020 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:35:04,262 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:35:04,262 - discord.client - DEBUG - Dispatching event interaction +2024-12-31 16:35:04,701 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:35:04,701 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-31 16:35:04,701 - discord.client - DEBUG - Dispatching event message_edit +2024-12-31 16:35:04,714 - discord.webhook.async_ - DEBUG - Webhook ID 1323607854317309953 with POST https://discord.com/api/v10/interactions/1323607854317309953/aW50ZXJhY3Rpb246MTMyMzYwNzg1NDMxNzMwOTk1MzpYQW9rNHZtSElidHRWOGtxekxtN1VBTWQxNzUzRFh3bzE2WThBTEJwczlEYXJkVW5NWXpmQnd5WU1RNEU1aUh3V1dJckRGd0dPcmRKZGtlQXBUQTYyTGJhZFY2a2NCNVZMWjBOajF1ZlZXaTNTS2hpQjg3M0lITGVqOHhsQ3YxMg/callback has returned status code 204 +2024-12-31 16:35:20,655 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:35:20,655 - discord.client - DEBUG - Dispatching event interaction +2024-12-31 16:35:21,076 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:35:21,076 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-31 16:35:21,076 - discord.client - DEBUG - Dispatching event message_edit +2024-12-31 16:35:21,094 - discord.webhook.async_ - DEBUG - Webhook ID 1323607922399510559 with POST https://discord.com/api/v10/interactions/1323607922399510559/aW50ZXJhY3Rpb246MTMyMzYwNzkyMjM5OTUxMDU1OTpweUZBMFI2aUZtOU5ZZGZQWEhLZnljeTZKQ2VORGRjckF2Sm1rRW9ZVktBN2o2QXhPSFVqa0gwcVZyY2VOTzMzVmdIOWFuckh6OFRwa0VDeUFmOVlYNGp3WllkcEc3QmFsN2M5clpqZE5iQ0laekhoTDFtNlo3aVF2NktCM09KUw/callback has returned status code 204 +2024-12-31 16:35:36,630 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:35:36,630 - discord.client - DEBUG - Dispatching event interaction +2024-12-31 16:35:37,196 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:35:37,196 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-31 16:35:37,196 - discord.client - DEBUG - Dispatching event message_edit +2024-12-31 16:35:37,212 - discord.webhook.async_ - DEBUG - Webhook ID 1323607990070153308 with POST https://discord.com/api/v10/interactions/1323607990070153308/aW50ZXJhY3Rpb246MTMyMzYwNzk5MDA3MDE1MzMwODpGNzdvbFY1Z0pxWXM5THB4YktXcUcyY1J5T0tkdDZnMEJ0ajFUaW9LenhpOFBhd2dLS295TXppb3R5NEh0ekdSeGN1NzBrMGR2RDJnMllOYTF0OVh4UGtvOTY2cnIzN2lUSWhIR1hNUTVLeGZLMG1XeGxlVm91bjBhNmtvYlc0aA/callback has returned status code 204 +2024-12-31 16:35:39,977 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 44. +2024-12-31 16:35:40,279 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:35:58,268 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:35:58,269 - discord.client - DEBUG - Dispatching event interaction +2024-12-31 16:35:58,748 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:35:58,748 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-31 16:35:58,749 - discord.client - DEBUG - Dispatching event message_edit +2024-12-31 16:35:58,766 - discord.webhook.async_ - DEBUG - Webhook ID 1323608080675508276 with POST https://discord.com/api/v10/interactions/1323608080675508276/aW50ZXJhY3Rpb246MTMyMzYwODA4MDY3NTUwODI3Njo5eDFrcDBkbkRWb1Z2ZnRuUUxhVjFPcGZLOFM2TnJlb2tpRmNFWDlKS1EzM3QyOTV2VG5SZG1IYk40V1JBUFZxMTNHNlU3VTJCQjFRTVhnT0c3U2p2ZHVhV1kyWWtQd3RZM011cUxKeWZYN2VPVGJYSVhjYlJ5czNQU3ZnN2UycQ/callback has returned status code 204 +2024-12-31 16:36:16,595 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:36:16,595 - discord.client - DEBUG - Dispatching event interaction +2024-12-31 16:36:17,258 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:36:17,258 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-31 16:36:17,258 - discord.client - DEBUG - Dispatching event message_edit +2024-12-31 16:36:17,579 - discord.webhook.async_ - DEBUG - Webhook ID 1323608157695639592 with POST https://discord.com/api/v10/interactions/1323608157695639592/aW50ZXJhY3Rpb246MTMyMzYwODE1NzY5NTYzOTU5Mjp2bHh4QzdxRExQSk9vakNwdEJqZm9FOUk2MnZ3Z0t2d1NKYlBaNmptZVBxNHkwVlF2ZVc1dTFsbE40cjBiVWVZZWoxWXRvTjVxTmZOVWVrUnRmSW9POUJrRkRSZGZhMk5iOWtRZXNaV1hTeDB3Wk1jRlRWMThNdDBoSHJpS2RRVg/callback has returned status code 204 +2024-12-31 16:36:21,242 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 48. +2024-12-31 16:36:21,541 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:36:32,686 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:36:32,686 - discord.client - DEBUG - Dispatching event interaction +2024-12-31 16:36:33,176 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:36:33,176 - discord.client - DEBUG - Dispatching event raw_message_edit +2024-12-31 16:36:33,176 - discord.client - DEBUG - Dispatching event message_edit +2024-12-31 16:36:33,187 - discord.webhook.async_ - DEBUG - Webhook ID 1323608225186189324 with POST https://discord.com/api/v10/interactions/1323608225186189324/aW50ZXJhY3Rpb246MTMyMzYwODIyNTE4NjE4OTMyNDpNZzV6QVI3QUZJSnQyZlJJUDJZV3JBbnRDbmI1NXVGOXlVR0RKWVRvRmJrY0xya0JId1RVY0pBcXh2dWhadWRIRmdybGNPcFRGSmlnemJmSUlZblBFSkg0TzVKZ285QmF5blVkQjBCUWRaU1JQbjRPTXdVSU82QzdrWWIxWmw2cQ/callback has returned status code 204 +2024-12-31 16:37:02,508 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:37:02,819 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:37:43,772 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:37:44,066 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:38:25,024 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:38:25,361 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:39:06,289 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:39:06,592 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:39:47,541 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:39:47,838 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:40:28,793 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:40:29,091 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:41:10,058 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:41:10,367 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:41:51,317 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:41:51,618 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:42:32,571 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:42:33,130 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:43:13,826 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:43:14,130 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:43:55,090 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:43:55,389 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:44:36,349 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 50. +2024-12-31 16:44:36,644 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} +2024-12-31 16:45:05,967 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 51, 'op': 0, 'd': {'user': {'username': '.raydu.', 'public_flags': 128, 'primary_guild': {'tag': 'meow', 'identity_guild_id': '1239922420786139177', 'identity_enabled': True, 'badge': 'ec60c5e6d1f14d3bbff586e2e0b9e54e'}, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'meow', 'identity_guild_id': '1239922420786139177', 'identity_enabled': True, 'badge': 'ec60c5e6d1f14d3bbff586e2e0b9e54e'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': 'fb2d371318965416936de70de2cfdc3f'}, 'roles': ['1166279735983230976', '1170543488555810816', '1168249317203640550', '1062343535535325235', '1088385891116003380'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-03-02T09:43:32.035000+00:00', 'guild_id': '922005348670406667', 'flags': 42, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-31 16:45:05,967 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:45:05,968 - discord.client - DEBUG - Dispatching event member_update +2024-12-31 16:45:05,974 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': 'GUILD_MEMBER_UPDATE', 's': 52, 'op': 0, 'd': {'user': {'username': '.raydu.', 'public_flags': 128, 'primary_guild': {'tag': 'meow', 'identity_guild_id': '1239922420786139177', 'identity_enabled': True, 'badge': 'ec60c5e6d1f14d3bbff586e2e0b9e54e'}, 'id': '1072401009260896266', 'global_name': 'Raydu', 'display_name': 'Raydu', 'discriminator': '0', 'clan': {'tag': 'meow', 'identity_guild_id': '1239922420786139177', 'identity_enabled': True, 'badge': 'ec60c5e6d1f14d3bbff586e2e0b9e54e'}, 'bot': False, 'avatar_decoration_data': {'sku_id': '1212569433839636530', 'expires_at': None, 'asset': 'a_c3cffc19e9784f7d0b005eecdf1b566e'}, 'avatar': 'fb2d371318965416936de70de2cfdc3f'}, 'roles': ['1292805470117171239', '1292805470175887438', '1292805470163177552', '1292805470204985458', '1292805470221893652', '1292805470204985463', '1292805470221893661'], 'premium_since': None, 'pending': False, 'nick': None, 'mute': False, 'joined_at': '2024-10-14T19:19:43.710000+00:00', 'guild_id': '1292805470117171231', 'flags': 0, 'deaf': False, 'communication_disabled_until': None, 'banner': None, 'avatar': None}} +2024-12-31 16:45:05,974 - discord.client - DEBUG - Dispatching event socket_event_type +2024-12-31 16:45:05,974 - discord.client - DEBUG - Dispatching event member_update +2024-12-31 16:45:17,611 - discord.gateway - DEBUG - Keeping shard ID None websocket alive with sequence 52. +2024-12-31 16:45:17,905 - discord.gateway - DEBUG - For Shard ID None: WebSocket Event: {'t': None, 's': None, 'op': 11, 'd': None} diff --git a/cogs/admin.py b/cogs/admin.py index fd65b0b..0b22cc3 100644 --- a/cogs/admin.py +++ b/cogs/admin.py @@ -1,81 +1,81 @@ -import discord -from discord.ext import commands -from discord import app_commands -import json -from datetime import datetime, timedelta - -OWNER_ID = 950609706760691752 # Replace with your Discord ID - -class Admin(commands.Cog): - def __init__(self, bot): - self.bot = bot - self.premium_users = {} - self.team_members = [OWNER_ID] - - @commands.Cog.listener() - async def on_ready(self): - # Load premium users from file - try: - with open('premium_users.json', 'r') as f: - self.premium_users = json.load(f) - except FileNotFoundError: - self.premium_users = {} - - def save_premium_users(self): - with open('premium_users.json', 'w') as f: - json.dump(self.premium_users, f) - - @commands.command(name="gift") - async def gift_command(self, ctx, tier: str, user_id: int): - """Gift a premium tier to a user for a month""" - if ctx.author.id != OWNER_ID: - await ctx.send("You do not have permission to use this command.") - return - - if tier not in ["pro", "team", "enterprise"]: - await ctx.send("Invalid tier. Choose from 'pro', 'team', or 'enterprise'.") - return - - end_date = datetime.now() + timedelta(days=30) - self.premium_users[user_id] = {"tier": tier, "end_date": end_date.isoformat()} - self.save_premium_users() - await ctx.send(f"Gifted {tier} tier to user {user_id} for a month.") - - @app_commands.command(name="gift", description="Gift a premium tier to a user for a month") - async def gift(self, interaction: discord.Interaction, tier: str, user_id: int): - """Gift a premium tier to a user for a month""" - if interaction.user.id != OWNER_ID: - await interaction.response.send_message("You do not have permission to use this command.", ephemeral=True) - return - - if tier not in ["pro", "team", "enterprise"]: - await interaction.response.send_message("Invalid tier. Choose from 'pro', 'team', or 'enterprise'.", ephemeral=True) - return - - end_date = datetime.now() + timedelta(days=30) - self.premium_users[user_id] = {"tier": tier, "end_date": end_date.isoformat()} - self.save_premium_users() - await interaction.response.send_message(f"Gifted {tier} tier to user {user_id} for a month.", ephemeral=True) - - @commands.command(name="team") - async def team_command(self, ctx, user_id: int): - """Add a team member""" - if ctx.author.id != OWNER_ID: - await ctx.send("You do not have permission to use this command.") - return - - self.team_members.append(user_id) - await ctx.send(f"Added user {user_id} to the team.") - - @app_commands.command(name="team", description="Add a team member") - async def team(self, interaction: discord.Interaction, user_id: int): - """Add a team member""" - if interaction.user.id != OWNER_ID: - await interaction.response.send_message("You do not have permission to use this command.", ephemeral=True) - return - - self.team_members.append(user_id) - await interaction.response.send_message(f"Added user {user_id} to the team.", ephemeral=True) - -async def setup(bot): +import discord +from discord.ext import commands +from discord import app_commands +import json +from datetime import datetime, timedelta + +OWNER_ID = 950609706760691752 # Replace with your Discord ID + +class Admin(commands.Cog): + def __init__(self, bot): + self.bot = bot + self.premium_users = {} + self.team_members = [OWNER_ID] + + @commands.Cog.listener() + async def on_ready(self): + # Load premium users from file + try: + with open('premium_users.json', 'r') as f: + self.premium_users = json.load(f) + except FileNotFoundError: + self.premium_users = {} + + def save_premium_users(self): + with open('premium_users.json', 'w') as f: + json.dump(self.premium_users, f) + + @commands.command(name="gift") + async def gift_command(self, ctx, tier: str, user_id: int): + """Gift a premium tier to a user for a month""" + if ctx.author.id != OWNER_ID: + await ctx.send("You do not have permission to use this command.") + return + + if tier not in ["pro", "team", "enterprise"]: + await ctx.send("Invalid tier. Choose from 'pro', 'team', or 'enterprise'.") + return + + end_date = datetime.now() + timedelta(days=30) + self.premium_users[user_id] = {"tier": tier, "end_date": end_date.isoformat()} + self.save_premium_users() + await ctx.send(f"Gifted {tier} tier to user {user_id} for a month.") + + @app_commands.command(name="gift", description="Gift a premium tier to a user for a month") + async def gift(self, interaction: discord.Interaction, tier: str, user_id: int): + """Gift a premium tier to a user for a month""" + if interaction.user.id != OWNER_ID: + await interaction.response.send_message("You do not have permission to use this command.", ephemeral=True) + return + + if tier not in ["pro", "team", "enterprise"]: + await interaction.response.send_message("Invalid tier. Choose from 'pro', 'team', or 'enterprise'.", ephemeral=True) + return + + end_date = datetime.now() + timedelta(days=30) + self.premium_users[user_id] = {"tier": tier, "end_date": end_date.isoformat()} + self.save_premium_users() + await interaction.response.send_message(f"Gifted {tier} tier to user {user_id} for a month.", ephemeral=True) + + @commands.command(name="team") + async def team_command(self, ctx, user_id: int): + """Add a team member""" + if ctx.author.id != OWNER_ID: + await ctx.send("You do not have permission to use this command.") + return + + self.team_members.append(user_id) + await ctx.send(f"Added user {user_id} to the team.") + + @app_commands.command(name="team", description="Add a team member") + async def team(self, interaction: discord.Interaction, user_id: int): + """Add a team member""" + if interaction.user.id != OWNER_ID: + await interaction.response.send_message("You do not have permission to use this command.", ephemeral=True) + return + + self.team_members.append(user_id) + await interaction.response.send_message(f"Added user {user_id} to the team.", ephemeral=True) + +async def setup(bot): await bot.add_cog(Admin(bot)) \ No newline at end of file diff --git a/cogs/ai_assistant.py b/cogs/ai_assistant.py index 4c57b8d..2b6b048 100644 --- a/cogs/ai_assistant.py +++ b/cogs/ai_assistant.py @@ -1,92 +1,92 @@ -import discord -from discord.ext import commands -from discord import app_commands -import anthropic -import google.generativeai as genai -import os -from typing import Optional -import asyncio -import aiohttp -from datetime import datetime, timedelta -import json - -class AIAssistant(commands.Cog): - def __init__(self, bot): - self.bot = bot - # Initialize API keys from environment variables - self.anthropic_api_key = os.getenv('ANTHROPIC_API_KEY') - self.gemini_api_key = os.getenv('GEMINI_API_KEY') - - # Initialize API clients - if self.anthropic_api_key: - self.claude = anthropic.Client(api_key=self.anthropic_api_key) - if self.gemini_api_key: - genai.configure(api_key=self.gemini_api_key) - - # Rate limiting - self.cooldowns = {} - self.COOLDOWN_MINUTES = 1 - - # Message history - self.message_history = {} - - async def fetch_claude_response(self, prompt): - async with aiohttp.ClientSession() as session: - headers = { - 'Authorization': f'Bearer {self.anthropic_api_key}', - 'Content-Type': 'application/json' - } - data = { - 'prompt': prompt, - 'max_tokens': 150 - } - async with session.post('https://api.anthropic.com/v1/complete', headers=headers, json=data) as response: - result = await response.json() - return result['choices'][0]['text'] - - async def fetch_gemini_response(self, prompt): - async with aiohttp.ClientSession() as session: - headers = { - 'Authorization': f'Bearer {self.gemini_api_key}', - 'Content-Type': 'application/json' - } - data = { - 'prompt': prompt, - 'max_tokens': 150 - } - async with session.post('https://api.gemini.com/v1/complete', headers=headers, json=data) as response: - result = await response.json() - return result['choices'][0]['text'] - - @commands.command(name="ask") - async def ask_command(self, ctx, *, question: str): - """Ask a question to the AI assistant""" - if ctx.author.id in self.cooldowns and self.cooldowns[ctx.author.id] > datetime.now(): - await ctx.send("You are on cooldown. Please wait before asking another question.") - return - - prompt = f"User: {question}\nBot:" - claude_response = await self.fetch_claude_response(prompt) - gemini_response = await self.fetch_gemini_response(prompt) - response = f"Claude: {claude_response}\nGemini: {gemini_response}" - await ctx.send(response) - - self.cooldowns[ctx.author.id] = datetime.now() + timedelta(minutes=self.COOLDOWN_MINUTES) - - @app_commands.command(name="ask", description="Ask a question to the AI assistant") - async def ask_slash(self, interaction: discord.Interaction, question: str): - """Ask a question to the AI assistant""" - if interaction.user.id in self.cooldowns and self.cooldowns[interaction.user.id] > datetime.now(): - await interaction.response.send_message("You are on cooldown. Please wait before asking another question.", ephemeral=True) - return - - prompt = f"User: {question}\nBot:" - claude_response = await self.fetch_claude_response(prompt) - gemini_response = await self.fetch_gemini_response(prompt) - response = f"Claude: {claude_response}\nGemini: {gemini_response}" - await interaction.response.send_message(response) - - self.cooldowns[interaction.user.id] = datetime.now() + timedelta(minutes=self.COOLDOWN_MINUTES) - -async def setup(bot): +import discord +from discord.ext import commands +from discord import app_commands +import anthropic +import google.generativeai as genai +import os +from typing import Optional +import asyncio +import aiohttp +from datetime import datetime, timedelta +import json + +class AIAssistant(commands.Cog): + def __init__(self, bot): + self.bot = bot + # Initialize API keys from environment variables + self.anthropic_api_key = os.getenv('ANTHROPIC_API_KEY') + self.gemini_api_key = os.getenv('GEMINI_API_KEY') + + # Initialize API clients + if self.anthropic_api_key: + self.claude = anthropic.Client(api_key=self.anthropic_api_key) + if self.gemini_api_key: + genai.configure(api_key=self.gemini_api_key) + + # Rate limiting + self.cooldowns = {} + self.COOLDOWN_MINUTES = 1 + + # Message history + self.message_history = {} + + async def fetch_claude_response(self, prompt): + async with aiohttp.ClientSession() as session: + headers = { + 'Authorization': f'Bearer {self.anthropic_api_key}', + 'Content-Type': 'application/json' + } + data = { + 'prompt': prompt, + 'max_tokens': 150 + } + async with session.post('https://api.anthropic.com/v1/complete', headers=headers, json=data) as response: + result = await response.json() + return result['choices'][0]['text'] + + async def fetch_gemini_response(self, prompt): + async with aiohttp.ClientSession() as session: + headers = { + 'Authorization': f'Bearer {self.gemini_api_key}', + 'Content-Type': 'application/json' + } + data = { + 'prompt': prompt, + 'max_tokens': 150 + } + async with session.post('https://api.gemini.com/v1/complete', headers=headers, json=data) as response: + result = await response.json() + return result['choices'][0]['text'] + + @commands.command(name="ask") + async def ask_command(self, ctx, *, question: str): + """Ask a question to the AI assistant""" + if ctx.author.id in self.cooldowns and self.cooldowns[ctx.author.id] > datetime.now(): + await ctx.send("You are on cooldown. Please wait before asking another question.") + return + + prompt = f"User: {question}\nBot:" + claude_response = await self.fetch_claude_response(prompt) + gemini_response = await self.fetch_gemini_response(prompt) + response = f"Claude: {claude_response}\nGemini: {gemini_response}" + await ctx.send(response) + + self.cooldowns[ctx.author.id] = datetime.now() + timedelta(minutes=self.COOLDOWN_MINUTES) + + @app_commands.command(name="ask", description="Ask a question to the AI assistant") + async def ask_slash(self, interaction: discord.Interaction, question: str): + """Ask a question to the AI assistant""" + if interaction.user.id in self.cooldowns and self.cooldowns[interaction.user.id] > datetime.now(): + await interaction.response.send_message("You are on cooldown. Please wait before asking another question.", ephemeral=True) + return + + prompt = f"User: {question}\nBot:" + claude_response = await self.fetch_claude_response(prompt) + gemini_response = await self.fetch_gemini_response(prompt) + response = f"Claude: {claude_response}\nGemini: {gemini_response}" + await interaction.response.send_message(response) + + self.cooldowns[interaction.user.id] = datetime.now() + timedelta(minutes=self.COOLDOWN_MINUTES) + +async def setup(bot): await bot.add_cog(AIAssistant(bot)) \ No newline at end of file diff --git a/cogs/automod.py b/cogs/automod.py index e2a9d8c..490577d 100644 --- a/cogs/automod.py +++ b/cogs/automod.py @@ -1,104 +1,104 @@ -import discord -from discord.ext import commands -from discord import app_commands -import re - -class AutoMod(commands.Cog): - """Cog for advanced AutoMod features""" - - def __init__(self, bot): - self.bot = bot - self.bad_words = [ - # Add your bad words here - # Example: "badword1", "badword2", etc. - ] - self.auto_mod_enabled = False - - @commands.Cog.listener() - async def on_message(self, message): - if message.author.bot: - return - - if self.auto_mod_enabled and any(re.search(rf"\b{word}\b", message.content, re.IGNORECASE) for word in self.bad_words): - await message.delete() - await message.channel.send(f"{message.author.mention}, your message contained inappropriate content and was deleted.") - await self.log_action(message.guild, f"Deleted message from {message.author} for inappropriate content.") - - async def log_action(self, guild, action): - log_channel = discord.utils.get(guild.text_channels, name="mod-logs") - if log_channel: - await log_channel.send(action) - - @commands.command(name="warn") - @commands.has_permissions(manage_messages=True) - async def warn_command(self, ctx, member: discord.Member, *, reason: str): - """Warn a member""" - await member.send(f"You have been warned by {ctx.author}.\nReason: {reason}") - await ctx.send(f"{member.mention} has been warned. Reason: {reason}") - await self.log_action(ctx.guild, f"{ctx.author} warned {member}.\nReason: {reason}") - - @app_commands.command(name="warn", description="Warn a member") - @app_commands.describe(member="The member to warn", reason="The reason for the warning") - @commands.has_permissions(manage_messages=True) - async def warn_slash(self, interaction: discord.Interaction, member: discord.Member, reason: str): - """Warn a member""" - await member.send(f"You have been warned by {interaction.user}.\nReason: {reason}") - await interaction.response.send_message(f"{member.mention} has been warned. Reason: {reason}") - await self.log_action(interaction.guild, f"{interaction.user} warned {member}.\nReason: {reason}") - - @commands.command(name="automod_setup") - @commands.has_permissions(administrator=True) - async def automod_setup_command(self, ctx): - """Set up AutoMod in the server""" - self.auto_mod_enabled = True - await ctx.send("AutoMod has been enabled and set up for this server.") - await self.log_action(ctx.guild, "AutoMod has been enabled and set up.") - - @app_commands.command(name="automod_setup", description="Set up AutoMod in the server") - @commands.has_permissions(administrator=True) - async def automod_setup_slash(self, interaction: discord.Interaction): - """Set up AutoMod in the server""" - self.auto_mod_enabled = True - await interaction.response.send_message("AutoMod has been enabled and set up for this server.") - await self.log_action(interaction.guild, "AutoMod has been enabled and set up.") - - @commands.command(name="add_bad_word") - @commands.has_permissions(administrator=True) - async def add_bad_word_command(self, ctx, *, word: str): - """Add a bad word to the AutoMod filter""" - self.bad_words.append(word) - await ctx.send(f"Added '{word}' to the list of bad words.") - await self.log_action(ctx.guild, f"Added '{word}' to the list of bad words.") - - @app_commands.command(name="add_bad_word", description="Add a bad word to the AutoMod filter") - @commands.has_permissions(administrator=True) - async def add_bad_word_slash(self, interaction: discord.Interaction, word: str): - """Add a bad word to the AutoMod filter""" - self.bad_words.append(word) - await interaction.response.send_message(f"Added '{word}' to the list of bad words.") - await self.log_action(interaction.guild, f"Added '{word}' to the list of bad words.") - - @commands.command(name="remove_bad_word") - @commands.has_permissions(administrator=True) - async def remove_bad_word_command(self, ctx, *, word: str): - """Remove a bad word from the AutoMod filter""" - if word in self.bad_words: - self.bad_words.remove(word) - await ctx.send(f"Removed '{word}' from the list of bad words.") - await self.log_action(ctx.guild, f"Removed '{word}' from the list of bad words.") - else: - await ctx.send(f"'{word}' is not in the list of bad words.") - - @app_commands.command(name="remove_bad_word", description="Remove a bad word from the AutoMod filter") - @commands.has_permissions(administrator=True) - async def remove_bad_word_slash(self, interaction: discord.Interaction, word: str): - """Remove a bad word from the AutoMod filter""" - if word in self.bad_words: - self.bad_words.remove(word) - await interaction.response.send_message(f"Removed '{word}' from the list of bad words.") - await self.log_action(interaction.guild, f"Removed '{word}' from the list of bad words.") - else: - await interaction.response.send_message(f"'{word}' is not in the list of bad words.") - -async def setup(bot): +import discord +from discord.ext import commands +from discord import app_commands +import re + +class AutoMod(commands.Cog): + """Cog for advanced AutoMod features""" + + def __init__(self, bot): + self.bot = bot + self.bad_words = [ + # Add your bad words here + # Example: "badword1", "badword2", etc. + ] + self.auto_mod_enabled = False + + @commands.Cog.listener() + async def on_message(self, message): + if message.author.bot: + return + + if self.auto_mod_enabled and any(re.search(rf"\b{word}\b", message.content, re.IGNORECASE) for word in self.bad_words): + await message.delete() + await message.channel.send(f"{message.author.mention}, your message contained inappropriate content and was deleted.") + await self.log_action(message.guild, f"Deleted message from {message.author} for inappropriate content.") + + async def log_action(self, guild, action): + log_channel = discord.utils.get(guild.text_channels, name="mod-logs") + if log_channel: + await log_channel.send(action) + + @commands.command(name="warn") + @commands.has_permissions(manage_messages=True) + async def warn_command(self, ctx, member: discord.Member, *, reason: str): + """Warn a member""" + await member.send(f"You have been warned by {ctx.author}.\nReason: {reason}") + await ctx.send(f"{member.mention} has been warned. Reason: {reason}") + await self.log_action(ctx.guild, f"{ctx.author} warned {member}.\nReason: {reason}") + + @app_commands.command(name="warn", description="Warn a member") + @app_commands.describe(member="The member to warn", reason="The reason for the warning") + @commands.has_permissions(manage_messages=True) + async def warn_slash(self, interaction: discord.Interaction, member: discord.Member, reason: str): + """Warn a member""" + await member.send(f"You have been warned by {interaction.user}.\nReason: {reason}") + await interaction.response.send_message(f"{member.mention} has been warned. Reason: {reason}") + await self.log_action(interaction.guild, f"{interaction.user} warned {member}.\nReason: {reason}") + + @commands.command(name="automod_setup") + @commands.has_permissions(administrator=True) + async def automod_setup_command(self, ctx): + """Set up AutoMod in the server""" + self.auto_mod_enabled = True + await ctx.send("AutoMod has been enabled and set up for this server.") + await self.log_action(ctx.guild, "AutoMod has been enabled and set up.") + + @app_commands.command(name="automod_setup", description="Set up AutoMod in the server") + @commands.has_permissions(administrator=True) + async def automod_setup_slash(self, interaction: discord.Interaction): + """Set up AutoMod in the server""" + self.auto_mod_enabled = True + await interaction.response.send_message("AutoMod has been enabled and set up for this server.") + await self.log_action(interaction.guild, "AutoMod has been enabled and set up.") + + @commands.command(name="add_bad_word") + @commands.has_permissions(administrator=True) + async def add_bad_word_command(self, ctx, *, word: str): + """Add a bad word to the AutoMod filter""" + self.bad_words.append(word) + await ctx.send(f"Added '{word}' to the list of bad words.") + await self.log_action(ctx.guild, f"Added '{word}' to the list of bad words.") + + @app_commands.command(name="add_bad_word", description="Add a bad word to the AutoMod filter") + @commands.has_permissions(administrator=True) + async def add_bad_word_slash(self, interaction: discord.Interaction, word: str): + """Add a bad word to the AutoMod filter""" + self.bad_words.append(word) + await interaction.response.send_message(f"Added '{word}' to the list of bad words.") + await self.log_action(interaction.guild, f"Added '{word}' to the list of bad words.") + + @commands.command(name="remove_bad_word") + @commands.has_permissions(administrator=True) + async def remove_bad_word_command(self, ctx, *, word: str): + """Remove a bad word from the AutoMod filter""" + if word in self.bad_words: + self.bad_words.remove(word) + await ctx.send(f"Removed '{word}' from the list of bad words.") + await self.log_action(ctx.guild, f"Removed '{word}' from the list of bad words.") + else: + await ctx.send(f"'{word}' is not in the list of bad words.") + + @app_commands.command(name="remove_bad_word", description="Remove a bad word from the AutoMod filter") + @commands.has_permissions(administrator=True) + async def remove_bad_word_slash(self, interaction: discord.Interaction, word: str): + """Remove a bad word from the AutoMod filter""" + if word in self.bad_words: + self.bad_words.remove(word) + await interaction.response.send_message(f"Removed '{word}' from the list of bad words.") + await self.log_action(interaction.guild, f"Removed '{word}' from the list of bad words.") + else: + await interaction.response.send_message(f"'{word}' is not in the list of bad words.") + +async def setup(bot): await bot.add_cog(AutoMod(bot)) \ No newline at end of file diff --git a/cogs/base.py b/cogs/base.py index a0f43e6..30c343c 100644 --- a/cogs/base.py +++ b/cogs/base.py @@ -1,68 +1,68 @@ -import discord -from discord.ext import commands -from config import EMBED_COLOR, AUTHOR_NAME, AUTHOR_ICON - -class BaseCog(commands.Cog): - """Base cog with shared utilities""" - - def __init__(self, bot): - self.bot = bot - - def create_embed(self, title: str, description: str = None, error: bool = False) -> discord.Embed: - """Create a branded embed""" - color = discord.Color.red() if error else discord.Color.blue() - embed = discord.Embed(title=title, description=description, color=color) - return embed - - async def send_error(self, ctx, message: str): - """Send a professionally formatted error message""" - embed = self.create_embed( - "⚠️ An Error Occurred", - f"I apologize, but {message.lower()}. Please try again or contact support if this persists.", - error=True - ) - await ctx.send(embed=embed) - - async def send_cooldown_error(self, ctx, retry_after: float): - """Send a cooldown error message""" - embed = self.create_embed( - "⏳ Command on Cooldown", - f"This command is currently on cooldown. Please try again in {retry_after:.1f} seconds.", - error=True - ) - await ctx.send(embed=embed) - - async def send_permission_error(self, ctx): - """Send a permission error message""" - embed = self.create_embed( - "🔒 Permission Required", - "You don't have the required permissions to use this command. Please contact a server administrator.", - error=True - ) - await ctx.send(embed=embed) - - async def send_success(self, ctx, message: str): - """Send a success message""" - embed = self.create_embed("✅ Success", message) - await ctx.send(embed=embed) - - @commands.Cog.listener() - async def on_command_error(self, ctx, error): - """Handle errors globally""" - # Remove this listener to prevent duplicate errors - pass - - @commands.Cog.listener() - async def on_message(self, message): - """Handle messages to check for unauthorized command usage""" - if message.author.bot: - return - - if any(role.permissions.administrator for role in message.author.roles): - return - - if any(command in message.content for command in ["!kick", "!ban", "!mute", "!warn"]): - await message.channel.send(f"{message.author.mention}, you don't have permission to use moderation commands.") - -async def setup(bot): +import discord +from discord.ext import commands +from config import EMBED_COLOR, AUTHOR_NAME, AUTHOR_ICON + +class BaseCog(commands.Cog): + """Base cog with shared utilities""" + + def __init__(self, bot): + self.bot = bot + + def create_embed(self, title: str, description: str = None, error: bool = False) -> discord.Embed: + """Create a branded embed""" + color = discord.Color.red() if error else discord.Color.blue() + embed = discord.Embed(title=title, description=description, color=color) + return embed + + async def send_error(self, ctx, message: str): + """Send a professionally formatted error message""" + embed = self.create_embed( + "⚠️ An Error Occurred", + f"I apologize, but {message.lower()}. Please try again or contact support if this persists.", + error=True + ) + await ctx.send(embed=embed) + + async def send_cooldown_error(self, ctx, retry_after: float): + """Send a cooldown error message""" + embed = self.create_embed( + "⏳ Command on Cooldown", + f"This command is currently on cooldown. Please try again in {retry_after:.1f} seconds.", + error=True + ) + await ctx.send(embed=embed) + + async def send_permission_error(self, ctx): + """Send a permission error message""" + embed = self.create_embed( + "🔒 Permission Required", + "You don't have the required permissions to use this command. Please contact a server administrator.", + error=True + ) + await ctx.send(embed=embed) + + async def send_success(self, ctx, message: str): + """Send a success message""" + embed = self.create_embed("✅ Success", message) + await ctx.send(embed=embed) + + @commands.Cog.listener() + async def on_command_error(self, ctx, error): + """Handle errors globally""" + # Remove this listener to prevent duplicate errors + pass + + @commands.Cog.listener() + async def on_message(self, message): + """Handle messages to check for unauthorized command usage""" + if message.author.bot: + return + + if any(role.permissions.administrator for role in message.author.roles): + return + + if any(command in message.content for command in ["!kick", "!ban", "!mute", "!warn"]): + await message.channel.send(f"{message.author.mention}, you don't have permission to use moderation commands.") + +async def setup(bot): await bot.add_cog(BaseCog(bot)) \ No newline at end of file diff --git a/cogs/coding_help.py b/cogs/coding_help.py index d9b599d..80283f9 100644 --- a/cogs/coding_help.py +++ b/cogs/coding_help.py @@ -1,80 +1,80 @@ -import discord -from discord.ext import commands -from discord import app_commands -import aiohttp -import os - -class CodingHelp(commands.Cog): - """Cog for providing coding help using AI""" - - def __init__(self, bot): - self.bot = bot - self.anthropic_api_key = os.getenv('ANTHROPIC_API_KEY') - self.gemini_api_key = os.getenv('GEMINI_API_KEY') - - async def generate_response(self, prompt): - async with aiohttp.ClientSession() as session: - headers = { - 'Authorization': f'Bearer {self.anthropic_api_key}', - 'Content-Type': 'application/json' - } - data = { - 'prompt': prompt, - 'max_tokens': 150 - } - async with session.post('https://api.anthropic.com/v1/complete', headers=headers, json=data) as response: - result = await response.json() - claude_response = result['choices'][0]['text'] - - headers = { - 'Authorization': f'Bearer {self.gemini_api_key}', - 'Content-Type': 'application/json' - } - async with session.post('https://api.gemini.com/v1/complete', headers=headers, json=data) as response: - result = await response.json() - gemini_response = result['choices'][0]['text'] - - return f"Claude: {claude_response}\nGemini: {gemini_response}" - - @commands.command(name="debug") - async def debug_command(self, ctx, *, code: str): - """Help debug code issues""" - try: - prompt = f"Debug the following code:\n{code}" - answer = await self.generate_response(prompt) - await ctx.send(answer) - except Exception as e: - await ctx.send(f"An error occurred: {str(e)}") - - @commands.command(name="optimize") - async def optimize_command(self, ctx, *, code: str): - """Suggest code optimizations""" - try: - prompt = f"Optimize the following code:\n{code}" - answer = await self.generate_response(prompt) - await ctx.send(answer) - except Exception as e: - await ctx.send(f"An error occurred: {str(e)}") - - @app_commands.command(name="debug", description="Help debug code issues") - async def debug_slash(self, interaction: discord.Interaction, code: str): - """Help debug code issues""" - try: - prompt = f"Debug the following code:\n{code}" - answer = await self.generate_response(prompt) - await interaction.response.send_message(answer) - except Exception as e: - await interaction.response.send_message(f"An error occurred: {str(e)}") - - @app_commands.command(name="optimize", description="Suggest code optimizations") - async def optimize_slash(self, interaction: discord.Interaction, code: str): - """Suggest code optimizations""" - try: - prompt = f"Optimize the following code:\n{code}" - answer = await self.generate_response(prompt) - await interaction.response.send_message(answer) - except Exception as e: - await interaction.response.send_message(f"An error occurred: {str(e)}") - -async def setup(bot): +import discord +from discord.ext import commands +from discord import app_commands +import aiohttp +import os + +class CodingHelp(commands.Cog): + """Cog for providing coding help using AI""" + + def __init__(self, bot): + self.bot = bot + self.anthropic_api_key = os.getenv('ANTHROPIC_API_KEY') + self.gemini_api_key = os.getenv('GEMINI_API_KEY') + + async def generate_response(self, prompt): + async with aiohttp.ClientSession() as session: + headers = { + 'Authorization': f'Bearer {self.anthropic_api_key}', + 'Content-Type': 'application/json' + } + data = { + 'prompt': prompt, + 'max_tokens': 150 + } + async with session.post('https://api.anthropic.com/v1/complete', headers=headers, json=data) as response: + result = await response.json() + claude_response = result['choices'][0]['text'] + + headers = { + 'Authorization': f'Bearer {self.gemini_api_key}', + 'Content-Type': 'application/json' + } + async with session.post('https://api.gemini.com/v1/complete', headers=headers, json=data) as response: + result = await response.json() + gemini_response = result['choices'][0]['text'] + + return f"Claude: {claude_response}\nGemini: {gemini_response}" + + @commands.command(name="debug") + async def debug_command(self, ctx, *, code: str): + """Help debug code issues""" + try: + prompt = f"Debug the following code:\n{code}" + answer = await self.generate_response(prompt) + await ctx.send(answer) + except Exception as e: + await ctx.send(f"An error occurred: {str(e)}") + + @commands.command(name="optimize") + async def optimize_command(self, ctx, *, code: str): + """Suggest code optimizations""" + try: + prompt = f"Optimize the following code:\n{code}" + answer = await self.generate_response(prompt) + await ctx.send(answer) + except Exception as e: + await ctx.send(f"An error occurred: {str(e)}") + + @app_commands.command(name="debug", description="Help debug code issues") + async def debug_slash(self, interaction: discord.Interaction, code: str): + """Help debug code issues""" + try: + prompt = f"Debug the following code:\n{code}" + answer = await self.generate_response(prompt) + await interaction.response.send_message(answer) + except Exception as e: + await interaction.response.send_message(f"An error occurred: {str(e)}") + + @app_commands.command(name="optimize", description="Suggest code optimizations") + async def optimize_slash(self, interaction: discord.Interaction, code: str): + """Suggest code optimizations""" + try: + prompt = f"Optimize the following code:\n{code}" + answer = await self.generate_response(prompt) + await interaction.response.send_message(answer) + except Exception as e: + await interaction.response.send_message(f"An error occurred: {str(e)}") + +async def setup(bot): await bot.add_cog(CodingHelp(bot)) \ No newline at end of file diff --git a/cogs/dev-assist.py b/cogs/dev-assist.py index 5c2a694..11009cb 100644 --- a/cogs/dev-assist.py +++ b/cogs/dev-assist.py @@ -1,80 +1,80 @@ -import discord -from discord.ext import commands -from discord import app_commands -import aiohttp -import os - -class AIAssistant(commands.Cog): - """AI-Developer Assistance commands""" - - def __init__(self, bot): - self.bot = bot - self.anthropic_api_key = os.getenv('ANTHROPIC_API_KEY') - self.gemini_api_key = os.getenv('GEMINI_API_KEY') - - async def generate_response(self, prompt): - async with aiohttp.ClientSession() as session: - headers = { - 'Authorization': f'Bearer {self.anthropic_api_key}', - 'Content-Type': 'application/json' - } - data = { - 'prompt': prompt, - 'max_tokens': 150 - } - async with session.post('https://api.anthropic.com/v1/complete', headers=headers, json=data) as response: - result = await response.json() - claude_response = result['choices'][0]['text'] - - headers = { - 'Authorization': f'Bearer {self.gemini_api_key}', - 'Content-Type': 'application/json' - } - async with session.post('https://api.gemini.com/v1/complete', headers=headers, json=data) as response: - result = await response.json() - gemini_response = result['choices'][0]['text'] - - return f"Claude: {claude_response}\nGemini: {gemini_response}" - - @commands.command(name="ask") - async def ask_command(self, ctx, *, question: str): - """Ask a general question to the AI assistant""" - try: - prompt = f"Answer the following question:\n{question}" - answer = await self.generate_response(prompt) - await ctx.send(answer) - except Exception as e: - await ctx.send(f"An error occurred: {str(e)}") - - @app_commands.command(name="ask", description="Ask a general question to the AI assistant") - async def ask_slash(self, interaction: discord.Interaction, question: str): - """Ask a general question to the AI assistant""" - try: - prompt = f"Answer the following question:\n{question}" - answer = await self.generate_response(prompt) - await interaction.response.send_message(answer) - except Exception as e: - await interaction.response.send_message(f"An error occurred: {str(e)}") - - @commands.command(name="codehelp") - async def codehelp_command(self, ctx, *, code: str): - """Get coding help using multiple AI models""" - try: - prompt = f"Provide help for the following code:\n{code}" - help_response = await self.generate_response(prompt) - await ctx.send(help_response) - except Exception as e: - await ctx.send(f"An error occurred: {str(e)}") - - @app_commands.command(name="codehelp", description="Get coding help using multiple AI models") - async def codehelp_slash(self, interaction: discord.Interaction, code: str): - """Get coding help using multiple AI models""" - try: - prompt = f"Provide help for the following code:\n{code}" - help_response = await self.generate_response(prompt) - await interaction.response.send_message(help_response) - except Exception as e: - await interaction.response.send_message(f"An error occurred: {str(e)}") - -async def setup(bot): +import discord +from discord.ext import commands +from discord import app_commands +import aiohttp +import os + +class AIAssistant(commands.Cog): + """AI-Developer Assistance commands""" + + def __init__(self, bot): + self.bot = bot + self.anthropic_api_key = os.getenv('ANTHROPIC_API_KEY') + self.gemini_api_key = os.getenv('GEMINI_API_KEY') + + async def generate_response(self, prompt): + async with aiohttp.ClientSession() as session: + headers = { + 'Authorization': f'Bearer {self.anthropic_api_key}', + 'Content-Type': 'application/json' + } + data = { + 'prompt': prompt, + 'max_tokens': 150 + } + async with session.post('https://api.anthropic.com/v1/complete', headers=headers, json=data) as response: + result = await response.json() + claude_response = result['choices'][0]['text'] + + headers = { + 'Authorization': f'Bearer {self.gemini_api_key}', + 'Content-Type': 'application/json' + } + async with session.post('https://api.gemini.com/v1/complete', headers=headers, json=data) as response: + result = await response.json() + gemini_response = result['choices'][0]['text'] + + return f"Claude: {claude_response}\nGemini: {gemini_response}" + + @commands.command(name="ask") + async def ask_command(self, ctx, *, question: str): + """Ask a general question to the AI assistant""" + try: + prompt = f"Answer the following question:\n{question}" + answer = await self.generate_response(prompt) + await ctx.send(answer) + except Exception as e: + await ctx.send(f"An error occurred: {str(e)}") + + @app_commands.command(name="ask", description="Ask a general question to the AI assistant") + async def ask_slash(self, interaction: discord.Interaction, question: str): + """Ask a general question to the AI assistant""" + try: + prompt = f"Answer the following question:\n{question}" + answer = await self.generate_response(prompt) + await interaction.response.send_message(answer) + except Exception as e: + await interaction.response.send_message(f"An error occurred: {str(e)}") + + @commands.command(name="codehelp") + async def codehelp_command(self, ctx, *, code: str): + """Get coding help using multiple AI models""" + try: + prompt = f"Provide help for the following code:\n{code}" + help_response = await self.generate_response(prompt) + await ctx.send(help_response) + except Exception as e: + await ctx.send(f"An error occurred: {str(e)}") + + @app_commands.command(name="codehelp", description="Get coding help using multiple AI models") + async def codehelp_slash(self, interaction: discord.Interaction, code: str): + """Get coding help using multiple AI models""" + try: + prompt = f"Provide help for the following code:\n{code}" + help_response = await self.generate_response(prompt) + await interaction.response.send_message(help_response) + except Exception as e: + await interaction.response.send_message(f"An error occurred: {str(e)}") + +async def setup(bot): await bot.add_cog(AIAssistant(bot)) \ No newline at end of file diff --git a/cogs/dm_interaction.py b/cogs/dm_interaction.py index 8f1106f..b09a623 100644 --- a/cogs/dm_interaction.py +++ b/cogs/dm_interaction.py @@ -1,103 +1,103 @@ -import discord -from discord.ext import commands -import anthropic -import google.generativeai as genai -import os -from typing import Optional -import asyncio -import aiohttp - -class InteractiveDM(commands.Cog): - """Cog for handling interactive DM interactions""" - - def __init__(self, bot): - self.bot = bot - self.anthropic_client = anthropic.Client(api_key=os.getenv('ANTHROPIC_API_KEY')) - genai.configure(api_key=os.getenv('GEMINI_API_KEY')) - self.model = genai.GenerativeModel('gemini-pro') - self.conversation_context = {} - - async def fetch_claude_response(self, prompt: str) -> str: - """Get response from Claude""" - try: - message = await self.anthropic_client.messages.create( - model="claude-2", - max_tokens=1000, - messages=[{"role": "user", "content": prompt}] - ) - return message.content[0].text - except Exception as e: - return f"Sorry, I'm having trouble thinking right now: {str(e)}" - - async def fetch_gemini_response(self, prompt: str) -> str: - """Get response from Gemini""" - try: - response = await self.model.generate_content(prompt) - return response.text - except Exception as e: - return f"Hmm, I need a moment to think: {str(e)}" - - async def select_best_response(self, claude_response: str, gemini_response: str) -> str: - """Select the better response""" - if len(claude_response) > len(gemini_response) * 1.2: - return claude_response - elif len(gemini_response) > len(claude_response) * 1.2: - return gemini_response - return claude_response - - @commands.Cog.listener() - async def on_message(self, message): - if message.author.bot: - return - - should_respond = False - if self.bot.user in message.mentions: - should_respond = True - elif message.reference: - referenced_msg = await message.channel.fetch_message(message.reference.message_id) - if referenced_msg.author.id == self.bot.user.id: - should_respond = True - - if should_respond: - channel_id = str(message.channel.id) - - # Get conversation context - if channel_id not in self.conversation_context: - self.conversation_context[channel_id] = [] - - # Add message to context - self.conversation_context[channel_id].append(f"{message.author.name}: {message.content}") - - # Keep only last 5 messages for context - self.conversation_context[channel_id] = self.conversation_context[channel_id][-5:] - - async with message.channel.typing(): - try: - # Create prompt with context - context = "\n".join(self.conversation_context[channel_id]) - prompt = ( - "You are having a casual conversation. Be helpful but natural in your response. " - f"Previous messages:\n{context}\n\n" - "Reply in a conversational way without any special formatting or labels." - ) - - # Get and select best response - tasks = [ - self.fetch_claude_response(prompt), - self.fetch_gemini_response(prompt) - ] - claude_response, gemini_response = await asyncio.gather(*tasks) - response = await self.select_best_response(claude_response, gemini_response) - - # Clean up response - response = response.replace("AI:", "").replace("Assistant:", "").replace("Bot:", "").strip() - - # Send response and update context - await message.reply(response) - self.conversation_context[channel_id].append(f"Bot: {response}") - - except Exception as e: - await message.reply("Sorry, I'm having trouble responding right now!") - -async def setup(bot): +import discord +from discord.ext import commands +import anthropic +import google.generativeai as genai +import os +from typing import Optional +import asyncio +import aiohttp + +class InteractiveDM(commands.Cog): + """Cog for handling interactive DM interactions""" + + def __init__(self, bot): + self.bot = bot + self.anthropic_client = anthropic.Client(api_key=os.getenv('ANTHROPIC_API_KEY')) + genai.configure(api_key=os.getenv('GEMINI_API_KEY')) + self.model = genai.GenerativeModel('gemini-pro') + self.conversation_context = {} + + async def fetch_claude_response(self, prompt: str) -> str: + """Get response from Claude""" + try: + message = await self.anthropic_client.messages.create( + model="claude-2", + max_tokens=1000, + messages=[{"role": "user", "content": prompt}] + ) + return message.content[0].text + except Exception as e: + return f"Sorry, I'm having trouble thinking right now: {str(e)}" + + async def fetch_gemini_response(self, prompt: str) -> str: + """Get response from Gemini""" + try: + response = await self.model.generate_content(prompt) + return response.text + except Exception as e: + return f"Hmm, I need a moment to think: {str(e)}" + + async def select_best_response(self, claude_response: str, gemini_response: str) -> str: + """Select the better response""" + if len(claude_response) > len(gemini_response) * 1.2: + return claude_response + elif len(gemini_response) > len(claude_response) * 1.2: + return gemini_response + return claude_response + + @commands.Cog.listener() + async def on_message(self, message): + if message.author.bot: + return + + should_respond = False + if self.bot.user in message.mentions: + should_respond = True + elif message.reference: + referenced_msg = await message.channel.fetch_message(message.reference.message_id) + if referenced_msg.author.id == self.bot.user.id: + should_respond = True + + if should_respond: + channel_id = str(message.channel.id) + + # Get conversation context + if channel_id not in self.conversation_context: + self.conversation_context[channel_id] = [] + + # Add message to context + self.conversation_context[channel_id].append(f"{message.author.name}: {message.content}") + + # Keep only last 5 messages for context + self.conversation_context[channel_id] = self.conversation_context[channel_id][-5:] + + async with message.channel.typing(): + try: + # Create prompt with context + context = "\n".join(self.conversation_context[channel_id]) + prompt = ( + "You are having a casual conversation. Be helpful but natural in your response. " + f"Previous messages:\n{context}\n\n" + "Reply in a conversational way without any special formatting or labels." + ) + + # Get and select best response + tasks = [ + self.fetch_claude_response(prompt), + self.fetch_gemini_response(prompt) + ] + claude_response, gemini_response = await asyncio.gather(*tasks) + response = await self.select_best_response(claude_response, gemini_response) + + # Clean up response + response = response.replace("AI:", "").replace("Assistant:", "").replace("Bot:", "").strip() + + # Send response and update context + await message.reply(response) + self.conversation_context[channel_id].append(f"Bot: {response}") + + except Exception as e: + await message.reply("Sorry, I'm having trouble responding right now!") + +async def setup(bot): await bot.add_cog(InteractiveDM(bot)) \ No newline at end of file diff --git a/cogs/errors.py b/cogs/errors.py index e287d26..942df0a 100644 --- a/cogs/errors.py +++ b/cogs/errors.py @@ -1,92 +1,92 @@ -import discord -from discord.ext import commands -import traceback - -class ErrorHandler(commands.Cog): - """Cog for handling errors and displaying them professionally""" - - def __init__(self, bot): - self.bot = bot - - @commands.Cog.listener() - async def on_command_error(self, ctx, error): - log_channel_id = 1313272659026514050 - log_channel = self.bot.get_channel(log_channel_id) - - if isinstance(error, commands.MissingRequiredArgument): - embed = discord.Embed( - title="⚠️ Missing Required Argument", - description=f"**Error:** The command `{ctx.command}` requires additional information.\n\n" - f"**Details:** Missing parameter: `{error.param.name}`\n\n" - f"**Example Usage:**\n```\n{ctx.prefix}{ctx.command.qualified_name} {ctx.command.signature}\n```", - color=discord.Color.gold() - ) - - elif isinstance(error, commands.CommandNotFound): - command_name = ctx.message.content.split()[0][1:] # Remove prefix - embed = discord.Embed( - title="❌ Command Not Found", - description=f"**Error:** The command `{command_name}` does not exist.\n\n" - f"**Solution:** Use `{ctx.prefix}help` to see all available commands.\n\n" - f"**Note:** Commands are case-sensitive.", - color=discord.Color.red() - ) - - elif isinstance(error, commands.MissingPermissions): - embed = discord.Embed( - title="🔒 Missing Permissions", - description=f"**Error:** You lack the required permissions.\n\n" - f"**Required Permissions:**\n```\n{', '.join(error.missing_permissions)}\n```\n" - f"**Note:** Contact a server administrator if you believe this is a mistake.", - color=discord.Color.red() - ) - - elif isinstance(error, commands.BotMissingPermissions): - embed = discord.Embed( - title="🤖 Bot Missing Permissions", - description=f"**Error:** I don't have the required permissions.\n\n" - f"**Required Permissions:**\n```\n{', '.join(error.missing_permissions)}\n```\n" - f"**Solution:** Ask a server administrator to grant me these permissions.", - color=discord.Color.red() - ) - - elif isinstance(error, commands.CommandOnCooldown): - embed = discord.Embed( - title="⏳ Command on Cooldown", - description=f"**Error:** This command is on cooldown.\n\n" - f"**Time Remaining:** {error.retry_after:.1f} seconds\n\n" - f"**Note:** This limit helps prevent spam and ensures fair usage.", - color=discord.Color.blue() - ) - - else: - error_traceback = ''.join(traceback.format_exception(type(error), error, error.__traceback__)) - embed = discord.Embed( - title="⚠️ Unexpected Error", - description=f"**Error Type:** `{type(error).__name__}`\n\n" - f"**Details:**\n```py\n{str(error)}\n```\n\n" - f"**Developer Info:**\n```py\n{error_traceback[:1000]}\n```", - color=discord.Color.red() - ) - - # Add common footer - embed.set_footer(text=f"Command: {ctx.prefix}{ctx.command if ctx.command else 'Unknown'}") - - # Send error to user - await ctx.send(embed=embed) - - # Log error - if log_channel: - log_embed = discord.Embed( - title="🔍 Error Log Entry", - description=f"Error occurred in {ctx.guild.name}", - color=discord.Color.red() - ) - log_embed.add_field(name="User", value=f"{ctx.author} ({ctx.author.id})", inline=True) - log_embed.add_field(name="Channel", value=f"{ctx.channel.name} ({ctx.channel.id})", inline=True) - log_embed.add_field(name="Command", value=f"{ctx.message.content[:1000]}", inline=False) - log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) - await log_channel.send(embed=log_embed) - -async def setup(bot): +import discord +from discord.ext import commands +import traceback + +class ErrorHandler(commands.Cog): + """Cog for handling errors and displaying them professionally""" + + def __init__(self, bot): + self.bot = bot + + @commands.Cog.listener() + async def on_command_error(self, ctx, error): + log_channel_id = 1313272659026514050 + log_channel = self.bot.get_channel(log_channel_id) + + if isinstance(error, commands.MissingRequiredArgument): + embed = discord.Embed( + title="⚠️ Missing Required Argument", + description=f"**Error:** The command `{ctx.command}` requires additional information.\n\n" + f"**Details:** Missing parameter: `{error.param.name}`\n\n" + f"**Example Usage:**\n```\n{ctx.prefix}{ctx.command.qualified_name} {ctx.command.signature}\n```", + color=discord.Color.gold() + ) + + elif isinstance(error, commands.CommandNotFound): + command_name = ctx.message.content.split()[0][1:] # Remove prefix + embed = discord.Embed( + title="❌ Command Not Found", + description=f"**Error:** The command `{command_name}` does not exist.\n\n" + f"**Solution:** Use `{ctx.prefix}help` to see all available commands.\n\n" + f"**Note:** Commands are case-sensitive.", + color=discord.Color.red() + ) + + elif isinstance(error, commands.MissingPermissions): + embed = discord.Embed( + title="🔒 Missing Permissions", + description=f"**Error:** You lack the required permissions.\n\n" + f"**Required Permissions:**\n```\n{', '.join(error.missing_permissions)}\n```\n" + f"**Note:** Contact a server administrator if you believe this is a mistake.", + color=discord.Color.red() + ) + + elif isinstance(error, commands.BotMissingPermissions): + embed = discord.Embed( + title="🤖 Bot Missing Permissions", + description=f"**Error:** I don't have the required permissions.\n\n" + f"**Required Permissions:**\n```\n{', '.join(error.missing_permissions)}\n```\n" + f"**Solution:** Ask a server administrator to grant me these permissions.", + color=discord.Color.red() + ) + + elif isinstance(error, commands.CommandOnCooldown): + embed = discord.Embed( + title="⏳ Command on Cooldown", + description=f"**Error:** This command is on cooldown.\n\n" + f"**Time Remaining:** {error.retry_after:.1f} seconds\n\n" + f"**Note:** This limit helps prevent spam and ensures fair usage.", + color=discord.Color.blue() + ) + + else: + error_traceback = ''.join(traceback.format_exception(type(error), error, error.__traceback__)) + embed = discord.Embed( + title="⚠️ Unexpected Error", + description=f"**Error Type:** `{type(error).__name__}`\n\n" + f"**Details:**\n```py\n{str(error)}\n```\n\n" + f"**Developer Info:**\n```py\n{error_traceback[:1000]}\n```", + color=discord.Color.red() + ) + + # Add common footer + embed.set_footer(text=f"Command: {ctx.prefix}{ctx.command if ctx.command else 'Unknown'}") + + # Send error to user + await ctx.send(embed=embed) + + # Log error + if log_channel: + log_embed = discord.Embed( + title="🔍 Error Log Entry", + description=f"Error occurred in {ctx.guild.name}", + color=discord.Color.red() + ) + log_embed.add_field(name="User", value=f"{ctx.author} ({ctx.author.id})", inline=True) + log_embed.add_field(name="Channel", value=f"{ctx.channel.name} ({ctx.channel.id})", inline=True) + log_embed.add_field(name="Command", value=f"{ctx.message.content[:1000]}", inline=False) + log_embed.add_field(name="Error", value=f"```py\n{error_traceback[:1000]}\n```", inline=False) + await log_channel.send(embed=log_embed) + +async def setup(bot): await bot.add_cog(ErrorHandler(bot)) \ No newline at end of file diff --git a/cogs/fun.py b/cogs/fun.py index 3d14412..2f51b7f 100644 --- a/cogs/fun.py +++ b/cogs/fun.py @@ -1,584 +1,584 @@ -import discord -from discord.ext import commands -from discord import app_commands -import random -import asyncio - -class Fun(commands.Cog): - def __init__(self, bot): - self.bot = bot - - @commands.command(name="roll") - async def roll_command(self, ctx, dice: str = None): - """Rolls a dice in NdN format.""" - if dice is None: - embed = discord.Embed( - title="Error", - description="You must specify the dice format (e.g., 2d6).", - color=discord.Color.red() - ) - await ctx.send(embed=embed) - return - - try: - rolls, limit = map(int, dice.split('d')) - result = [random.randint(1, limit) for r in range(rolls)] - embed = discord.Embed( - title="Dice Roll", - description=f'Results: {", ".join(map(str, result))}', - color=discord.Color.green() - ) - await ctx.send(embed=embed) - except Exception: - embed = discord.Embed( - title="Error", - description="Format has to be in NdN!", - color=discord.Color.red() - ) - await ctx.send(embed=embed) - - @app_commands.command(name="roll", description="Rolls a dice in NdN format.") - async def roll(self, interaction: discord.Interaction, dice: str = None): - """Rolls a dice in NdN format.""" - if dice is None: - embed = discord.Embed( - title="Error", - description="You must specify the dice format (e.g., 2d6).", - color=discord.Color.red() - ) - await interaction.response.send_message(embed=embed, ephemeral=True) - return - - try: - rolls, limit = map(int, dice.split('d')) - result = [random.randint(1, limit) for r in range(rolls)] - embed = discord.Embed( - title="Dice Roll", - description=f'Results: {", ".join(map(str, result))}', - color=discord.Color.green() - ) - await interaction.response.send_message(embed=embed) - except Exception: - embed = discord.Embed( - title="Error", - description="Format has to be in NdN!", - color=discord.Color.red() - ) - await interaction.response.send_message(embed=embed, ephemeral=True) - - @commands.command(name="choose") - async def choose_command(self, ctx, *, choices: str = None): - """Chooses between multiple choices.""" - if choices is None: - embed = discord.Embed( - title="Error", - description="You must specify choices separated by commas.", - color=discord.Color.red() - ) - await ctx.send(embed=embed) - return - - choices_list = choices.split(',') - choice = random.choice(choices_list) - embed = discord.Embed( - title="Choice", - description=f'I choose: {choice.strip()}', - color=discord.Color.green() - ) - await ctx.send(embed=embed) - - @app_commands.command(name="choose", description="Chooses between multiple choices.") - async def choose(self, interaction: discord.Interaction, choices: str = None): - """Chooses between multiple choices.""" - if choices is None: - embed = discord.Embed( - title="Error", - description="You must specify choices separated by commas.", - color=discord.Color.red() - ) - await interaction.response.send_message(embed=embed, ephemeral=True) - return - - choices_list = choices.split(',') - choice = random.choice(choices_list) - embed = discord.Embed( - title="Choice", - description=f'I choose: {choice.strip()}', - color=discord.Color.green() - ) - await interaction.response.send_message(embed=embed) - - @commands.command(name="poll") - async def poll_command(self, ctx, question: str = None, *, options: str = None): - """Creates a poll with reactions.""" - if question is None or options is None: - embed = discord.Embed( - title="Error", - description="You must specify a question and options.", - color=discord.Color.red() - ) - await ctx.send(embed=embed) - return - - options_list = options.split(',') - if len(options_list) > 10: - embed = discord.Embed( - title="Error", - description="You can only have up to 10 options!", - color=discord.Color.red() - ) - await ctx.send(embed=embed) - return - - reactions = ['1️⃣', '2️⃣', '3️⃣', '4️⃣', '5️⃣', '6️⃣', '7️⃣', '8️⃣', '9️⃣', '🔟'] - - description = [] - for i, option in enumerate(options_list): - description.append(f'{reactions[i]} {option}') - - embed = discord.Embed(title=question, description='\n'.join(description), color=discord.Color.blue()) - poll_message = await ctx.send(embed=embed) - - for i in range(len(options_list)): - await poll_message.add_reaction(reactions[i]) - - @app_commands.command(name="poll", description="Create a poll") - async def poll(self, interaction: discord.Interaction, question: str): - """Create a poll""" - embed = discord.Embed( - title="Poll", - description=question, - color=discord.Color.blue() - ) - message = await interaction.response.send_message(embed=embed) - await message.add_reaction("👍") - await message.add_reaction("👎") - - @commands.command(name="trivia") - async def trivia_command(self, ctx): - """Starts a trivia game with programming questions.""" - questions = [ - {"question": "What does 'HTML' stand for?", "answer": "HyperText Markup Language"}, - {"question": "What is the purpose of CSS in web development?", "answer": "Styling and layout"}, - {"question": "What is the latest version of Python as of 2024?", "answer": "Python 3.12"}, - {"question": "What is the full form of 'JSON'?", "answer": "JavaScript Object Notation"}, - {"question": "Which programming language is known as the backbone of the web?", "answer": "JavaScript"}, - {"question": "What is the main use of SQL?", "answer": "Managing and querying databases"}, - {"question": "Which language is primarily used for iOS app development?", "answer": "Swift"}, - {"question": "Which language is famous for its tagline 'write once, run anywhere'?", "answer": "Java"}, - {"question": "What is the primary purpose of the Git version control system?", "answer": "Tracking changes in code"}, - {"question": "Which keyword is used to create a function in Python?", "answer": "def"}, - {"question": "What is the extension of a C++ source file?", "answer": ".cpp"}, - {"question": "Which symbol is used for comments in JavaScript?", "answer": "//"}, - {"question": "What is the command to initialize a Git repository?", "answer": "git init"}, - {"question": "Which Python library is commonly used for data analysis?", "answer": "Pandas"}, - {"question": "What does 'OOP' stand for?", "answer": "Object-Oriented Programming"}, - {"question": "Which operator is used to access members of a class in C++?", "answer": "."}, - {"question": "Which function in Python is used to get user input?", "answer": "input()"}, - {"question": "What is the name of the first element in an array in most programming languages?", "answer": "Index 0"}, - {"question": "Which programming language is commonly used for machine learning?", "answer": "Python"}, - {"question": "Which language is primarily used to create dynamic and interactive web pages?", "answer": "JavaScript"}, - {"question": "What is the file extension for JavaScript files?", "answer": ".js"}, - {"question": "Which keyword is used to declare a constant in JavaScript?", "answer": "const"}, - {"question": "What is a 'for loop' used for in programming?", "answer": "Iterating over a sequence"}, - {"question": "What does 'API' stand for?", "answer": "Application Programming Interface"}, - {"question": "Which database uses collections and documents instead of tables and rows?", "answer": "MongoDB"}, - {"question": "Which library is commonly used for creating user interfaces in React?", "answer": "ReactDOM"}, - {"question": "What is the main purpose of Docker?", "answer": "Containerization"}, - {"question": "Which programming paradigm focuses on 'functions' as the primary building blocks?", "answer": "Functional Programming"}, - {"question": "What is the command to install a Python package using pip?", "answer": "pip install"}, - {"question": "What is the use of the 'return' keyword in programming?", "answer": "To return a value from a function"}, - {"question": "Which tag is used to add JavaScript in an HTML file?", "answer": "