Spaces:
Sleeping
Sleeping
Captain Ezio
commited on
Commit
·
e6eeb72
1
Parent(s):
1fbd78c
Looks great
Browse files- Powers/database/flood_db.py +12 -9
- Powers/plugins/bans.py +7 -7
- Powers/plugins/flood.py +13 -11
- Powers/plugins/muting.py +4 -4
- Powers/plugins/start.py +8 -8
- Powers/utils/extras.py +36 -31
Powers/database/flood_db.py
CHANGED
@@ -21,7 +21,7 @@ class Floods(MongoDB):
|
|
21 |
action: str,
|
22 |
):
|
23 |
with INSERTION_LOCK:
|
24 |
-
curr = self.find_one({"chat_id": chat_id
|
25 |
if curr:
|
26 |
if not(limit == int(curr['limit']) or within == int(curr['within']) or action == str(curr['action'])):
|
27 |
return self.update(
|
@@ -32,14 +32,17 @@ class Floods(MongoDB):
|
|
32 |
"action": action,
|
33 |
}
|
34 |
)
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
43 |
|
44 |
def is_chat(self, chat_id: int):
|
45 |
with INSERTION_LOCK:
|
|
|
21 |
action: str,
|
22 |
):
|
23 |
with INSERTION_LOCK:
|
24 |
+
curr = self.find_one({"chat_id": chat_id})
|
25 |
if curr:
|
26 |
if not(limit == int(curr['limit']) or within == int(curr['within']) or action == str(curr['action'])):
|
27 |
return self.update(
|
|
|
32 |
"action": action,
|
33 |
}
|
34 |
)
|
35 |
+
else:
|
36 |
+
return False
|
37 |
+
else:
|
38 |
+
return self.insert_one(
|
39 |
+
{
|
40 |
+
"chat_id" : chat_id,
|
41 |
+
"limit": limit,
|
42 |
+
"within": within,
|
43 |
+
"action" : action
|
44 |
+
},
|
45 |
+
)
|
46 |
|
47 |
def is_chat(self, chat_id: int):
|
48 |
with INSERTION_LOCK:
|
Powers/plugins/bans.py
CHANGED
@@ -102,7 +102,7 @@ async def tban_usr(c: Gojo, m: Message):
|
|
102 |
)
|
103 |
await m.reply_animation(
|
104 |
reply_to_message_id=r_id,
|
105 |
-
animation=choice(BAN_GIFS),
|
106 |
caption=txt,
|
107 |
reply_markup=keyboard,
|
108 |
parse_mode=enums.ParseMode.HTML,
|
@@ -303,7 +303,7 @@ async def dtban_usr(c: Gojo, m: Message):
|
|
303 |
)
|
304 |
await c.send_animation(
|
305 |
chat_id=m.chat.id,
|
306 |
-
animation=choice(BAN_GIFS),
|
307 |
caption=txt,
|
308 |
reply_markup=keyboard,
|
309 |
parse_mode=enums.ParseMode.HTML,
|
@@ -390,7 +390,7 @@ async def kick_usr(c: Gojo, m: Message):
|
|
390 |
# await m.reply_text(txt, reply_to_message_id=r_id)
|
391 |
await m.reply_animation(
|
392 |
reply_to_message_id=r_id,
|
393 |
-
animation=choice(KICK_GIFS),
|
394 |
caption=txt,
|
395 |
parse_mode=enums.ParseMode.HTML,
|
396 |
)
|
@@ -538,7 +538,7 @@ async def dkick_usr(c: Gojo, m: Message):
|
|
538 |
await c.send_message(m.chat.id, txt)
|
539 |
await c.send_animation(
|
540 |
chat_id=m.chat.id,
|
541 |
-
animation=choice(KICK_GIFS),
|
542 |
caption=txt,
|
543 |
parse_mode=enums.ParseMode.HTML,
|
544 |
)
|
@@ -755,7 +755,7 @@ async def dban_usr(c: Gojo, m: Message):
|
|
755 |
],
|
756 |
)
|
757 |
await c.send_animation(
|
758 |
-
m.chat.id, animation=choice(BAN_GIFS), caption=txt, reply_markup=keyboard
|
759 |
)
|
760 |
except ChatAdminRequired:
|
761 |
await m.reply_text(text="I'm not admin or I don't have rights.")
|
@@ -852,7 +852,7 @@ async def ban_usr(c: Gojo, m: Message):
|
|
852 |
],
|
853 |
)
|
854 |
await m.reply_animation(
|
855 |
-
animation=choice(BAN_GIFS),
|
856 |
caption=txt,
|
857 |
reply_markup=keyboard,
|
858 |
reply_to_message_id=r_id,
|
@@ -913,7 +913,7 @@ async def kickme(_, m: Message):
|
|
913 |
await m.chat.ban_member(m.from_user.id)
|
914 |
txt = "Why not let me help you!"
|
915 |
txt += f"\n<b>Reason</b>: {reason}" if reason else ""
|
916 |
-
await m.reply_animation(animation=choice(KICK_GIFS), caption=txt)
|
917 |
await m.chat.unban_member(m.from_user.id)
|
918 |
except RPCError as ef:
|
919 |
await m.reply_text(
|
|
|
102 |
)
|
103 |
await m.reply_animation(
|
104 |
reply_to_message_id=r_id,
|
105 |
+
animation=str(choice(BAN_GIFS)),
|
106 |
caption=txt,
|
107 |
reply_markup=keyboard,
|
108 |
parse_mode=enums.ParseMode.HTML,
|
|
|
303 |
)
|
304 |
await c.send_animation(
|
305 |
chat_id=m.chat.id,
|
306 |
+
animation=str(choice(BAN_GIFS)),
|
307 |
caption=txt,
|
308 |
reply_markup=keyboard,
|
309 |
parse_mode=enums.ParseMode.HTML,
|
|
|
390 |
# await m.reply_text(txt, reply_to_message_id=r_id)
|
391 |
await m.reply_animation(
|
392 |
reply_to_message_id=r_id,
|
393 |
+
animation=str(choice(KICK_GIFS)),
|
394 |
caption=txt,
|
395 |
parse_mode=enums.ParseMode.HTML,
|
396 |
)
|
|
|
538 |
await c.send_message(m.chat.id, txt)
|
539 |
await c.send_animation(
|
540 |
chat_id=m.chat.id,
|
541 |
+
animation=str(choice(KICK_GIFS)),
|
542 |
caption=txt,
|
543 |
parse_mode=enums.ParseMode.HTML,
|
544 |
)
|
|
|
755 |
],
|
756 |
)
|
757 |
await c.send_animation(
|
758 |
+
m.chat.id, animation=str(choice(BAN_GIFS)), caption=txt, reply_markup=keyboard
|
759 |
)
|
760 |
except ChatAdminRequired:
|
761 |
await m.reply_text(text="I'm not admin or I don't have rights.")
|
|
|
852 |
],
|
853 |
)
|
854 |
await m.reply_animation(
|
855 |
+
animation=str(choice(BAN_GIFS)),
|
856 |
caption=txt,
|
857 |
reply_markup=keyboard,
|
858 |
reply_to_message_id=r_id,
|
|
|
913 |
await m.chat.ban_member(m.from_user.id)
|
914 |
txt = "Why not let me help you!"
|
915 |
txt += f"\n<b>Reason</b>: {reason}" if reason else ""
|
916 |
+
await m.reply_animation(animation=str(choice(KICK_GIFS)), caption=txt)
|
917 |
await m.chat.unban_member(m.from_user.id)
|
918 |
except RPCError as ef:
|
919 |
await m.reply_text(
|
Powers/plugins/flood.py
CHANGED
@@ -126,21 +126,23 @@ async def flood_set(c: Gojo, m: Message):
|
|
126 |
split = m.text.split(None, 1)
|
127 |
c_id = m.chat.id
|
128 |
is_flood = Flood.is_chat(c_id)
|
|
|
|
|
|
|
129 |
if len(split) == 1:
|
130 |
c_id = m.chat.id
|
131 |
if is_flood:
|
132 |
-
saction = is_flood[2]
|
133 |
-
slimit = is_flood[0]
|
134 |
-
swithin = is_flood[1]
|
135 |
return await m.reply_text(f"Flood is on for this chat\n**Action**:{saction}\n**Messages**:{slimit} within {swithin} sec")
|
136 |
return await m.reply_text("Flood protection is off of this chat.")
|
137 |
|
138 |
-
|
139 |
c_id = m.chat.id
|
140 |
if split[1].lower() in on_key:
|
141 |
-
|
142 |
-
|
143 |
-
|
|
|
|
|
144 |
if split[1].lower() in off_key:
|
145 |
Flood.rm_flood(m.chat.id, slimit, swithin, saction)
|
146 |
await m.reply_text("Flood protection has been stopped for this chat")
|
@@ -237,7 +239,7 @@ async def reverse_callbacks(c: Gojo, q: CallbackQuery):
|
|
237 |
await q.message.edit_text(f"{q.from_user.mention} unmuted {whoo.mention}!")
|
238 |
return
|
239 |
|
240 |
-
@Gojo.on_message(filters.all & ~filters.bot
|
241 |
async def flood_watcher(c: Gojo, m: Message):
|
242 |
c_id = m.chat.id
|
243 |
u_id = m.from_user.id
|
@@ -287,7 +289,7 @@ async def flood_watcher(c: Gojo, m: Message):
|
|
287 |
)
|
288 |
txt = "Don't dare to spam here if I am around!"
|
289 |
await m.reply_animation(
|
290 |
-
animation=choice(BAN_GIFS),
|
291 |
caption=txt,
|
292 |
reply_markup=keyboard,
|
293 |
)
|
@@ -319,7 +321,7 @@ async def flood_watcher(c: Gojo, m: Message):
|
|
319 |
await m.chat.ban_member(u_id)
|
320 |
txt = "Don't dare to spam here if I am around!"
|
321 |
await m.reply_animation(
|
322 |
-
animation=choice(KICK_GIFS),
|
323 |
caption=txt,
|
324 |
)
|
325 |
await m.chat.unban_member(u_id)
|
@@ -362,7 +364,7 @@ async def flood_watcher(c: Gojo, m: Message):
|
|
362 |
)
|
363 |
txt = "Don't dare to spam here if I am around!"
|
364 |
await m.reply_animation(
|
365 |
-
animation=choice(MUTE_GIFS),
|
366 |
caption=txt,
|
367 |
reply_markup=keyboard,
|
368 |
)
|
|
|
126 |
split = m.text.split(None, 1)
|
127 |
c_id = m.chat.id
|
128 |
is_flood = Flood.is_chat(c_id)
|
129 |
+
saction = is_flood[2]
|
130 |
+
slimit = is_flood[0]
|
131 |
+
swithin = is_flood[1]
|
132 |
if len(split) == 1:
|
133 |
c_id = m.chat.id
|
134 |
if is_flood:
|
|
|
|
|
|
|
135 |
return await m.reply_text(f"Flood is on for this chat\n**Action**:{saction}\n**Messages**:{slimit} within {swithin} sec")
|
136 |
return await m.reply_text("Flood protection is off of this chat.")
|
137 |
|
138 |
+
elif len(split) == 2:
|
139 |
c_id = m.chat.id
|
140 |
if split[1].lower() in on_key:
|
141 |
+
if not is_flood:
|
142 |
+
Flood.save_flood(m.chat.id, 5, 5, 'mute')
|
143 |
+
await m.reply_text("Flood protection has been started for this group.")
|
144 |
+
return
|
145 |
+
return await m.reply_text(f"Flood is on for this chat\n**Action**:{saction}\n**Messages**:{slimit} within {swithin} sec")
|
146 |
if split[1].lower() in off_key:
|
147 |
Flood.rm_flood(m.chat.id, slimit, swithin, saction)
|
148 |
await m.reply_text("Flood protection has been stopped for this chat")
|
|
|
239 |
await q.message.edit_text(f"{q.from_user.mention} unmuted {whoo.mention}!")
|
240 |
return
|
241 |
|
242 |
+
@Gojo.on_message(filters.all & ~filters.bot | ~filters.private, 10)
|
243 |
async def flood_watcher(c: Gojo, m: Message):
|
244 |
c_id = m.chat.id
|
245 |
u_id = m.from_user.id
|
|
|
289 |
)
|
290 |
txt = "Don't dare to spam here if I am around!"
|
291 |
await m.reply_animation(
|
292 |
+
animation=str(choice(BAN_GIFS)),
|
293 |
caption=txt,
|
294 |
reply_markup=keyboard,
|
295 |
)
|
|
|
321 |
await m.chat.ban_member(u_id)
|
322 |
txt = "Don't dare to spam here if I am around!"
|
323 |
await m.reply_animation(
|
324 |
+
animation=str(choice(KICK_GIFS)),
|
325 |
caption=txt,
|
326 |
)
|
327 |
await m.chat.unban_member(u_id)
|
|
|
364 |
)
|
365 |
txt = "Don't dare to spam here if I am around!"
|
366 |
await m.reply_animation(
|
367 |
+
animation=str(choice(MUTE_GIFS)),
|
368 |
caption=txt,
|
369 |
reply_markup=keyboard,
|
370 |
)
|
Powers/plugins/muting.py
CHANGED
@@ -101,7 +101,7 @@ async def tmute_usr(c: Gojo, m: Message):
|
|
101 |
],
|
102 |
)
|
103 |
await m.reply_animation(
|
104 |
-
animation=choice(MUTE_GIFS),
|
105 |
caption=txt,
|
106 |
reply_markup=keyboard,
|
107 |
reply_to_message_id=r_id,
|
@@ -206,7 +206,7 @@ async def dtmute_usr(c: Gojo, m: Message):
|
|
206 |
],
|
207 |
)
|
208 |
await c.send_animation(
|
209 |
-
animation=choice(MUTE_GIFS),
|
210 |
chat_id=m.chat.id,
|
211 |
caption=txt,
|
212 |
reply_markup=keyboard,
|
@@ -380,7 +380,7 @@ async def mute_usr(c: Gojo, m: Message):
|
|
380 |
],
|
381 |
)
|
382 |
await m.reply_animation(
|
383 |
-
animation=choice(MUTE_GIFS),
|
384 |
caption=txt,
|
385 |
reply_markup=keyboard,
|
386 |
reply_to_message_id=r_id,
|
@@ -532,7 +532,7 @@ async def dmute_usr(c: Gojo, m: Message):
|
|
532 |
],
|
533 |
)
|
534 |
await c.send_animation(
|
535 |
-
animation=choice(MUTE_GIFS),
|
536 |
chat_id=m.chat.id,
|
537 |
caption=txt,
|
538 |
reply_markup=keyboard,
|
|
|
101 |
],
|
102 |
)
|
103 |
await m.reply_animation(
|
104 |
+
animation=str(choice(MUTE_GIFS)),
|
105 |
caption=txt,
|
106 |
reply_markup=keyboard,
|
107 |
reply_to_message_id=r_id,
|
|
|
206 |
],
|
207 |
)
|
208 |
await c.send_animation(
|
209 |
+
animation=str(choice(MUTE_GIFS)),
|
210 |
chat_id=m.chat.id,
|
211 |
caption=txt,
|
212 |
reply_markup=keyboard,
|
|
|
380 |
],
|
381 |
)
|
382 |
await m.reply_animation(
|
383 |
+
animation=str(choice(MUTE_GIFS)),
|
384 |
caption=txt,
|
385 |
reply_markup=keyboard,
|
386 |
reply_to_message_id=r_id,
|
|
|
532 |
],
|
533 |
)
|
534 |
await c.send_animation(
|
535 |
+
animation=str(choice(MUTE_GIFS)),
|
536 |
chat_id=m.chat.id,
|
537 |
caption=txt,
|
538 |
reply_markup=keyboard,
|
Powers/plugins/start.py
CHANGED
@@ -33,7 +33,7 @@ You can donate by contacting my owner: [Captain Ezio](http://t.me/iamgojoof6eyes
|
|
33 |
"""
|
34 |
|
35 |
LOGGER.info(f"{m.from_user.id} fetched donation text in {m.chat.id}")
|
36 |
-
await m.reply_photo(photo=choice(StartPic), caption=cpt)
|
37 |
return
|
38 |
|
39 |
|
@@ -83,7 +83,7 @@ async def start(c: Gojo, m: Message):
|
|
83 |
return
|
84 |
|
85 |
await m.reply_photo(
|
86 |
-
photo=choice(StartPic),
|
87 |
caption=help_msg,
|
88 |
parse_mode=enums.ParseMode.MARKDOWN,
|
89 |
reply_markup=help_kb,
|
@@ -99,7 +99,7 @@ Hit /help to find out more about how to use me in my full potential!
|
|
99 |
Join my [News Channel](https://t.me/gojo_bots_network) to get information on all the latest updates."""
|
100 |
|
101 |
await m.reply_photo(
|
102 |
-
photo=choice(StartPic),
|
103 |
caption=cpt,
|
104 |
reply_markup=(await gen_start_kb(m)),
|
105 |
quote=True,
|
@@ -119,7 +119,7 @@ Join my [News Channel](https://t.me/gojo_bots_network) to get information on all
|
|
119 |
)
|
120 |
|
121 |
await m.reply_photo(
|
122 |
-
photo=choice(StartPic),
|
123 |
caption="I'm alive :3",
|
124 |
reply_markup=kb,
|
125 |
quote=True,
|
@@ -167,7 +167,7 @@ Commands available:
|
|
167 |
pass
|
168 |
except QueryIdInvalid:
|
169 |
await q.message.reply_photo(
|
170 |
-
photo=choice(StartPic), caption=cpt, reply_markup=keyboard
|
171 |
)
|
172 |
|
173 |
await q.answer()
|
@@ -194,7 +194,7 @@ async def help_menu(_, m: Message):
|
|
194 |
help_msg, parse_mode=enums.ParseMode.MARKDOWN, quote=True
|
195 |
)
|
196 |
await m.reply_photo(
|
197 |
-
photo=choice(StartPic),
|
198 |
caption=help_msg,
|
199 |
parse_mode=enums.ParseMode.MARKDOWN,
|
200 |
reply_markup=help_kb,
|
@@ -203,7 +203,7 @@ async def help_menu(_, m: Message):
|
|
203 |
else:
|
204 |
|
205 |
await m.reply_photo(
|
206 |
-
photo=choice(StartPic),
|
207 |
caption=f"Press the button below to get help for <i>{help_option}</i>",
|
208 |
reply_markup=InlineKeyboardMarkup(
|
209 |
[
|
@@ -241,7 +241,7 @@ Commands available:
|
|
241 |
msg = "Contact me in PM to get the list of possible commands."
|
242 |
|
243 |
await m.reply_photo(
|
244 |
-
photo=choice(StartPic),
|
245 |
caption=msg,
|
246 |
reply_markup=keyboard,
|
247 |
)
|
|
|
33 |
"""
|
34 |
|
35 |
LOGGER.info(f"{m.from_user.id} fetched donation text in {m.chat.id}")
|
36 |
+
await m.reply_photo(photo=str(choice(StartPic)), caption=cpt)
|
37 |
return
|
38 |
|
39 |
|
|
|
83 |
return
|
84 |
|
85 |
await m.reply_photo(
|
86 |
+
photo=str(choice(StartPic)),
|
87 |
caption=help_msg,
|
88 |
parse_mode=enums.ParseMode.MARKDOWN,
|
89 |
reply_markup=help_kb,
|
|
|
99 |
Join my [News Channel](https://t.me/gojo_bots_network) to get information on all the latest updates."""
|
100 |
|
101 |
await m.reply_photo(
|
102 |
+
photo=str(choice(StartPic)),
|
103 |
caption=cpt,
|
104 |
reply_markup=(await gen_start_kb(m)),
|
105 |
quote=True,
|
|
|
119 |
)
|
120 |
|
121 |
await m.reply_photo(
|
122 |
+
photo=str(choice(StartPic)),
|
123 |
caption="I'm alive :3",
|
124 |
reply_markup=kb,
|
125 |
quote=True,
|
|
|
167 |
pass
|
168 |
except QueryIdInvalid:
|
169 |
await q.message.reply_photo(
|
170 |
+
photo=str(choice(StartPic)), caption=cpt, reply_markup=keyboard
|
171 |
)
|
172 |
|
173 |
await q.answer()
|
|
|
194 |
help_msg, parse_mode=enums.ParseMode.MARKDOWN, quote=True
|
195 |
)
|
196 |
await m.reply_photo(
|
197 |
+
photo=str(choice(StartPic)),
|
198 |
caption=help_msg,
|
199 |
parse_mode=enums.ParseMode.MARKDOWN,
|
200 |
reply_markup=help_kb,
|
|
|
203 |
else:
|
204 |
|
205 |
await m.reply_photo(
|
206 |
+
photo=str(choice(StartPic)),
|
207 |
caption=f"Press the button below to get help for <i>{help_option}</i>",
|
208 |
reply_markup=InlineKeyboardMarkup(
|
209 |
[
|
|
|
241 |
msg = "Contact me in PM to get the list of possible commands."
|
242 |
|
243 |
await m.reply_photo(
|
244 |
+
photo=str(choice(StartPic)),
|
245 |
caption=msg,
|
246 |
reply_markup=keyboard,
|
247 |
)
|
Powers/utils/extras.py
CHANGED
@@ -641,37 +641,16 @@ NO NO NONONO NONO
|
|
641 |
]
|
642 |
|
643 |
StartPic = [
|
644 |
-
"https://te.legra.ph/file/
|
645 |
-
"https://te.legra.ph/file/
|
646 |
-
"https://te.legra.ph/file/
|
647 |
-
"https://te.legra.ph/file/
|
648 |
-
"https://te.legra.ph/file/
|
649 |
-
"https://te.legra.ph/file/
|
650 |
-
"https://te.legra.ph/file/
|
651 |
-
"https://te.legra.ph/file/
|
652 |
-
"https://te.legra.ph/file/
|
653 |
-
"https://te.legra.ph/file/
|
654 |
-
"https://te.legra.ph/file/e32b2063a06deb34fc901.jpg",
|
655 |
-
"https://te.legra.ph/file/9ee77ea6bbe6f4ad13b65.jpg",
|
656 |
-
"https://te.legra.ph/file/23e0a389fb5df7900c686.jpg",
|
657 |
-
"https://te.legra.ph/file/fc0557000a350267adc0d.jpg",
|
658 |
-
"https://te.legra.ph/file/b3a46c16fa72f24dfec9f.jpg",
|
659 |
-
"https://te.legra.ph/file/6f80fcd24f20e950d9ed0.jpg",
|
660 |
-
"https://te.legra.ph/file/322466833973279848e60.jpg",
|
661 |
-
"https://te.legra.ph/file/cd381fd6f9960555664f6.jpg",
|
662 |
-
"https://te.legra.ph/file/c74c4f4be365971311510.jpg",
|
663 |
-
"https://te.legra.ph/file/afe46e0784ecd94fdef4a.jpg",
|
664 |
-
"https://te.legra.ph/file/6d4ae604c118cb49ab7ed.jpg",
|
665 |
-
"https://te.legra.ph/file/a7a78ff8d710583f28e72.jpg",
|
666 |
-
"https://te.legra.ph/file/fe9c620d294f4f47f4350.jpg",
|
667 |
-
"https://te.legra.ph/file/4cdf315e2925d8b4ef6ae.jpg",
|
668 |
-
"https://te.legra.ph/file/b480c0989f1e4a9ea63c7.jpg",
|
669 |
-
"https://te.legra.ph/file/37423e9680e3f79c9eb15.jpg",
|
670 |
-
"https://te.legra.ph/file/4a9c4663d0120cff7cc82.jpg",
|
671 |
-
"https://te.legra.ph/file/56d72d125005a16dba7b8.jpg",
|
672 |
-
"https://te.legra.ph/file/c10f1b32adaf93c1a9fe1.jpg",
|
673 |
-
"https://te.legra.ph/file/68c607517cca7d08e8910.jpg",
|
674 |
-
"https://te.legra.ph/file/c86855e6d5a5668748ce1.jpg",
|
675 |
"https://te.legra.ph/file/e999d233a4a29a7ccc7fa.jpg",
|
676 |
"https://te.legra.ph/file/2baf1c80ee22ffe1d73fb.jpg",
|
677 |
"https://te.legra.ph/file/29133374260bf9e7786ee.jpg",
|
@@ -684,4 +663,30 @@ StartPic = [
|
|
684 |
"https://te.legra.ph/file/1751252a9f0483811e9b9.jpg",
|
685 |
"https://te.legra.ph/file/380b862e0248225cc1a45.jpg",
|
686 |
"https://te.legra.ph/file/f314f89640ce4b4118e9e.jpg",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
]
|
|
|
641 |
]
|
642 |
|
643 |
StartPic = [
|
644 |
+
"https://te.legra.ph/file/98f45051aa26391dd9e67.jpg",
|
645 |
+
"https://te.legra.ph/file/674b41488884ae4def0cb.jpg",
|
646 |
+
"https://te.legra.ph/file/481d3286b4dffe97fd7b5.jpg",
|
647 |
+
"https://te.legra.ph/file/ffe9df5cfd9ec7d892dd6.jpg",
|
648 |
+
"https://te.legra.ph/file/e8d7fadf9d8729e272487.jpg",
|
649 |
+
"https://te.legra.ph/file/ae477d11bdab6c6307764.jpg",
|
650 |
+
"https://te.legra.ph/file/614b85854d28428019bc5.jpg",
|
651 |
+
"https://te.legra.ph/file/88b9e9cded8c5f449d7cc.jpg",
|
652 |
+
"https://te.legra.ph/file/080f3631e7885d593eb17.jpg",
|
653 |
+
"https://te.legra.ph/file/39b720b36106a381fd42b.jpg",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
654 |
"https://te.legra.ph/file/e999d233a4a29a7ccc7fa.jpg",
|
655 |
"https://te.legra.ph/file/2baf1c80ee22ffe1d73fb.jpg",
|
656 |
"https://te.legra.ph/file/29133374260bf9e7786ee.jpg",
|
|
|
663 |
"https://te.legra.ph/file/1751252a9f0483811e9b9.jpg",
|
664 |
"https://te.legra.ph/file/380b862e0248225cc1a45.jpg",
|
665 |
"https://te.legra.ph/file/f314f89640ce4b4118e9e.jpg",
|
666 |
+
"https://te.legra.ph/file/37423e9680e3f79c9eb15.jpg",
|
667 |
+
"https://te.legra.ph/file/4a9c4663d0120cff7cc82.jpg",
|
668 |
+
"https://te.legra.ph/file/56d72d125005a16dba7b8.jpg",
|
669 |
+
"https://te.legra.ph/file/c10f1b32adaf93c1a9fe1.jpg",
|
670 |
+
"https://te.legra.ph/file/68c607517cca7d08e8910.jpg",
|
671 |
+
"https://te.legra.ph/file/c86855e6d5a5668748ce1.jpg",
|
672 |
+
"https://te.legra.ph/file/b480c0989f1e4a9ea63c7.jpg",
|
673 |
+
"https://te.legra.ph/file/4cdf315e2925d8b4ef6ae.jpg",
|
674 |
+
"https://te.legra.ph/file/fe9c620d294f4f47f4350.jpg",
|
675 |
+
"https://te.legra.ph/file/6d4ae604c118cb49ab7ed.jpg",
|
676 |
+
"https://te.legra.ph/file/a7a78ff8d710583f28e72.jpg",
|
677 |
+
"https://te.legra.ph/file/a7a78ff8d710583f28e72.jpg",
|
678 |
+
"https://te.legra.ph/file/c74c4f4be365971311510.jpg",
|
679 |
+
"https://te.legra.ph/file/23e0a389fb5df7900c686.jpg",
|
680 |
+
"https://te.legra.ph/file/fc0557000a350267adc0d.jpg",
|
681 |
+
"https://te.legra.ph/file/cd381fd6f9960555664f6.jpg",
|
682 |
+
"https://te.legra.ph/file/322466833973279848e60.jpg",
|
683 |
+
"https://te.legra.ph/file/122cf568eef282ad3472a.jpg",
|
684 |
+
"https://te.legra.ph/file/cd6aa9cbe621c7c3a12ea.jpg",
|
685 |
+
"https://te.legra.ph/file/83c61271b95fdf421a9a0.jpg",
|
686 |
+
"https://te.legra.ph/file/2f27c940f5e912c01aa63.jpg",
|
687 |
+
"https://te.legra.ph/file/43780c4a5c3071af3de3c.jpg",
|
688 |
+
"https://te.legra.ph/file/68d18ae5b2a4b67e793a4.jpg",
|
689 |
+
"https://te.legra.ph/file/633bd27c1607fe98920b6.jpg",
|
690 |
+
"https://te.legra.ph/file/52d92a67f0c6ce0a9f89f.jpg",
|
691 |
+
"https://te.legra.ph/file/d91e7353b3803a8148bfc.jpg",
|
692 |
]
|