<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://kodi.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=DarrenHill</id>
	<title>Official Kodi Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://kodi.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=DarrenHill"/>
	<link rel="alternate" type="text/html" href="https://kodi.wiki/view/Special:Contributions/DarrenHill"/>
	<updated>2026-06-15T08:30:49Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://kodi.wiki/index.php?title=MySQL/Setting_up_MySQL&amp;diff=261418</id>
		<title>MySQL/Setting up MySQL</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=MySQL/Setting_up_MySQL&amp;diff=261418"/>
		<updated>2026-04-07T17:58:31Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Update minimum version of MySQL and the date&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:MySQL/Contents}}&lt;br /&gt;
{{mininav| [[MySQL]] }}&lt;br /&gt;
You&#039;ll need to choose which of your computers, Kodi devices, or NAS will be the MySQL server. The server needs to be on 24/7 or have wake-on-lan (preferably the former), and needs to have a local static IP. You will probably want the Kodi device that is hosting most or all of your videos and music to also be the MySQL server, but this is not required.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
{{redv|&#039;&#039;&#039;Please Note:&#039;&#039;&#039;| Do not manually create the MySQL/MariaDB databases on your database server. Set up the MySQL/MariaDB server, and Kodi will create the specific databases for you.}}&lt;br /&gt;
{{redv|&#039;&#039;&#039;Also:&#039;&#039;&#039;| Some versions of MySQL set their passwords to expire by default, &#039;&#039;&#039;even the root password&#039;&#039;&#039;!  If the password expires, Kodi cannot access the database and the TV Series and Movies libraries will disappear.&amp;lt;br /&amp;gt;&lt;br /&gt;
To avoid this and/or fix it after it happens, make sure the account&#039;s password does not expire. (See: https://dev.mysql.com/doc/refman/5.7/en/password-management.html )}}&lt;br /&gt;
&lt;br /&gt;
MySQL/MariaDB can be installed on just about every major OS and NAS:&lt;br /&gt;
&lt;br /&gt;
{{redv|&#039;&#039;&#039;Important:&#039;&#039;&#039;| Please use only supported versions of the MySQL or MariaDB server. As of April 2026, this is MySQL in at least version 5.7.9 or MariaDB in at least version 5.5, but version 10.3+ is recommended.}}&lt;br /&gt;
&lt;br /&gt;
=Ubuntu Linux=&lt;br /&gt;
&#039;&#039;&#039;Ubuntu Linux:&#039;&#039;&#039;&lt;br /&gt;
#&amp;lt;code&amp;gt;$sudo apt-get install mysql-server&amp;lt;/code&amp;gt; &#039;&#039;(see also: https://help.ubuntu.com/18.04/serverguide/mysql.html )&#039;&#039;&lt;br /&gt;
#Create a password when asked&lt;br /&gt;
#To configure MySQL to listen for connections from network hosts, edit &#039;&#039;/etc/mysql/mysql.conf.d/mysqld.cnf&#039;&#039; and change the bind-address directive to the server&#039;s IP address:&lt;br /&gt;
##from: &amp;lt;code&amp;gt;bind-address = 127.0.0.1&amp;lt;/code&amp;gt; &lt;br /&gt;
##to: &amp;lt;code&amp;gt;bind-address = 192.168.0.5&amp;lt;/code&amp;gt;&lt;br /&gt;
#*Note: Replace 192.168.0.5 with the appropriate address.&lt;br /&gt;
#*Note: To allow both local and remote access (i.e. from both the MySQL host to itself and also from other clients), either comment out the bind-address using a hash (#) to disable it, or use &amp;lt;code&amp;gt;bind-address = 0.0.0.0&amp;lt;/code&amp;gt; to open it completely.&lt;br /&gt;
#When using MySQL8 or higher (Ubuntu 20.04 or later), add the following line at the end of &#039;&#039;/etc/mysql/mysql.conf.d/mysqld.cnf&#039;&#039;:&lt;br /&gt;
##&amp;lt;code&amp;gt;default_authentication_plugin=mysql_native_password&amp;lt;/code&amp;gt;&lt;br /&gt;
##*Note: When using MariaDB this is the default, so you don&#039;t need to set it separately&lt;br /&gt;
#Restart your MySQL server. &amp;lt;code&amp;gt;sudo service mysql restart&amp;lt;/code&amp;gt;&lt;br /&gt;
#Get into the MySQL command line utility: &amp;lt;code&amp;gt;mysql -u root -p&amp;lt;/code&amp;gt;&lt;br /&gt;
#Enter the following commands:&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;CREATE USER &#039;kodi&#039; IDENTIFIED BY &#039;kodi&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##*Note: When using MySQL8 or higher, there are additional password requirements and new authentication methods. Using the following command should avoid errors. Type in: &amp;lt;code&amp;gt;CREATE USER &#039;kodi&#039; IDENTIFIED WITH mysql_native_password BY &#039;kodi123#&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##*Note: If the above command throws the error &amp;lt;code&amp;gt;ERROR 1064 (42000): You have an error in your SQL syntax;&amp;lt;/code&amp;gt; (could happen if using MariaDB 10.5) try this one: &amp;lt;code&amp;gt;CREATE USER &#039;kodi&#039; IDENTIFIED VIA mysql_native_password USING PASSWORD(&#039;kodi123#&#039;);&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;GRANT ALL ON *.* TO &#039;kodi&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;flush privileges;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
#Close out the command line tool with &amp;lt;code&amp;gt;\q&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Debian Linux=&lt;br /&gt;
&#039;&#039;&#039;Debian Linux:&#039;&#039;&#039;&lt;br /&gt;
#Login as root with &amp;lt;code&amp;gt;$ su -&amp;lt;/code&amp;gt;&lt;br /&gt;
#&amp;lt;code&amp;gt;# apt-get install mariadb-server&amp;lt;/code&amp;gt;&lt;br /&gt;
#To configure MySQL/MariaDB to listen for connections from network hosts, edit &#039;&#039;/etc/mysql/mariadb.conf.d/50-server.cnf&#039;&#039; and change the bind-address directive to the server&#039;s IP address:&lt;br /&gt;
##from: &amp;lt;code&amp;gt;bind-address = 127.0.0.1&amp;lt;/code&amp;gt; &lt;br /&gt;
##to: &amp;lt;code&amp;gt;bind-address = 192.168.0.5&amp;lt;/code&amp;gt;&lt;br /&gt;
#*Note: Replace 192.168.0.5 with the appropriate address.&lt;br /&gt;
#*Note: To allow both local and remote access (i.e. from both the MySQL/MariaDB host to itself and also from other clients), either comment out the bind-address using a hash (#) to disable it, or use &amp;lt;code&amp;gt;bind-address = 0.0.0.0&amp;lt;/code&amp;gt; to open it completely.&lt;br /&gt;
#Restart your MySQL/MariaDB server. &amp;lt;code&amp;gt;# systemctl restart mariadb&amp;lt;/code&amp;gt;&lt;br /&gt;
#Get into the MySQL command line utility: &amp;lt;code&amp;gt;# mysql&amp;lt;/code&amp;gt;&lt;br /&gt;
#Enter the following commands:&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;CREATE USER &#039;kodi&#039; IDENTIFIED VIA mysql_native_password USING PASSWORD(&#039;kodi123#&#039;);&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;GRANT ALL ON *.* TO &#039;kodi&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;flush privileges;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
#Close out the command line tool with &amp;lt;code&amp;gt;exit&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;\q&amp;lt;/code&amp;gt;&lt;br /&gt;
#Logout as root with &amp;lt;code&amp;gt;# exit&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Arch Linux=&lt;br /&gt;
&#039;&#039;&#039;Arch Linux:&#039;&#039;&#039;&lt;br /&gt;
*Please note: Arch, along with many other distributions, has migrated to the faster and more open MariaDB. It is a drop in replacement to MySQL and, thus, Kodi will require no modifications to work with it.&lt;br /&gt;
#Install MariaDB: &amp;lt;code&amp;gt;$ sudo pacman -S mariadb&amp;lt;/code&amp;gt;&lt;br /&gt;
#Start the service: &amp;lt;code&amp;gt;$ sudo systemctl start mysqld&amp;lt;/code&amp;gt;&lt;br /&gt;
#To have it automatically launch at startup: &amp;lt;code&amp;gt;$ sudo systemctl enable mysqld&amp;lt;/code&amp;gt;&lt;br /&gt;
#Create a password: &amp;lt;code&amp;gt;$ /usr/bin/mysql_secure_installation&amp;lt;/code&amp;gt; &#039;&#039;This will also clean up the demo database.&#039;&#039;&lt;br /&gt;
#Get into the MariaDB command line utility: &amp;lt;code&amp;gt;$ mysql -u root -p&amp;lt;/code&amp;gt;&lt;br /&gt;
#Enter the following commands:&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;CREATE USER &#039;kodi&#039; IDENTIFIED BY &#039;kodi&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;GRANT ALL ON *.* TO &#039;kodi&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;flush privileges;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
#Close out the command line tool with &amp;lt;code&amp;gt;\q&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=RedHat based Linux=&lt;br /&gt;
&#039;&#039;&#039;RedHat based Linux (RHEL, CentOS, Fedora):&#039;&#039;&#039;&lt;br /&gt;
#&amp;lt;code&amp;gt;$sudo yum install mysql-server&amp;lt;/code&amp;gt;&lt;br /&gt;
#Create a password when asked&lt;br /&gt;
#To configure MySQL to listen for connections only from network hosts, edit &#039;&#039;/etc/mysql/my.cnf&#039;&#039; and add the bind-address directive to the server&#039;s IP address:&amp;lt;br /&amp;gt;&amp;lt;code&amp;gt;bind-address = 192.168.0.5&amp;lt;/code&amp;gt;&lt;br /&gt;
#*Note: Replace 192.168.0.5 with the appropriate address.&lt;br /&gt;
#*Note: Alternatively you can leave this file as is to allow local and remote access.&lt;br /&gt;
#Restart your MySQL server. &amp;lt;code&amp;gt;$sudo /sbin/service mysqld restart&amp;lt;/code&amp;gt;&lt;br /&gt;
#*Recommended - Set your MySQL root password with &amp;lt;code&amp;gt;/usr/bin/mysqladmin -u root password &#039;new-password&#039;&amp;lt;/code&amp;gt;&lt;br /&gt;
#Get into the MySQL command line utility: &amp;lt;code&amp;gt;$mysql -u root -p&amp;lt;/code&amp;gt;&lt;br /&gt;
#*Enter your MySQL root password as set above, or just press enter if you didn&#039;t set one to log in with a blank password&lt;br /&gt;
#Enter the following commands:&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;CREATE USER &#039;kodi&#039; IDENTIFIED BY &#039;kodi&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;GRANT ALL ON *.* TO &#039;kodi&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;flush privileges;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
#Close out the command line tool with &amp;lt;code&amp;gt;\q&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=RaspberryPi Raspbian=&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;RaspberryPi Raspbian:&#039;&#039;&#039;&lt;br /&gt;
#&amp;lt;code&amp;gt;$sudo apt-get update &amp;amp;&amp;amp; sudo apt-get dist-upgrade&amp;lt;/code&amp;gt; to ensure that you have the very latest iteration of Raspbian. &#039;&#039;(September 2017 as of writing this)&#039;&#039;&lt;br /&gt;
#&amp;lt;code&amp;gt;$sudo apt-get install mysql-server&amp;lt;/code&amp;gt; to install &#039;&#039;MYSQL Server&#039;&#039;.&lt;br /&gt;
#To configure MySQL to listen for connections from network hosts, &amp;lt;code&amp;gt;$sudo nano /etc/mysql/mariadb.conf.d/50-server.cnf&amp;lt;/code&amp;gt; and change the bind-address directive to the server&#039;s IP address:&lt;br /&gt;
##from: &amp;lt;code&amp;gt;bind-address = 127.0.0.1&amp;lt;/code&amp;gt;&lt;br /&gt;
##to: &amp;lt;code&amp;gt;bind-address = 192.168.0.5&amp;lt;/code&amp;gt;&lt;br /&gt;
#*Note: Replace 192.168.0.5 with the appropriate address.&lt;br /&gt;
#*Note: To allow both local and remote access (i.e. from both the MySQL host to itself and also from other clients), either comment out the bind-address using a hash (#) to disable it, or use &amp;lt;code&amp;gt;bind-address = 0.0.0.0&amp;lt;/code&amp;gt; to open it completely.&lt;br /&gt;
#Restart your MySQL server: &amp;lt;code&amp;gt;sudo service mysql restart&amp;lt;/code&amp;gt;&lt;br /&gt;
#Get into the MySQL command line utility: &amp;lt;code&amp;gt;sudo mysql&amp;lt;/code&amp;gt;&lt;br /&gt;
#Enter the following commands:&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;CREATE USER &#039;kodi&#039; IDENTIFIED BY &#039;kodi&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;GRANT ALL ON *.* TO &#039;kodi&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;flush privileges;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
#Close out the command line tool with &amp;lt;code&amp;gt;\q&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Mac OS X=&lt;br /&gt;
&#039;&#039;&#039;Mac OS X:&#039;&#039;&#039;&lt;br /&gt;
#Download a copy of MySQL server from http://dev.mysql.com/downloads/mysql/&lt;br /&gt;
#In Mac OS X, go to System Preferences -&amp;gt; MySQL, and click on “Start MySQL Server”.  You’ll also want to tick to enable the “Automatically … on Startup” option.&lt;br /&gt;
#Now to set up the &amp;quot;kodi&amp;quot; user in MySQL and give it access. Launch Terminal.app on your Mac and issue the following commands, one line at a time:&lt;br /&gt;
##&amp;lt;code&amp;gt;sudo /usr/local/mysql/bin/mysql&amp;lt;/code&amp;gt;&lt;br /&gt;
##&amp;lt;code&amp;gt;CREATE USER &#039;kodi&#039; IDENTIFIED BY &#039;kodi&#039;;&amp;lt;/code&amp;gt;&lt;br /&gt;
##&amp;lt;code&amp;gt;GRANT ALL ON *.* TO &#039;kodi&#039;;&amp;lt;/code&amp;gt;&lt;br /&gt;
##&amp;lt;code&amp;gt;exit&amp;lt;/code&amp;gt;&lt;br /&gt;
#Remain in Terminal.app. Now you&#039;ll be giving other computers on your network access to MySQL. Enter the next set of commands, one line at a time:&lt;br /&gt;
##&amp;lt;code&amp;gt;cd /usr/local/mysql/support-files/&amp;lt;/code&amp;gt;&lt;br /&gt;
##&amp;lt;code&amp;gt;sudo cp my-huge.cnf /etc/my.cnf&amp;lt;/code&amp;gt;&lt;br /&gt;
##:&#039;&#039;The command line will ask for your Mac OS X user password. Enter it and press return. No text will show when you type your password in, this is normal.&lt;br /&gt;
##&amp;lt;code&amp;gt;cd /etc&amp;lt;/code&amp;gt;&lt;br /&gt;
##&amp;lt;code&amp;gt;sudo nano my.cnf&amp;lt;/code&amp;gt;&lt;br /&gt;
##:&#039;&#039;This opens a file in a command line text editor&#039;&#039;&lt;br /&gt;
##Scroll down to the [mysqld] section and add or edit the following line so that it appears as:&lt;br /&gt;
##:&amp;lt;code&amp;gt;bind-address = ***.***.***.***&amp;lt;/code&amp;gt;&lt;br /&gt;
##Save and exit from the command line text editor&lt;br /&gt;
#Reboot the Mac, or restart the MySQL service from the System Preferences pane you installed earlier&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Alternative guide for Mac OS X: http://forum.kodi.tv/showthread.php?tid=151631&lt;br /&gt;
&lt;br /&gt;
=Windows=&lt;br /&gt;
== Installing MySQL on Windows ==&lt;br /&gt;
If you have chocolatey installed run &#039;&#039;&#039;choco install mysql&#039;&#039;&#039; &lt;br /&gt;
:&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
#Download a copy of MySQL server from https://dev.mysql.com/downloads/windows/installer/8.0.html&lt;br /&gt;
#Select &#039;&#039;Archives&#039;&#039; when you want the last stable main version 5.7.36 instead of version 8.0.x.&lt;br /&gt;
#Create a password when asked&lt;br /&gt;
#Select that you want the database to have network access when prompted during installation.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re using a firewall such as the one that&#039;s built into Windows, you will need to follow the steps below for the version of windows you installed Kodi on.&lt;br /&gt;
=== Windows 7/8/8.1 Built-in Firewall ===&lt;br /&gt;
: Run the following command in powershell or execute all the steps below.&lt;br /&gt;
:::&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
New-NetFirewallRule -DisplayName &amp;quot;Allow inbound TCP Port 3306 for MySQL&amp;quot; -Direction inbound –LocalPort 3306 -Protocol TCP -Action Allow&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
:#Go to control panel and open Windows Firewall&lt;br /&gt;
:#Click on Advanced Settings&lt;br /&gt;
:#Click on Inbound Rules, then New Rule&lt;br /&gt;
:#For the Rule Type, choose &#039;&#039;&#039;&#039;&#039;Port&#039;&#039;&#039;&#039;&#039; and hit Next&lt;br /&gt;
:#For Protocol and Ports, select TCP protocol and type in &#039;&#039;&#039;&#039;&#039;3306&#039;&#039;&#039;&#039;&#039; for the &#039;&#039;&#039;&#039;&#039;Specific local ports&#039;&#039;&#039;&#039;&#039; and hit Next&lt;br /&gt;
:#For Action, leave it at default which is &#039;&#039;&#039;&#039;&#039;Allow the connection&#039;&#039;&#039;&#039;&#039; and hit Next&lt;br /&gt;
:#For Profile, you can leave it as default (everything checked by default) and hit Next&lt;br /&gt;
:#For Name, set it to &#039;&#039;&#039;&#039;&#039;MySQL&#039;&#039;&#039;&#039;&#039; or any name that you will know what it is and click Finished&lt;br /&gt;
&lt;br /&gt;
== Setup users in MySQL for Kodi clients ==&lt;br /&gt;
&lt;br /&gt;
#Open the &amp;quot;MySQL Command Line Client&amp;quot; from the MySQL start menu&lt;br /&gt;
#Enter the following commands:&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;CREATE USER &#039;kodi&#039; IDENTIFIED BY &#039;kodi&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;GRANT ALL ON *.* TO &#039;kodi&#039;;&amp;lt;/code&amp;gt; and press return&lt;br /&gt;
##Type in: &amp;lt;code&amp;gt;flush privileges;&amp;lt;/code&amp;gt; and press return &lt;br /&gt;
#Close out the command line tool&lt;br /&gt;
&lt;br /&gt;
{{Note|If Kodi is unable to connect to the MySQL server, returning an error code [1130]:}}&amp;lt;br/&amp;gt;&lt;br /&gt;
If this occurs to you, try amending Step 2 above to read &amp;lt;code&amp;gt;GRANT ALL ON *.* TO &#039;kodi&#039;@&#039;xxx.xxx.xxx.%&#039;;&amp;lt;/code&amp;gt; where xxx.xxx.xxx is the first three quadrants of your home network&#039;s IP address (192.168.1 for example) and % as the last quadrant to allow addresses on the same subnet to connect.&lt;br /&gt;
&lt;br /&gt;
=Other NAS=&lt;br /&gt;
MySQL can also be installed on some [[w:network-attached storage|network-attached storage (NAS)]] device devices. Here are some guides for various NAS devices that can have a MySQL server installed:&lt;br /&gt;
&lt;br /&gt;
*Devices running Arch Linux ARM (such as the PogoPlug, Dockstar, etc) can use the [[Setting_up_MySQL|Arch Linux instructions]] on this page.&lt;br /&gt;
*[https://web.archive.org/web/20160329053954/http://quixventure.com/2011/12/configure-a-synology-nas-as-mysql-server-for-xbmc/ Synology NAS as MySQL server for XBMC] and http://youtu.be/3PmmDtK65ks&lt;br /&gt;
*http://www.robvanhamersveld.nl/2013/02/05/share-your-xbmc-12-0-library-on-a-synology-ds-or-other-nas/ Synology DS with MySQL guide based on Frodo&lt;br /&gt;
*http://forum.kodi.tv/showthread.php?tid=172548 - unRAID&lt;br /&gt;
&lt;br /&gt;
After setting up a database server on you NAS, you should create a Kodi user with full administrative privileges. The user should be able to log in from your Kodi devices, so make sure you give the user login access from external machines.&lt;br /&gt;
You do not need to create a database as Kodi will create the required databases itself.&lt;br /&gt;
&lt;br /&gt;
{{redv|&#039;&#039;&#039;Warning:&#039;&#039;&#039;| As you are giving the Kodi user full administrative privileges and external machine access it is recommended that you review your database security. It is highly recommenced that you block internet access to your database using an appropriate firewall. }}&lt;br /&gt;
&lt;br /&gt;
=FreeNAS and freeBSD=&lt;br /&gt;
&lt;br /&gt;
== About FreeNAS ==&lt;br /&gt;
&lt;br /&gt;
http://www.freenas.org/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
FreeNAS is a FreeBSD based NAS system that can be run on almost any hardware - it uses ZFS for disk and file management. It is used at home and in enterprise businesses. 99% of tasks can be done via the web interface.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example below is based on FreeNAS 9.1.1 on 12/12/13, and assumes you have already configured your nas with drives, datasets etc&lt;br /&gt;
&lt;br /&gt;
== How to ==&lt;br /&gt;
&lt;br /&gt;
=== Make a jail ===&lt;br /&gt;
&lt;br /&gt;
create a Jail via the FreeNAS webui - if unsure see here http://doc.freenas.org/index.php/Adding_Jails&lt;br /&gt;
&lt;br /&gt;
make a note of the jail IP address shown - you will need this to put in the advancedsettings.xml file on the Kodi machine later&lt;br /&gt;
&lt;br /&gt;
=== Prepare the jail ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*ssh into FreeNAS&lt;br /&gt;
**If you have a windows PC use putty (http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html) &lt;br /&gt;
**(easiest) click the &amp;quot;shell&amp;quot; button in the left of the FreeNAS webui&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
type the following commands&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;jls&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Take note of the JID of the jail you created, use it in the command below and replace n with the number of the jail you just created&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;jexec n csh&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Install mysql ===&lt;br /&gt;
You are now inside your jail&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;pkg install mysql55-server&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;pkg install nano&amp;lt;/code&amp;gt;&lt;br /&gt;
**(nano is a text editor you will need shortly)&lt;br /&gt;
&lt;br /&gt;
We now need to enable mysql in rc.conf&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;nano /etc/rc.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
insert the line below into the rc.conf file&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;mysql_enable=&amp;quot;YES&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
save the file and exit (see bottom of nano edit page for keystrokes info)&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;service mysql-server start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Optional step below - this is an automated script that will secure you mysql instance - it will prompt you for answers to questions. Its up to you if you do this.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;mysql_secure_installation&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Configure mysql ready for Kodi to use ===&lt;br /&gt;
&lt;br /&gt;
type in&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;mysql -u root -p&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You are now in mysql administration&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;CREATE USER &#039;kodi&#039; IDENTIFIED BY &#039;kodi&#039;;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;GRANT ALL ON *.* TO &#039;kodi&#039;;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;flush privileges;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;quit;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Docker=&lt;br /&gt;
&#039;&#039;&#039;Mariadb in Docker Container:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If you are new to Docker, first install Docker for your specific OS. Containers are OS independent - see https://www.docker.com/ for more general information about Docker.&lt;br /&gt;
&lt;br /&gt;
If you don&#039;t have one already, create a docker-compose.yaml file.  &lt;br /&gt;
&lt;br /&gt;
Here&#039;s an example service definition for a mariadb container using the offical MariaDB LTS (Long Term Support) image:&lt;br /&gt;
&lt;br /&gt;
 services:&lt;br /&gt;
  mariadb:&lt;br /&gt;
    image: mariadb:lts&lt;br /&gt;
    container_name: mariadb&lt;br /&gt;
    ports:&lt;br /&gt;
      - 3306:3306&lt;br /&gt;
    volumes:&lt;br /&gt;
      - /your/host/path/to/database/files/:/var/lib/mysql&lt;br /&gt;
      - /your/host/path/to/mariadb/configuration/files:/config&lt;br /&gt;
    environment:&lt;br /&gt;
      - MYSQL_ROOT_PASSWORD=YOUR_MARIADB_ROOT_PASSWORD&lt;br /&gt;
      - MYSQL_PASSWORD=kodi&lt;br /&gt;
      - MYSQL_USER=kodi&lt;br /&gt;
      - MARIADB_AUTO_UPGRADE=&lt;br /&gt;
    restart: unless-stopped&lt;br /&gt;
&lt;br /&gt;
To bring the new container up, (in folder where docker-compose.yaml is located): &lt;br /&gt;
&amp;lt;code&amp;gt;sudo docker compose up -d mariadb&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will create a root user with the password you gave in the Docker Compose file. It will also create a user called &amp;quot;kodi&amp;quot; (please note that you can use any username you want - default is usually &amp;quot;kodi&amp;quot; with a password of &amp;quot;kodi&amp;quot;). The kodi user will NOT have appropriate access until you grant the correct privileges. &lt;br /&gt;
&lt;br /&gt;
So, with the container running:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo docker exec -it mariadb bash&amp;lt;/code&amp;gt; (to access a shell inside the container).&lt;br /&gt;
&lt;br /&gt;
Then, in that shell, run:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;mariadb -u root -p&amp;lt;/code&amp;gt; (enter root password from Docker Compose file)&lt;br /&gt;
&lt;br /&gt;
Type:&lt;br /&gt;
&amp;lt;code&amp;gt;GRANT ALL PRIVILEGES ON *.* TO &#039;kodi&#039; IDENTIFIED BY &#039;kodi&#039; WITH GRANT OPTION;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then type:&lt;br /&gt;
&amp;lt;code&amp;gt;FLUSH PRIVILEGES;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then you can exit the mariadb shell.&lt;br /&gt;
&lt;br /&gt;
=Restricting MySQL access rights=&lt;br /&gt;
&#039;&#039;&#039;Optional:&#039;&#039;&#039; &#039;&#039;&#039;If you only use the MySQL server for Kodi and that server has non-critical data on it, then this probably not necessary.&#039;&#039;&#039;&lt;br /&gt;
For a more secure MySQL installation use these 2 commands to grant permission only to databases Kodi uses. This is useful if you plan on using your MySQL server for more than just Kodi, or if you&#039;re worried about your internal network being exposed and wanting to lock things down more, etc. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Upto MySQL Server 5.7 Server:&#039;&#039;&#039;&lt;br /&gt;
#&amp;lt;code&amp;gt;GRANT ALL ON `MyVideos%`.* TO &#039;kodi&#039;@&#039;%&#039; IDENTIFIED BY &#039;kodi&#039;;&amp;lt;/code&amp;gt;&lt;br /&gt;
#&amp;lt;code&amp;gt;GRANT ALL ON `MyMusic%`.* TO &#039;kodi&#039;@&#039;%&#039; IDENTIFIED BY &#039;kodi&#039;;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;As per MySQL 8.0 Server and upwards:&#039;&#039;&#039;&lt;br /&gt;
#&amp;lt;code&amp;gt;GRANT ALL PRIVILEGES ON `MyVideos%`.* TO `kodi`@`%`;&amp;lt;/code&amp;gt;&lt;br /&gt;
#&amp;lt;code&amp;gt;GRANT ALL PRIVILEGES ON `MyMusic%`.* TO `kodi`@`%`;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{redv|&#039;&#039;&#039;Careful&#039;&#039;&#039;|The limited grants on this page don&#039;t give the kodi user permissions to create required TRIGGERs during install or upgrade. &#039;&#039;&#039;Kodi requires these TRIGGERs to function properly.&#039;&#039;&#039; &amp;lt;br /&amp;gt;&lt;br /&gt;
Use the broader grant *.* statement that is explained on the previous tabs while creating or upgrading the tables. Only restrict rights afterwards, if you need to. &amp;lt;br&amp;gt;&lt;br /&gt;
Alternatively, figure out how to specifically give the account the right to create the require TRIGGERS - this varies between MySQL versions. }}&lt;br /&gt;
&amp;lt;headertabs /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Next|[[MySQL/Setting up Kodi|Setting up Kodi]]}}&lt;br /&gt;
&lt;br /&gt;
{{Isengard updated}}&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=260965</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=260965"/>
		<updated>2026-03-15T15:39:37Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Added Otaku (fork of Kaito)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Infenity&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* 709 &amp;lt;!-- ID: repository.709 --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* addons4kodi &amp;lt;!-- ID: repository.addons4kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* funstersplace &amp;lt;!-- ID: repository.funstersplace --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* &amp;lt;Hacky&amp;gt; &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* HEVC Video Club&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Otaku &amp;lt;!-- ID:repository.otaku --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* coalition &amp;lt;!-- ID: plugin.video.coalition --&amp;gt;&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive &amp;lt;!-- ID: plugin.video.daddylive --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic|skin.fentastic --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen|script.fentastic.helper --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* gratis &amp;lt;!-- ID: plugin.video.gratis --&amp;gt;&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Otaku &amp;lt;!-- ID: plugin.video.otaku --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream4Me&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* Teatv&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Chains &amp;lt;!-- ID: plugin.video.thechains --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports|plugin.program.thecrewiz --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* truncatetables &amp;lt;!-- ID: plugin.program.truncatetables --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* Umbrella&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Abortion&lt;br /&gt;
* airline&lt;br /&gt;
* Airlines&lt;br /&gt;
* Airways&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Cash Loan&lt;br /&gt;
* Credit card&lt;br /&gt;
* cruise&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Customer&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* flight&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Helpline &lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* payday loans&lt;br /&gt;
* PhonePe Support&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* refund&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* p\.com&lt;br /&gt;
* teléfono&lt;br /&gt;
* Temu&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
* ¿Cómo&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=260107</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=260107"/>
		<updated>2026-01-26T19:58:33Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Added Stream4Me&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Infenity&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* 709 &amp;lt;!-- ID: repository.709 --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* addons4kodi &amp;lt;!-- ID: repository.addons4kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* funstersplace &amp;lt;!-- ID: repository.funstersplace --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* &amp;lt;Hacky&amp;gt; &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* HEVC Video Club&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* coalition &amp;lt;!-- ID: plugin.video.coalition --&amp;gt;&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive &amp;lt;!-- ID: plugin.video.daddylive --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic|skin.fentastic --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen|script.fentastic.helper --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* gratis &amp;lt;!-- ID: plugin.video.gratis --&amp;gt;&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream4Me&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* Teatv&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Chains &amp;lt;!-- ID: plugin.video.thechains --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports|plugin.program.thecrewiz --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* truncatetables &amp;lt;!-- ID: plugin.program.truncatetables --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* Umbrella&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Abortion&lt;br /&gt;
* airline&lt;br /&gt;
* Airlines&lt;br /&gt;
* Airways&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Cash Loan&lt;br /&gt;
* Credit card&lt;br /&gt;
* cruise&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Customer&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* flight&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Helpline &lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* payday loans&lt;br /&gt;
* PhonePe Support&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* refund&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* p\.com&lt;br /&gt;
* teléfono&lt;br /&gt;
* Temu&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
* ¿Cómo&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=258859</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=258859"/>
		<updated>2025-10-09T15:21:25Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Muted Hacky&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Infenity&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* 709 &amp;lt;!-- ID: repository.709 --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* addons4kodi &amp;lt;!-- ID: repository.addons4kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* funstersplace &amp;lt;!-- ID: repository.funstersplace --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* &amp;lt;Hacky&amp;gt; &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* HEVC Video Club&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* coalition &amp;lt;!-- ID: plugin.video.coalition --&amp;gt;&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive &amp;lt;!-- ID: plugin.video.daddylive --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic|skin.fentastic --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen|script.fentastic.helper --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* gratis &amp;lt;!-- ID: plugin.video.gratis --&amp;gt;&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* Teatv&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Chains &amp;lt;!-- ID: plugin.video.thechains --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports|plugin.program.thecrewiz --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* truncatetables &amp;lt;!-- ID: plugin.program.truncatetables --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* Umbrella&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Abortion&lt;br /&gt;
* airline&lt;br /&gt;
* Airlines&lt;br /&gt;
* Airways&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Cash Loan&lt;br /&gt;
* Credit card&lt;br /&gt;
* cruise&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Customer&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* flight&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Helpline &lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* payday loans&lt;br /&gt;
* PhonePe Support&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* refund&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* p\.com&lt;br /&gt;
* teléfono&lt;br /&gt;
* Temu&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
* ¿Cómo&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=258791</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=258791"/>
		<updated>2025-09-17T10:25:25Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Added Umbrella as an addon too&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Infenity&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* 709 &amp;lt;!-- ID: repository.709 --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* addons4kodi &amp;lt;!-- ID: repository.addons4kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* funstersplace &amp;lt;!-- ID: repository.funstersplace --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* HEVC Video Club&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* coalition &amp;lt;!-- ID: plugin.video.coalition --&amp;gt;&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive &amp;lt;!-- ID: plugin.video.daddylive --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic|skin.fentastic --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen|script.fentastic.helper --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* gratis &amp;lt;!-- ID: plugin.video.gratis --&amp;gt;&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* Teatv&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Chains &amp;lt;!-- ID: plugin.video.thechains --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports|plugin.program.thecrewiz --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* truncatetables &amp;lt;!-- ID: plugin.program.truncatetables --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* Umbrella&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Abortion&lt;br /&gt;
* airline&lt;br /&gt;
* Airlines&lt;br /&gt;
* Airways&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Cash Loan&lt;br /&gt;
* Credit card&lt;br /&gt;
* cruise&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Customer&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* flight&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Helpline &lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* payday loans&lt;br /&gt;
* PhonePe Support&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* refund&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* p\.com&lt;br /&gt;
* teléfono&lt;br /&gt;
* Temu&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
* ¿Cómo&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=255064</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=255064"/>
		<updated>2025-03-18T20:35:36Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Infenity build&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Infenity&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* 709 &amp;lt;!-- ID: repository.709 --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* addons4kodi &amp;lt;!-- ID: repository.addons4kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* funstersplace &amp;lt;!-- ID: repository.funstersplace --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* HEVC Video Club&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* coalition &amp;lt;!-- ID: plugin.video.coalition --&amp;gt;&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive &amp;lt;!-- ID: plugin.video.daddylive --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic|skin.fentastic --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen|script.fentastic.helper --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* gratis &amp;lt;!-- ID: plugin.video.gratis --&amp;gt;&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* Teatv&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Chains &amp;lt;!-- ID: plugin.video.thechains --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports|plugin.program.thecrewiz --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* truncatetables &amp;lt;!-- ID: plugin.program.truncatetables --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Abortion&lt;br /&gt;
* airline&lt;br /&gt;
* Airlines&lt;br /&gt;
* Airways&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Cash Loan&lt;br /&gt;
* Credit card&lt;br /&gt;
* cruise&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Customer&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* flight&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Helpline &lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* payday loans&lt;br /&gt;
* PhonePe Support&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* refund&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* p\.com&lt;br /&gt;
* teléfono&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
* ¿Cómo&lt;br /&gt;
* \+\d+&lt;br /&gt;
* 【﻿+&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=254819</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=254819"/>
		<updated>2025-02-22T13:11:47Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* 709 &amp;lt;!-- ID: repository.709 --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* addons4kodi &amp;lt;!-- ID: repository.addons4kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* funstersplace &amp;lt;!-- ID: repository.funstersplace --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* HEVC Video Club&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* coalition &amp;lt;!-- ID: plugin.video.coalition --&amp;gt;&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive &amp;lt;!-- ID: plugin.video.daddylive --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic|skin.fentastic --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen|script.fentastic.helper --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* gratis &amp;lt;!-- ID: plugin.video.gratis --&amp;gt;&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* Teatv&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Chains &amp;lt;!-- ID: plugin.video.thechains --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports|plugin.program.thecrewiz --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* truncatetables &amp;lt;!-- ID: plugin.program.truncatetables --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Abortion&lt;br /&gt;
* airline&lt;br /&gt;
* Airlines&lt;br /&gt;
* Airways&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Cash Loan&lt;br /&gt;
* Credit card&lt;br /&gt;
* cruise&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Customer&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* flight&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Helpline &lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* payday loans&lt;br /&gt;
* PhonePe Support&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* refund&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* p\.com&lt;br /&gt;
* teléfono&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
* ¿Cómo&lt;br /&gt;
* \+\d+&lt;br /&gt;
* 【﻿+&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=254707</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=254707"/>
		<updated>2025-02-11T12:09:17Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* 709 &amp;lt;!-- ID: repository.709 --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* addons4kodi &amp;lt;!-- ID: repository.addons4kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* funstersplace &amp;lt;!-- ID: repository.funstersplace --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* coalition &amp;lt;!-- ID: plugin.video.coalition --&amp;gt;&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive &amp;lt;!-- ID: plugin.video.daddylive --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic|skin.fentastic --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen|script.fentastic.helper --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* gratis &amp;lt;!-- ID: plugin.video.gratis --&amp;gt;&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Chains &amp;lt;!-- ID: plugin.video.thechains --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports|plugin.program.thecrewiz --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* truncatetables &amp;lt;!-- ID: plugin.program.truncatetables --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Abortion&lt;br /&gt;
* Airline&lt;br /&gt;
* Airways&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Cash Loan&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Customer&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Helpline &lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* payday loans&lt;br /&gt;
* PhonePe Support&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* refund&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
* \+[0-9]&lt;br /&gt;
* 【﻿＋&lt;br /&gt;
* airline&lt;br /&gt;
* cruise&lt;br /&gt;
* flight&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=254706</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=254706"/>
		<updated>2025-02-11T11:24:42Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Test to add 【﻿＋ to try and pick up telephone number spam&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* 709 &amp;lt;!-- ID: repository.709 --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* addons4kodi &amp;lt;!-- ID: repository.addons4kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* funstersplace &amp;lt;!-- ID: repository.funstersplace --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* coalition &amp;lt;!-- ID: plugin.video.coalition --&amp;gt;&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive &amp;lt;!-- ID: plugin.video.daddylive --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic|skin.fentastic --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen|script.fentastic.helper --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* gratis &amp;lt;!-- ID: plugin.video.gratis --&amp;gt;&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Chains &amp;lt;!-- ID: plugin.video.thechains --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports|plugin.program.thecrewiz --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* truncatetables &amp;lt;!-- ID: plugin.program.truncatetables --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Abortion&lt;br /&gt;
* Airline&lt;br /&gt;
* Airways&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Cash Loan&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Customer&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Helpline &lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* payday loans&lt;br /&gt;
* PhonePe Support&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* refund&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
* \+[0-9]&lt;br /&gt;
* 【﻿＋&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=253893</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=253893"/>
		<updated>2024-12-02T18:28:27Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* 709 &amp;lt;!-- ID: repository.709 --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* addons4kodi &amp;lt;!-- ID: repository.addons4kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* funstersplace &amp;lt;!-- ID: repository.funstersplace --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* coalition &amp;lt;!-- ID: plugin.video.coalition --&amp;gt;&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive &amp;lt;!-- ID: plugin.video.daddylive --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic|skin.fentastic --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen|script.fentastic.helper --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* gratis &amp;lt;!-- ID: plugin.video.gratis --&amp;gt;&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Chains &amp;lt;!-- ID: plugin.video.thechains --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports|plugin.program.thecrewiz --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* truncatetables &amp;lt;!-- ID: plugin.program.truncatetables --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Abortion&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Cash Loan&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Helpline &lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* payday loans&lt;br /&gt;
* PhonePe Support&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* \+97&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=253892</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=253892"/>
		<updated>2024-12-02T18:22:46Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* 709 &amp;lt;!-- ID: repository.709 --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* addons4kodi &amp;lt;!-- ID: repository.addons4kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* funstersplace &amp;lt;!-- ID: repository.funstersplace --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* coalition &amp;lt;!-- ID: plugin.video.coalition --&amp;gt;&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive &amp;lt;!-- ID: plugin.video.daddylive --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic|skin.fentastic --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen|script.fentastic.helper --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* gratis &amp;lt;!-- ID: plugin.video.gratis --&amp;gt;&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Chains &amp;lt;!-- ID: plugin.video.thechains --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports|plugin.program.thecrewiz --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* truncatetables &amp;lt;!-- ID: plugin.program.truncatetables --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Abortion&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Cash Loan&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Helpline &lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* PhonePe Support&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* \+97&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=253874</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=253874"/>
		<updated>2024-12-01T17:03:11Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: PhonePe Support added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* 709 &amp;lt;!-- ID: repository.709 --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* addons4kodi &amp;lt;!-- ID: repository.addons4kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* funstersplace &amp;lt;!-- ID: repository.funstersplace --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* coalition &amp;lt;!-- ID: plugin.video.coalition --&amp;gt;&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive &amp;lt;!-- ID: plugin.video.daddylive --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic|skin.fentastic --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen|script.fentastic.helper --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* gratis &amp;lt;!-- ID: plugin.video.gratis --&amp;gt;&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Chains &amp;lt;!-- ID: plugin.video.thechains --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports|plugin.program.thecrewiz --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* truncatetables &amp;lt;!-- ID: plugin.program.truncatetables --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Abortion&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* PhonePe Support&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* \+97&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=253541</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=253541"/>
		<updated>2024-09-23T12:51:45Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Added DaddyLive&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* DaddyLive&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Abortion&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=253059</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=253059"/>
		<updated>2024-07-18T09:05:30Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Added black ghost addon and repo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: repository.theblackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Black Ghost &amp;lt;!-- ID: plugin.video.blackghost --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* cocoscrapers &amp;lt;!-- script.module.cocoscrapers --&amp;gt;&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* Fen &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Abortion&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
* Witch&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=249931</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=249931"/>
		<updated>2024-01-30T13:26:50Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Removed telegram&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Abortion&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=249573</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=249573"/>
		<updated>2024-01-19T10:59:52Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Muted Gujal&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* &amp;lt;Gujal&amp;gt; &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=249548</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=249548"/>
		<updated>2024-01-18T08:45:14Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Added HDHub4u&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* Gujal &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* HDHub4u&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=HOW-TO:Install_Kodi_for_Linux&amp;diff=249429</id>
		<title>HOW-TO:Install Kodi for Linux</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=HOW-TO:Install_Kodi_for_Linux&amp;diff=249429"/>
		<updated>2024-01-14T11:11:06Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Added note that the PPA is unmaintained, and removed the recommendation to use it&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Mininav|[[Linux]] {{L2| [[Installing]] }} }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Installing Kodi on Ubuntu-based distributions with Team Kodi PPA ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please note that currently the Team Kodi PPA is not maintained due to the previous sole maintainer stepping away from the responsibility. &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
For now the only options are building from source, using Flatpak or a distro such as Debian which includes Kodi in their distribution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Warning|Ubuntu releases 16.04 LTS (&amp;quot;Xenial&amp;quot;) or later, respectively, include their own Kodi builds in their official package repositories, customized to satisfy their interpretations of what is acceptable under their open-source mandates. If you have installed your distribution&#039;s Kodi packages, please purge them using the command &amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot; inline&amp;gt;sudo apt purge kodi\*&amp;lt;/syntaxhighlight&amp;gt; before trying to install team-xbmc PPA packages.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Warning|Releases from Team Kodi PPA are NOT compatible with Debian GNU / Linux and distributions built on top of Debian&#039;s binary package repositories! Please refer to &#039;&#039;&#039;Debian&#039;&#039;&#039; section of this page for installation instructions on such distributions!}}&lt;br /&gt;
&lt;br /&gt;
See [[SFTP]] or [http://help.ubuntu.com/community/UsingTheTerminal Click here to find out how to use the terminal.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Adding Team Kodi PPA repository ===&lt;br /&gt;
&lt;br /&gt;
Use the command line terminal in Ubuntu, and enter the following commands. Follow the prompts as you would any other software installation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt install software-properties-common&lt;br /&gt;
sudo add-apt-repository -y ppa:team-xbmc/ppa&lt;br /&gt;
sudo apt install kodi &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#lst:Official_Ubuntu_PPA|repos}}&lt;br /&gt;
&lt;br /&gt;
Note that this PPA only provides builds for Ubuntu i386 and Ubuntu amd64 but &#039;&#039;not for Ubuntu armhf&#039;&#039;, which can run on a Raspberry Pi.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Installing binary add-ons (PVR, audio decoders, audio encoders, screensavers, visualizations, audio DSP) ===&lt;br /&gt;
{{See|Ubuntu binary add-ons}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Installing a development build ===&lt;br /&gt;
{{See also|Development builds}}&lt;br /&gt;
To install a beta/unstable version of {{Kodi}} you must first add the unstable repository, then install XBMC. Use &amp;lt;code&amp;gt;ppa:team-xbmc/xbmc-nightly&amp;lt;/code&amp;gt; for nightly builds and &amp;lt;code&amp;gt;ppa:team-xbmc/unstable&amp;lt;/code&amp;gt; for [[Development_builds|beta]] builds.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt install software-properties-common&lt;br /&gt;
sudo add-apt-repository -y ppa:team-xbmc/xbmc-nightly&lt;br /&gt;
sudo apt install kodi&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that if you have any addons (such as PVR clients), these must be updated as well (they will not be updated automatically):&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt install kodi-pvr-mythtv&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Upgrading ===&lt;br /&gt;
&amp;lt;section begin=&amp;quot;Ubuntu upgrade&amp;quot; /&amp;gt;&lt;br /&gt;
To update Kodi when a new version is released, just do a general system/package or use the following commands in the terminal (or via [[SFTP]]):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt upgrade --with-new-pkgs&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section end=&amp;quot;Ubuntu upgrade&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Downgrading to a stable version from a development version ===&lt;br /&gt;
If you install a nightly build or an unstable release and want to return to a stable release, follow these instructions:&lt;br /&gt;
&lt;br /&gt;
Remove the unstable or nightly PPA:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot;&amp;gt;&lt;br /&gt;
apt-cache policy | grep -Eo &#039;team-xbmc/(unstable|nightly)&#039; | sudo xargs -r add-apt-repository -ryP&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then restore the stable version with the following commands:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot;&amp;gt;&lt;br /&gt;
sudo add-apt-repository ppa:team-xbmc/ppa&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get remove kodi kodi-x11&lt;br /&gt;
sudo apt-get install kodi&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Downgrading between newer and older stable versions ===&lt;br /&gt;
If you want to return to the next most recent stable release, follow these instructions:&lt;br /&gt;
&lt;br /&gt;
Remove the current stable packages and PPA:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt purge kodi\*&lt;br /&gt;
sudo add-apt-repository -r ppa:team-xbmc/ppa&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then install the &amp;quot;oldstable&amp;quot; version with the following commands:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot;&amp;gt;&lt;br /&gt;
sudo add-apt-repository -y ppa:team-xbmc/kodi-old&lt;br /&gt;
sudo apt install kodi&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Reverting to an earlier nightly ===&lt;br /&gt;
ALthough launchpad doesn&#039;t list older nightlies in their PPA, they are usually still available for download directly from the website. Visit the [https://launchpad.net/~team-xbmc/+archive/ubuntu/xbmc-nightly/+packages?field.name_filter=&amp;amp;field.status_filter=superseded&amp;amp;field.series_filter= xbmc-nightly repository index], where you will then have to download the appropriate .deb files and manually install them using &amp;lt;code&amp;gt;sudo dpkg -i [path to downloaded file]&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Uninstalling ===&lt;br /&gt;
If you need to uninstall Kodi and purge its global configuration files (for instance, in the attempt to troubleshoot a persistent crash or other errors), do so by using the first of the following commands. If that fails to solve the issue, you will likely need to remove your user settings folder with all of your settings and library data to return to a state equivalent to what existed before Kodi was first installed on the system. This will not delete any videos or music, but just the settings and library data itself, but it is still recommended to keep a backup of them in case it&#039;s discovered that they weren&#039;t at issue and you are able to effect another solution. An example of how to accomplish a backup and then deletion of your user settings is provided on the last two lines, the highlighted one being responsible for making the backup which can thereafter be found in your home folder with the filename kodi-backup_&#039;&#039;timestamp&#039;&#039;.tar.xz.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot; highlight=&amp;quot;2-3&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt purge kodi\*&lt;br /&gt;
tar cf - &amp;quot;${HOME}/.kodi/&amp;quot; | xz -z9e - &amp;gt;&amp;quot;${HOME}/kodi-backup_$(date +%m%d%y-%H%M).tar.xz&amp;quot;&lt;br /&gt;
rm -Ri &amp;quot;${HOME}/.{kodi,xbmc}/&amp;quot; &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Flatpak ==&lt;br /&gt;
&lt;br /&gt;
If you want to use the flatpak version and do not know, if your distro supports flatpak check https://flatpak.org/setup/ for install instructions.&lt;br /&gt;
&lt;br /&gt;
After you&#039;ve sorted that, go to https://flathub.org/apps/tv.kodi.Kodi and hit the install button or copy the instructions at the end of the page to your terminal and execute them.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Beta channel === &lt;br /&gt;
You can also run Kodi flatpak betas, if you install the flatpak beta remote. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot; highlight=&amp;quot;2-3&amp;quot;&amp;gt;&lt;br /&gt;
flatpak remote-add --if-not-exists flathub-beta https://flathub.org/beta-repo/flathub-beta.flatpakrepo&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then install via &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;shell&amp;quot; highlight=&amp;quot;2-3&amp;quot;&amp;gt;&lt;br /&gt;
flatpak install flathub-beta tv.kodi.Kodi&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You should now have an entry on your system, that&#039;s labeled `Kodi (Beta)`, that you can use to run the beta. Be warned, it will use the same paths as the older versions, so they might clash. Usually they go along well, but make backups, if you need your data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Embedded/Appliance type install==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== LibreELEC ===&lt;br /&gt;
{{main|LibreELEC}}&lt;br /&gt;
{{#lst:LibreELEC|intro}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Third Party Repositories ==&lt;br /&gt;
&amp;lt;!-- Please only list repos that use an internal ffmpeg library --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The instructions in this section are for unofficial Linux binaries that are un/semi supported by Team Kodi. Most of those binaries use system ffmpeg or even worse totally untested libav, which is not recommended for {{kodi}} as we support ffmpeg only.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Debian ===&lt;br /&gt;
Debian GNU/Linux ships its own &#039;&#039;&#039;Kodi from Debian&#039;&#039;&#039; flavor with following changes:&lt;br /&gt;
&lt;br /&gt;
* Only system libraries are used (no embedded third-party libraries except of libdvdread and libdvdnav)&lt;br /&gt;
* Old web interface (Chorus) is shipped to ensure Debian Free Software Guides (DFSG) compatibility&lt;br /&gt;
&lt;br /&gt;
as well as a subset of Kodi binary addons packaged in [https://qa.debian.org/developer.php?email=vasek.gello@gmail.com main repository of Debian].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Warning|&#039;&#039;&#039;Team Kodi offers no official support to &amp;quot;Kodi from Debian&amp;quot;!&#039;&#039;&#039; Please refer to links below for support!}}&lt;br /&gt;
&lt;br /&gt;
The support for Kodi from Debian is provided via the following channels:&lt;br /&gt;
# [https://forum.kodi.tv/showthread.php?tid=363611 Kodi from Debian - Support Thread] on Kodi forums&lt;br /&gt;
# [https://github.com/xbmc/xbmc/issues Github issues]&lt;br /&gt;
# [https://bugs.debian.org Debian Bug Tracker]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Checking installed and available Kodi packages ====&lt;br /&gt;
&lt;br /&gt;
You can check what versions of Kodi and its binary add-ons are installed with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=bash&amp;gt;&lt;br /&gt;
dpkg -l | grep kodi&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To check what versions of Kodi are available, use this command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=bash&amp;gt;&lt;br /&gt;
apt-cache policy kodi*&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Installing Kodi on Debian Unstable or Testing ====&lt;br /&gt;
&lt;br /&gt;
Installation of Kodi from Debian on Debian unstable (&amp;quot;sid&amp;quot;) and testing is straightforward:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=bash&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt install kodi&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To install Kodi binary add-ons (like &#039;&#039;&#039;PVR IPTV Simple&#039;&#039;&#039;, for example):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=bash&amp;gt;&lt;br /&gt;
sudo apt install kodi-pvr-iptvsimple&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: Make sure user running Kodi belongs to the following groups&lt;br /&gt;
(for example, for user &#039;&#039;&#039;kodi&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=bash&amp;gt;&lt;br /&gt;
$ groups kodi&lt;br /&gt;
kodi: cdrom,audio,render,video,plugdev,users,dialout,dip,input&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This needs to be done to ensure Video Acceleration API (VA-API) is properly initialized during Kodi start-up and videos playing get acceleration using VAAPI and not VDPAU on Intel or AMD cards. To add user to groups, use the command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=bash&amp;gt;&lt;br /&gt;
usermod -a -G cdrom,audio,render,video,plugdev,users,dialout,dip,input kodi&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Installing Kodi on Debian 10 &amp;quot;buster&amp;quot; ====&lt;br /&gt;
&lt;br /&gt;
By default, Debian buster users get Kodi 17.6 &amp;quot;Krypton&amp;quot;. However, it is possible to get Kodi 19.x &amp;quot;Matrix&amp;quot; from buster-backports.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To get Kodi 17.6 and the corresponding add-ons, use the method described in &#039;&#039;&#039;Debian Unstable or Testing&#039;&#039;&#039; section above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To get Kodi 19.x and the corresponding add-ons from Debian Backports:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=bash&amp;gt;&lt;br /&gt;
# Add Debian Backports repository for Debian 10 &amp;quot;buster&amp;quot;&lt;br /&gt;
if ! apt-cache policy 2&amp;gt;/dev/null | grep -q &amp;quot;http://.*buster-backports&amp;quot;; then&lt;br /&gt;
  echo &amp;quot;deb http://deb.debian.org/debian/ buster-backports main contrib&amp;quot; | sudo tee /etc/apt/sources.list.d/buster-backports.list&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# Update APT lists&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
# Install Kodi from backports:&lt;br /&gt;
sudo apt-get install {kodi,kodi-bin,kodi-data,kodi-repository-kodi,libspdlog1}/buster-backports&lt;br /&gt;
&lt;br /&gt;
# (OPTIONAL) Install Kodi binary add-ons (for example, &#039;PVR IPTV Simple&#039;):&lt;br /&gt;
sudo apt-get install kodi-pvr-iptvsimple/buster-backports&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Installing Kodi on Debian 9 &amp;quot;stretch&amp;quot; ====&lt;br /&gt;
&lt;br /&gt;
By default, Debian stretch users get Kodi 17.1 &amp;quot;Krypton&amp;quot;. No higher version is packaged in backports.&lt;br /&gt;
&lt;br /&gt;
To get Kodi 17.1 and the corresponding add-ons, use the method described in &#039;&#039;&#039;Debian Unstable or Testing&#039;&#039;&#039; section above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Raspberry Pi OS ===&lt;br /&gt;
{{see also|HOW-TO:Install Kodi on Raspberry Pi}}&lt;br /&gt;
Installing on Raspberry Pi OS is done with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=bash&amp;gt;&lt;br /&gt;
sudo apt-get install kodi&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Upgrading on Raspberry Pi OS is done with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=bash&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get upgrade&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Installation from source ==&lt;br /&gt;
If distribution packages are not available, or you need a newer version, or specific features enabled, then you will most likely need to compile from source. See our &#039;&#039;&#039;[[Compiling Kodi]]&#039;&#039;&#039; guide.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Updated|20}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:How-to]]&lt;br /&gt;
[[Category:Installation|Linux]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=248335</id>
		<title>Kodi Foundation</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=248335"/>
		<updated>2023-11-15T19:12:02Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: /* Previous elections */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav}}&lt;br /&gt;
&amp;lt;section begin=intro /&amp;gt;The &amp;quot;&#039;&#039;&#039;Kodi Foundation&#039;&#039;&#039;&amp;quot; is the non-profit organization that oversees the [[Kodi|{{kodi}}]] project and is registered in the US.&amp;lt;section end=intro /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Members ==&lt;br /&gt;
Membership of the Kodi Foundation is typically taken from members of Team Kodi, but may include non Team members.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors ==&lt;br /&gt;
{| class=&amp;quot;infobox&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;section begin=Foundation members /&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;Keith Herrington (keith)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2016 - 11/2024&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Darren Hill (DarrenHill)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2018 - 11/2024&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Prof Yaffle (Prof Yaffle)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2023 - 11/2025&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Yol (Yol)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2019 - 11/2025&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Phunkyfish (Phunkyfish)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2023 - 11/2025&#039;&#039;&amp;lt;section end=Foundation members /&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
The Kodi Board of Directors are Foundation members that manages the Kodi Foundation. The Board consists of five seats that are chosen by vote from the Kodi Foundation members. The Board&#039;s responsibilities include management of funds, publicity, and all business related issues (taxes, communication with other businesses, maintaining non-profit status etc.)&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Board of Directors meetings ==&lt;br /&gt;
The Board meets about once a month (in addition to any special meetings as required) to discuss any business that needs to be handled by the foundation.  Meetings are typically conducted via teleconference using a service such as Skype.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors elections ==&lt;br /&gt;
;Who can be a Kodi Board member?&lt;br /&gt;
:Any existing member of the foundation, as voted by the remaining members.&lt;br /&gt;
&lt;br /&gt;
;How long does a board member hold office?&lt;br /&gt;
:Terms last for two years. We endeavor to have a staggered cycle so that not all board members are turned over at a single election. There are no term restrictions, so Board members may even run for consecutive terms. However, in the interests of sharing the load, any and all members are encouraged to participate.&lt;br /&gt;
&lt;br /&gt;
;What is expected of a Kodi Board member?&lt;br /&gt;
:Board members are expected to attend all meetings or will otherwise be diligent in letting the other board members know if they won&#039;t be around.  Further, they&#039;ll be expected to make decisions (as a group) in the best interests of the foundation.  The Board accountable to the members, so should consider recommendations made by members during the decision making process, Though they ultimately must make the final decisions.  Any and all discussion should be frankly communicated to members within a reasonable time frame.&lt;br /&gt;
&lt;br /&gt;
;Who elects the officers (President, Secretary, Treasurer etc?)&lt;br /&gt;
:The board elects the officers.  In doing so, they may choose to take advice from the membership, but the decision is theirs.  The President must be from within the board itself, though Secretary, Treasurer, and any other officers the board wishes to appoint may be from outside the board (or outside the membership).&lt;br /&gt;
&lt;br /&gt;
=== Election process ===&lt;br /&gt;
&lt;br /&gt;
Board elections occur as follows:&lt;br /&gt;
# A member is nominated by the Board to oversee the election.&lt;br /&gt;
# Nominations for the open positions are taken from within the existing membership via email and/or via a forum thread.  This lasts a minimum of 10 days.&lt;br /&gt;
# Confirmed nominees are placed on the ballot.&lt;br /&gt;
# A vote of the membership is then taken using a trusted internet voting service using a ranking system. (usually via the Condorcet Internet Voting Service, http://www.cs.cornell.edu/w8/~andru/civs ) and the candidates with the highest ranks take office.  This lasts about two weeks.&lt;br /&gt;
#: &#039;&#039;In the event of a tie, it will be resolved with the existing board members discussing with the tied nominees. Tied nominees that do not go on the board may be nominated as officers of the Foundation, for example.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Previous elections ===&lt;br /&gt;
* [[/Elections/2023|2023]]&lt;br /&gt;
* [[/Elections/2022|2022]]&lt;br /&gt;
* [[/Elections/2021|2021]]&lt;br /&gt;
* [[/Elections/2020|2020]]&lt;br /&gt;
* [[/Elections/2019|2019]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2018|2018]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2017|2017]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2016|2016]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2014|2014]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2013|2013]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2012|2012]]&lt;br /&gt;
&lt;br /&gt;
== Foundation Bylaws and other important documents ==&lt;br /&gt;
* [[Media:ByLaws.pdf]]&lt;br /&gt;
* [[Media:Delaware Incorporation Notice.pdf]]&lt;br /&gt;
* [[Media:Delaware Notice Of Good Standing.pdf]]&lt;br /&gt;
* [[Media:KodiFoundationIncorporationNotice.pdf]]&lt;br /&gt;
* [[Media:Kodi_Foundation_exempt.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Trademarks ==&lt;br /&gt;
{{see|Official:Trademark Policy index}}&lt;br /&gt;
&lt;br /&gt;
== Financial information ==&lt;br /&gt;
&lt;br /&gt;
=== Financial status ===&lt;br /&gt;
&lt;br /&gt;
* Form 990 2016 - http://www.guidestar.org/FinDocuments/2016/474/565/2016-474565769-0e36f6e3-9.pdf &lt;br /&gt;
* Income and expenses 2015 - https://drive.google.com/file/d/0BwsEEPRqIzELOVpUa0p4endrRWc/view?usp=sharing&lt;br /&gt;
* Income and expenses 2014 - https://drive.google.com/file/d/0BwsEEPRqIzELVW9rMkpPUWZRSHM/view?usp=sharing&lt;br /&gt;
* Income and expenses 2013 - https://docs.google.com/spreadsheet/ccc?key=0AtlJ3dnHcw46dHpmeXlIV0hGaC13Z3I3b25hZWhWRGc#gid=8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;note&#039;&#039;: 2014 and 2015 expenses are US Foundation account only.&lt;br /&gt;
&lt;br /&gt;
=== Account details ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Unites States account&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Bank: Wells Fargo&lt;br /&gt;
* Beneficiary: Kodi Foundation&lt;br /&gt;
&lt;br /&gt;
== Legal representation ==&lt;br /&gt;
The Kodi Foundation is legally represented by the [[w:Software Freedom Law Center|SFLC (Software Freedom Law Center)]].&lt;br /&gt;
&lt;br /&gt;
In addition the Kodi Foundation is member of [[w:Open_Invention_Network|OIN (Open Invention Network)]] since 9 July 2010. OIN is a defensive patent pool and community of patent non-aggression which enables freedom of action in Linux.&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
For contact information, please see http://kodi.tv/about/contact/&lt;br /&gt;
&lt;br /&gt;
[[Category:Kodi_Foundation-Archived]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=248334</id>
		<title>Kodi Foundation</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=248334"/>
		<updated>2023-11-15T19:09:47Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav}}&lt;br /&gt;
&amp;lt;section begin=intro /&amp;gt;The &amp;quot;&#039;&#039;&#039;Kodi Foundation&#039;&#039;&#039;&amp;quot; is the non-profit organization that oversees the [[Kodi|{{kodi}}]] project and is registered in the US.&amp;lt;section end=intro /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Members ==&lt;br /&gt;
Membership of the Kodi Foundation is typically taken from members of Team Kodi, but may include non Team members.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors ==&lt;br /&gt;
{| class=&amp;quot;infobox&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;section begin=Foundation members /&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;Keith Herrington (keith)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2016 - 11/2024&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Darren Hill (DarrenHill)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2018 - 11/2024&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Prof Yaffle (Prof Yaffle)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2023 - 11/2025&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Yol (Yol)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2019 - 11/2025&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Phunkyfish (Phunkyfish)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2023 - 11/2025&#039;&#039;&amp;lt;section end=Foundation members /&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
The Kodi Board of Directors are Foundation members that manages the Kodi Foundation. The Board consists of five seats that are chosen by vote from the Kodi Foundation members. The Board&#039;s responsibilities include management of funds, publicity, and all business related issues (taxes, communication with other businesses, maintaining non-profit status etc.)&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Board of Directors meetings ==&lt;br /&gt;
The Board meets about once a month (in addition to any special meetings as required) to discuss any business that needs to be handled by the foundation.  Meetings are typically conducted via teleconference using a service such as Skype.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors elections ==&lt;br /&gt;
;Who can be a Kodi Board member?&lt;br /&gt;
:Any existing member of the foundation, as voted by the remaining members.&lt;br /&gt;
&lt;br /&gt;
;How long does a board member hold office?&lt;br /&gt;
:Terms last for two years. We endeavor to have a staggered cycle so that not all board members are turned over at a single election. There are no term restrictions, so Board members may even run for consecutive terms. However, in the interests of sharing the load, any and all members are encouraged to participate.&lt;br /&gt;
&lt;br /&gt;
;What is expected of a Kodi Board member?&lt;br /&gt;
:Board members are expected to attend all meetings or will otherwise be diligent in letting the other board members know if they won&#039;t be around.  Further, they&#039;ll be expected to make decisions (as a group) in the best interests of the foundation.  The Board accountable to the members, so should consider recommendations made by members during the decision making process, Though they ultimately must make the final decisions.  Any and all discussion should be frankly communicated to members within a reasonable time frame.&lt;br /&gt;
&lt;br /&gt;
;Who elects the officers (President, Secretary, Treasurer etc?)&lt;br /&gt;
:The board elects the officers.  In doing so, they may choose to take advice from the membership, but the decision is theirs.  The President must be from within the board itself, though Secretary, Treasurer, and any other officers the board wishes to appoint may be from outside the board (or outside the membership).&lt;br /&gt;
&lt;br /&gt;
=== Election process ===&lt;br /&gt;
&lt;br /&gt;
Board elections occur as follows:&lt;br /&gt;
# A member is nominated by the Board to oversee the election.&lt;br /&gt;
# Nominations for the open positions are taken from within the existing membership via email and/or via a forum thread.  This lasts a minimum of 10 days.&lt;br /&gt;
# Confirmed nominees are placed on the ballot.&lt;br /&gt;
# A vote of the membership is then taken using a trusted internet voting service using a ranking system. (usually via the Condorcet Internet Voting Service, http://www.cs.cornell.edu/w8/~andru/civs ) and the candidates with the highest ranks take office.  This lasts about two weeks.&lt;br /&gt;
#: &#039;&#039;In the event of a tie, it will be resolved with the existing board members discussing with the tied nominees. Tied nominees that do not go on the board may be nominated as officers of the Foundation, for example.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Previous elections ===&lt;br /&gt;
* [[/Elections/2023|2023]]&lt;br /&gt;
* [[/Elections/2021|2021]]&lt;br /&gt;
* [[/Elections/2020|2020]]&lt;br /&gt;
* [[/Elections/2019|2019]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2018|2018]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2017|2017]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2016|2016]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2014|2014]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2013|2013]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2012|2012]]&lt;br /&gt;
&lt;br /&gt;
== Foundation Bylaws and other important documents ==&lt;br /&gt;
* [[Media:ByLaws.pdf]]&lt;br /&gt;
* [[Media:Delaware Incorporation Notice.pdf]]&lt;br /&gt;
* [[Media:Delaware Notice Of Good Standing.pdf]]&lt;br /&gt;
* [[Media:KodiFoundationIncorporationNotice.pdf]]&lt;br /&gt;
* [[Media:Kodi_Foundation_exempt.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Trademarks ==&lt;br /&gt;
{{see|Official:Trademark Policy index}}&lt;br /&gt;
&lt;br /&gt;
== Financial information ==&lt;br /&gt;
&lt;br /&gt;
=== Financial status ===&lt;br /&gt;
&lt;br /&gt;
* Form 990 2016 - http://www.guidestar.org/FinDocuments/2016/474/565/2016-474565769-0e36f6e3-9.pdf &lt;br /&gt;
* Income and expenses 2015 - https://drive.google.com/file/d/0BwsEEPRqIzELOVpUa0p4endrRWc/view?usp=sharing&lt;br /&gt;
* Income and expenses 2014 - https://drive.google.com/file/d/0BwsEEPRqIzELVW9rMkpPUWZRSHM/view?usp=sharing&lt;br /&gt;
* Income and expenses 2013 - https://docs.google.com/spreadsheet/ccc?key=0AtlJ3dnHcw46dHpmeXlIV0hGaC13Z3I3b25hZWhWRGc#gid=8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;note&#039;&#039;: 2014 and 2015 expenses are US Foundation account only.&lt;br /&gt;
&lt;br /&gt;
=== Account details ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Unites States account&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Bank: Wells Fargo&lt;br /&gt;
* Beneficiary: Kodi Foundation&lt;br /&gt;
&lt;br /&gt;
== Legal representation ==&lt;br /&gt;
The Kodi Foundation is legally represented by the [[w:Software Freedom Law Center|SFLC (Software Freedom Law Center)]].&lt;br /&gt;
&lt;br /&gt;
In addition the Kodi Foundation is member of [[w:Open_Invention_Network|OIN (Open Invention Network)]] since 9 July 2010. OIN is a defensive patent pool and community of patent non-aggression which enables freedom of action in Linux.&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
For contact information, please see http://kodi.tv/about/contact/&lt;br /&gt;
&lt;br /&gt;
[[Category:Kodi_Foundation-Archived]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=248333</id>
		<title>Kodi Foundation</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=248333"/>
		<updated>2023-11-15T19:09:02Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: /* Previous elections */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav}}&lt;br /&gt;
&amp;lt;section begin=intro /&amp;gt;The &amp;quot;&#039;&#039;&#039;Kodi Foundation&#039;&#039;&#039;&amp;quot; is the non-profit organization that oversees the [[Kodi|{{kodi}}]] project and is registered in the US.&amp;lt;section end=intro /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Members ==&lt;br /&gt;
Membership of the Kodi Foundation is typically taken from members of Team Kodi, but may include non Team members.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors ==&lt;br /&gt;
{| class=&amp;quot;infobox&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;section begin=Foundation members /&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;Keith Herrington (keith)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2016 - 11/2024&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Darren Hill (DarrenHill)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2018 - 11/2024&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Prof Yaffle (Prof Yaffle)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2023 - 11/2025&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Yol (Yol)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2019 - 11/2025&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Phunkyfish (Phunkyfish)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2023 - 11/2025&#039;&#039;&amp;lt;section end=Foundation members /&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
The Kodi Board of Directors are Foundation members that manages the Kodi Foundation. The Board consists of five seats that are chosen by vote from the Kodi Foundation members. The Board&#039;s responsibilities include management of funds, publicity, and all business related issues (taxes, communication with other businesses, maintaining non-profit status etc.)&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Board of Directors meetings ==&lt;br /&gt;
The Board meets about once a month (in addition to any special meetings as required) to discuss any business that needs to be handled by the foundation.  Meetings are typically conducted via teleconference using a service such as Skype.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors elections ==&lt;br /&gt;
;Who can be a Kodi Board member?&lt;br /&gt;
:Any existing member of the foundation, as voted by the remaining members.&lt;br /&gt;
&lt;br /&gt;
;How long does a board member hold office?&lt;br /&gt;
:Terms last for two years. We endeavor to have a staggered cycle so that not all board members are turned over at a single election. There are no term restrictions, so Board members may even run for consecutive terms. However, in the interests of sharing the load, any and all members are encouraged to participate.&lt;br /&gt;
&lt;br /&gt;
;What is expected of a Kodi Board member?&lt;br /&gt;
:Board members are expected to attend all meetings or will otherwise be diligent in letting the other board members know if they won&#039;t be around.  Further, they&#039;ll be expected to make decisions (as a group) in the best interests of the foundation.  The Board accountable to the members, so should consider recommendations made by members during the decision making process, Though they ultimately must make the final decisions.  Any and all discussion should be frankly communicated to members within a reasonable time frame.&lt;br /&gt;
&lt;br /&gt;
;Who elects the officers (President, Secretary, Treasurer etc?)&lt;br /&gt;
:The board elects the officers.  In doing so, they may choose to take advice from the membership, but the decision is theirs.  The President must be from within the board itself, though Secretary, Treasurer, and any other officers the board wishes to appoint may be from outside the board (or outside the membership).&lt;br /&gt;
&lt;br /&gt;
=== Election process ===&lt;br /&gt;
&lt;br /&gt;
Board elections occur as follows:&lt;br /&gt;
# A member is nominated by the Board to oversee the election.&lt;br /&gt;
# Nominations for the open positions are taken from within the existing membership via email and/or via a forum thread.  This lasts a minimum of 10 days.&lt;br /&gt;
# Confirmed nominees are placed on the ballot.&lt;br /&gt;
# A vote of the membership is then taken using a trusted internet voting service using a ranking system. (usually via the Condorcet Internet Voting Service, http://www.cs.cornell.edu/w8/~andru/civs ) and the candidates with the highest ranks take office.  This lasts about two weeks.&lt;br /&gt;
#: &#039;&#039;In the event of a tie, it will be resolved with the existing board members discussing with the tied nominees. Tied nominees that do not go on the board may be nominated as officers of the Foundation, for example.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Previous elections ===&lt;br /&gt;
* [[/Elections/2021|2023]]&lt;br /&gt;
* [[/Elections/2021|2021]]&lt;br /&gt;
* [[/Elections/2020|2020]]&lt;br /&gt;
* [[/Elections/2019|2019]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2018|2018]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2017|2017]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2016|2016]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2014|2014]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2013|2013]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2012|2012]]&lt;br /&gt;
&lt;br /&gt;
== Foundation Bylaws and other important documents ==&lt;br /&gt;
* [[Media:ByLaws.pdf]]&lt;br /&gt;
* [[Media:Delaware Incorporation Notice.pdf]]&lt;br /&gt;
* [[Media:Delaware Notice Of Good Standing.pdf]]&lt;br /&gt;
* [[Media:KodiFoundationIncorporationNotice.pdf]]&lt;br /&gt;
* [[Media:Kodi_Foundation_exempt.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Trademarks ==&lt;br /&gt;
{{see|Official:Trademark Policy index}}&lt;br /&gt;
&lt;br /&gt;
== Financial information ==&lt;br /&gt;
&lt;br /&gt;
=== Financial status ===&lt;br /&gt;
&lt;br /&gt;
* Form 990 2016 - http://www.guidestar.org/FinDocuments/2016/474/565/2016-474565769-0e36f6e3-9.pdf &lt;br /&gt;
* Income and expenses 2015 - https://drive.google.com/file/d/0BwsEEPRqIzELOVpUa0p4endrRWc/view?usp=sharing&lt;br /&gt;
* Income and expenses 2014 - https://drive.google.com/file/d/0BwsEEPRqIzELVW9rMkpPUWZRSHM/view?usp=sharing&lt;br /&gt;
* Income and expenses 2013 - https://docs.google.com/spreadsheet/ccc?key=0AtlJ3dnHcw46dHpmeXlIV0hGaC13Z3I3b25hZWhWRGc#gid=8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;note&#039;&#039;: 2014 and 2015 expenses are US Foundation account only.&lt;br /&gt;
&lt;br /&gt;
=== Account details ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Unites States account&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Bank: Wells Fargo&lt;br /&gt;
* Beneficiary: Kodi Foundation&lt;br /&gt;
&lt;br /&gt;
== Legal representation ==&lt;br /&gt;
The Kodi Foundation is legally represented by the [[w:Software Freedom Law Center|SFLC (Software Freedom Law Center)]].&lt;br /&gt;
&lt;br /&gt;
In addition the Kodi Foundation is member of [[w:Open_Invention_Network|OIN (Open Invention Network)]] since 9 July 2010. OIN is a defensive patent pool and community of patent non-aggression which enables freedom of action in Linux.&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
For contact information, please see http://kodi.tv/about/contact/&lt;br /&gt;
&lt;br /&gt;
[[Category:Kodi_Foundation-Archived]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2023&amp;diff=248332</id>
		<title>Kodi Foundation/Elections/2023</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2023&amp;diff=248332"/>
		<updated>2023-11-15T19:08:22Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Kodi Foundation]] | [[Kodi Foundation/Elections|Elections]] }}&lt;br /&gt;
&lt;br /&gt;
==Pre-election==&lt;br /&gt;
DarrenHill was voting admin, as his seat was not up for re-election.&lt;br /&gt;
&lt;br /&gt;
==Nomination notice==&lt;br /&gt;
The following notice posted on the Team Kodi private forum, and linked to in an e-mail to all Foundation members, to give due notice about the election and to collect nominations. The Foundation bylaws state that at least ten days must be given for a notice about member decisions such as an election, which served as the nomination period.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Nominations for the XBMC Foundation Board Elections 2023&amp;quot;, as written by DarrenHill&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
It&#039;s almost September, meaning it&#039;s time for the yearly XBMC Foundation board elections again.&lt;br /&gt;
&lt;br /&gt;
This year board member seats up for election are: Yol, Ronie and Da-anda.&lt;br /&gt;
Seats not up for election are Keith and DarrenHill (me) - so don&#039;t nominate us as we don&#039;t need two seats ;)&lt;br /&gt;
&lt;br /&gt;
The rules are pretty simple:&lt;br /&gt;
&lt;br /&gt;
1. Any team member can nominate, but the nominee must be a member of the Foundation*.&lt;br /&gt;
2. You&#039;re allowed to nominate multiple people if you wish.&lt;br /&gt;
3. The nominated member has the option to accept or decline their nomination.&lt;br /&gt;
4. Only foundation members will be able to vote. *&lt;br /&gt;
5. If a person has already been nominated, please don&#039;t nominate them again.&lt;br /&gt;
&lt;br /&gt;
Please make sure to keep your nominations simple and clear. Eg:&lt;br /&gt;
&lt;br /&gt;
Nominate: &amp;lt;member&amp;gt;&lt;br /&gt;
Motivation: I would like to nominate &amp;lt;member&amp;gt; for the XBMC Foundation Board because &amp;lt;motivation&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In case you&#039;re nominated, please reply with something like..&lt;br /&gt;
&lt;br /&gt;
Thank you. I accept my nomination. &amp;lt;motivation&amp;gt;&lt;br /&gt;
&lt;br /&gt;
or&lt;br /&gt;
&lt;br /&gt;
No, thanks. I decline my nomination. &amp;lt;Optional motivation&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The second post in this thread wil be updated with a list of members and the nomination status on a regular basis,&lt;br /&gt;
so you don&#039;t have to crawl through all posts/pages to check.&lt;br /&gt;
&lt;br /&gt;
The nomination period is 1 month starting today and will end on October 1st.&lt;br /&gt;
Actual voting will begin after that and will be closed a couple of weeks later (if a vote is required) &lt;br /&gt;
Once the voting is over, the results will be announced in this thread as well as though a team email.&lt;br /&gt;
&lt;br /&gt;
The actual starting date for the new board seats will be in November, when we would like to have a joint online meeting with the old and new board members as a smooth hand-over and to welcome the new board members.&lt;br /&gt;
&lt;br /&gt;
* If you&#039;d like to vote in the election, you need to be accepted as a foundation member and affirm the by-laws of the foundation.&lt;br /&gt;
Details on applying to join the Foundation are at: [url=https://forum.kodi.tv/showthread.php?tid=335025]Click here to join the Foundation[/url]&lt;br /&gt;
&lt;br /&gt;
A list of all foundation members can be found here: [url=https://drive.google.com/open?id=1yy_gPbZPGeJUG5GDcZZScek7mEY-EdY0xY0UJaJRPHE]Foundation member list[/url] (only accessible to Google accounts logged in using your Kodi address).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Voting==&lt;br /&gt;
&lt;br /&gt;
;Final list of confirmed nominees:&lt;br /&gt;
* yol&lt;br /&gt;
* prof yaffle&lt;br /&gt;
* phunkyfish&lt;br /&gt;
&lt;br /&gt;
==Results==&lt;br /&gt;
&lt;br /&gt;
As three nominations were accepted for three seats, no vote was held and all three nominees were accepted onto the board.&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2023&amp;diff=248331</id>
		<title>Kodi Foundation/Elections/2023</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2023&amp;diff=248331"/>
		<updated>2023-11-15T19:07:28Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Created page with &amp;quot;{{mininav| Kodi Foundation | Elections }}  ==Pre-election== DarrenHill was voting admin, as his seat was not up for re-election.  ==Nomination notice== The following notice posted on the Team Kodi private forum, and linked to in an e-mail to all Foundation members, to give due notice about the election and to collect nominations. The Foundation bylaws state that at least ten days must be given for a notice about member decisions such as...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Kodi Foundation]] | [[Kodi Foundation/Elections|Elections]] }}&lt;br /&gt;
&lt;br /&gt;
==Pre-election==&lt;br /&gt;
DarrenHill was voting admin, as his seat was not up for re-election.&lt;br /&gt;
&lt;br /&gt;
==Nomination notice==&lt;br /&gt;
The following notice posted on the Team Kodi private forum, and linked to in an e-mail to all Foundation members, to give due notice about the election and to collect nominations. The Foundation bylaws state that at least ten days must be given for a notice about member decisions such as an election, which served as the nomination period.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Nominations for the XBMC Foundation Board Elections 2023&amp;quot;, as written by DarrenHill&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
It&#039;s almost September, meaning it&#039;s time for the yearly [url=https://kodi.tv/about/xbmc-foundation]XBMC Foundation[/url] board elections again.&lt;br /&gt;
&lt;br /&gt;
This year board member seats up for election are: Yol, Ronie and Da-anda.&lt;br /&gt;
Seats not up for election are Keith and DarrenHill (me) - so don&#039;t nominate us as we don&#039;t need two seats ;)&lt;br /&gt;
&lt;br /&gt;
The rules are pretty simple:&lt;br /&gt;
&lt;br /&gt;
1. Any team member can nominate, but the nominee must be a member of the Foundation*.&lt;br /&gt;
2. You&#039;re allowed to nominate multiple people if you wish.&lt;br /&gt;
3. The nominated member has the option to accept or decline their nomination.&lt;br /&gt;
4. Only foundation members will be able to vote. *&lt;br /&gt;
5. If a person has already been nominated, please don&#039;t nominate them again.&lt;br /&gt;
&lt;br /&gt;
Please make sure to keep your nominations simple and clear. Eg:&lt;br /&gt;
[quote]&lt;br /&gt;
Nominate: &amp;lt;member&amp;gt;&lt;br /&gt;
Motivation: I would like to nominate &amp;lt;member&amp;gt; for the XBMC Foundation Board because &amp;lt;motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
&lt;br /&gt;
In case you&#039;re nominated, please reply with something like..&lt;br /&gt;
[quote]&lt;br /&gt;
Thank you. I accept my nomination. &amp;lt;motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
or&lt;br /&gt;
[quote]&lt;br /&gt;
No, thanks. I decline my nomination. &amp;lt;Optional motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
&lt;br /&gt;
The second post in this thread wil be updated with a list of members and the nomination status on a regular basis,&lt;br /&gt;
so you don&#039;t have to crawl through all posts/pages to check.&lt;br /&gt;
&lt;br /&gt;
The nomination period is 1 month starting today and will end on October 1st.&lt;br /&gt;
Actual voting will begin after that and will be closed a couple of weeks later (if a vote is required) &lt;br /&gt;
Once the voting is over, the results will be announced in this thread as well as though a team email.&lt;br /&gt;
&lt;br /&gt;
The actual starting date for the new board seats will be in November, when we would like to have a joint online meeting with the old and new board members as a smooth hand-over and to welcome the new board members.&lt;br /&gt;
&lt;br /&gt;
* If you&#039;d like to vote in the election, you need to be accepted as a foundation member and affirm the by-laws of the foundation.&lt;br /&gt;
Details on applying to join the Foundation are at: [url=https://forum.kodi.tv/showthread.php?tid=335025]Click here to join the Foundation[/url]&lt;br /&gt;
&lt;br /&gt;
A list of all foundation members can be found here: [url=https://drive.google.com/open?id=1yy_gPbZPGeJUG5GDcZZScek7mEY-EdY0xY0UJaJRPHE]Foundation member list[/url] (only accessible to Google accounts logged in using your Kodi address).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Voting==&lt;br /&gt;
&lt;br /&gt;
;Final list of confirmed nominees:&lt;br /&gt;
* yol&lt;br /&gt;
* prof yaffle&lt;br /&gt;
* phunkyfish&lt;br /&gt;
&lt;br /&gt;
==Results==&lt;br /&gt;
&lt;br /&gt;
As three nominations were accepted for three seats, no vote was held and all three nominees were accepted onto the board.&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=248330</id>
		<title>Kodi Foundation</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=248330"/>
		<updated>2023-11-15T19:01:25Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Update for 2023 election results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav}}&lt;br /&gt;
&amp;lt;section begin=intro /&amp;gt;The &amp;quot;&#039;&#039;&#039;Kodi Foundation&#039;&#039;&#039;&amp;quot; is the non-profit organization that oversees the [[Kodi|{{kodi}}]] project and is registered in the US.&amp;lt;section end=intro /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Members ==&lt;br /&gt;
Membership of the Kodi Foundation is typically taken from members of Team Kodi, but may include non Team members.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors ==&lt;br /&gt;
{| class=&amp;quot;infobox&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;section begin=Foundation members /&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;Keith Herrington (keith)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2016 - 11/2024&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Darren Hill (DarrenHill)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2018 - 11/2024&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Prof Yaffle (Prof Yaffle)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2023 - 11/2025&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Yol (Yol)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2019 - 11/2025&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Phunkyfish (Phunkyfish)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2023 - 11/2025&#039;&#039;&amp;lt;section end=Foundation members /&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
The Kodi Board of Directors are Foundation members that manages the Kodi Foundation. The Board consists of five seats that are chosen by vote from the Kodi Foundation members. The Board&#039;s responsibilities include management of funds, publicity, and all business related issues (taxes, communication with other businesses, maintaining non-profit status etc.)&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Board of Directors meetings ==&lt;br /&gt;
The Board meets about once a month (in addition to any special meetings as required) to discuss any business that needs to be handled by the foundation.  Meetings are typically conducted via teleconference using a service such as Skype.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors elections ==&lt;br /&gt;
;Who can be a Kodi Board member?&lt;br /&gt;
:Any existing member of the foundation, as voted by the remaining members.&lt;br /&gt;
&lt;br /&gt;
;How long does a board member hold office?&lt;br /&gt;
:Terms last for two years. We endeavor to have a staggered cycle so that not all board members are turned over at a single election. There are no term restrictions, so Board members may even run for consecutive terms. However, in the interests of sharing the load, any and all members are encouraged to participate.&lt;br /&gt;
&lt;br /&gt;
;What is expected of a Kodi Board member?&lt;br /&gt;
:Board members are expected to attend all meetings or will otherwise be diligent in letting the other board members know if they won&#039;t be around.  Further, they&#039;ll be expected to make decisions (as a group) in the best interests of the foundation.  The Board accountable to the members, so should consider recommendations made by members during the decision making process, Though they ultimately must make the final decisions.  Any and all discussion should be frankly communicated to members within a reasonable time frame.&lt;br /&gt;
&lt;br /&gt;
;Who elects the officers (President, Secretary, Treasurer etc?)&lt;br /&gt;
:The board elects the officers.  In doing so, they may choose to take advice from the membership, but the decision is theirs.  The President must be from within the board itself, though Secretary, Treasurer, and any other officers the board wishes to appoint may be from outside the board (or outside the membership).&lt;br /&gt;
&lt;br /&gt;
=== Election process ===&lt;br /&gt;
&lt;br /&gt;
Board elections occur as follows:&lt;br /&gt;
# A member is nominated by the Board to oversee the election.&lt;br /&gt;
# Nominations for the open positions are taken from within the existing membership via email and/or via a forum thread.  This lasts a minimum of 10 days.&lt;br /&gt;
# Confirmed nominees are placed on the ballot.&lt;br /&gt;
# A vote of the membership is then taken using a trusted internet voting service using a ranking system. (usually via the Condorcet Internet Voting Service, http://www.cs.cornell.edu/w8/~andru/civs ) and the candidates with the highest ranks take office.  This lasts about two weeks.&lt;br /&gt;
#: &#039;&#039;In the event of a tie, it will be resolved with the existing board members discussing with the tied nominees. Tied nominees that do not go on the board may be nominated as officers of the Foundation, for example.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Previous elections ===&lt;br /&gt;
* [[/Elections/2021|2021]]&lt;br /&gt;
* [[/Elections/2020|2020]]&lt;br /&gt;
* [[/Elections/2019|2019]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2018|2018]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2017|2017]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2016|2016]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2014|2014]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2013|2013]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2012|2012]]&lt;br /&gt;
&lt;br /&gt;
== Foundation Bylaws and other important documents ==&lt;br /&gt;
* [[Media:ByLaws.pdf]]&lt;br /&gt;
* [[Media:Delaware Incorporation Notice.pdf]]&lt;br /&gt;
* [[Media:Delaware Notice Of Good Standing.pdf]]&lt;br /&gt;
* [[Media:KodiFoundationIncorporationNotice.pdf]]&lt;br /&gt;
* [[Media:Kodi_Foundation_exempt.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Trademarks ==&lt;br /&gt;
{{see|Official:Trademark Policy index}}&lt;br /&gt;
&lt;br /&gt;
== Financial information ==&lt;br /&gt;
&lt;br /&gt;
=== Financial status ===&lt;br /&gt;
&lt;br /&gt;
* Form 990 2016 - http://www.guidestar.org/FinDocuments/2016/474/565/2016-474565769-0e36f6e3-9.pdf &lt;br /&gt;
* Income and expenses 2015 - https://drive.google.com/file/d/0BwsEEPRqIzELOVpUa0p4endrRWc/view?usp=sharing&lt;br /&gt;
* Income and expenses 2014 - https://drive.google.com/file/d/0BwsEEPRqIzELVW9rMkpPUWZRSHM/view?usp=sharing&lt;br /&gt;
* Income and expenses 2013 - https://docs.google.com/spreadsheet/ccc?key=0AtlJ3dnHcw46dHpmeXlIV0hGaC13Z3I3b25hZWhWRGc#gid=8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;note&#039;&#039;: 2014 and 2015 expenses are US Foundation account only.&lt;br /&gt;
&lt;br /&gt;
=== Account details ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Unites States account&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Bank: Wells Fargo&lt;br /&gt;
* Beneficiary: Kodi Foundation&lt;br /&gt;
&lt;br /&gt;
== Legal representation ==&lt;br /&gt;
The Kodi Foundation is legally represented by the [[w:Software Freedom Law Center|SFLC (Software Freedom Law Center)]].&lt;br /&gt;
&lt;br /&gt;
In addition the Kodi Foundation is member of [[w:Open_Invention_Network|OIN (Open Invention Network)]] since 9 July 2010. OIN is a defensive patent pool and community of patent non-aggression which enables freedom of action in Linux.&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
For contact information, please see http://kodi.tv/about/contact/&lt;br /&gt;
&lt;br /&gt;
[[Category:Kodi_Foundation-Archived]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=247632</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=247632"/>
		<updated>2023-09-16T08:31:58Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Muted ares&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* Gujal &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=246923</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=246923"/>
		<updated>2023-07-29T07:42:58Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Muted Ares&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* 5Star &amp;lt;!-- ID: repository.5star --&amp;gt;&lt;br /&gt;
* 667repo&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* Alado &amp;lt;!-- ID: repository.alado.tv --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Chikiry &amp;lt;!-- ID: repository.chikiryrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* Gujal &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* Hacky &amp;lt;!-- ID: repository.hacky --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* LoonaticsAsylum &amp;lt;!-- ID: repository.loonaticsasylum|warehousecrates.github.io/TheWareHouse --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* &amp;lt;Ares&amp;gt; &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard &amp;lt;!-- ID: plugin.video.asgard --&amp;gt;&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19|plugin.program.ezzer19wiz --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* LoopTV &amp;lt;!-- ID: plugin.video.looptv --&amp;gt;&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* MandraKodi &amp;lt;!-- ID: plugin.video.mandrakodi --&amp;gt;&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* Moria &amp;lt;!-- ID: plugin.video.moria --&amp;gt;&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* Nightwing &amp;lt;!-- ID: plugin.video.nightwing --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TecnoTV&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Promise &amp;lt;!-- ID: plugin.video.thepromise --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=243505</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=243505"/>
		<updated>2022-12-28T11:51:35Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: 667 repo added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 667repo&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* Gujal &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=243476</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=243476"/>
		<updated>2022-12-24T16:33:15Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Dynasty addon and warehouse repo that it&amp;#039;s from&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Crewnique&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Spartan &amp;lt;!-- ID: sgwizard --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* Gujal &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodiadictos&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* Umbrella &amp;lt;!-- ID: repository.umbrella|plugin.video.umbrella --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Warehouse&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Dynasty&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* FutbolTream &amp;lt;!-- ID: plugin.video.FutbolTream --&amp;gt;&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* Horus &amp;lt;!-- ID: script.module.horus --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Mad Titans &amp;lt;!-- ID: plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* SportHDme &amp;lt;!-- ID: plugin.video.sporthdme --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* Crypto&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Lasix&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=242932</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=242932"/>
		<updated>2022-09-05T17:26:21Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Muted Apollo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* &amp;lt;Apollo&amp;gt;&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* &amp;lt;Apollo&amp;gt; &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* Gujal &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Green Revolution&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* POV&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* &amp;lt;Promise&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=242513</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=242513"/>
		<updated>2022-07-03T18:04:23Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* Ezra &amp;lt;!-- ID: repository.ezra --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* Gujal &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Promise&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=242329</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=242329"/>
		<updated>2022-06-29T20:12:57Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: added Ezra&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Balkan Green&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* cMaNWizard &amp;lt;!-- ID: repository.cMaNWizard --&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Funsterplace&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.GTKing --&amp;gt;&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Luar&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Camaradas &amp;lt;!-- ID: repository.camaradas.repo --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Chains &amp;lt;!-- ID: repository.chainsrepo --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* GTKing &amp;lt;!-- ID: repository.gtking --&amp;gt;&lt;br /&gt;
* Gujal &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* M7 &amp;lt;!-- ID: script.module.m7lib --&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Mhancoc &amp;lt;!-- ID: repository.mhancoc --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Prototype &amp;lt;!-- ID: repository.prototype --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* TheGroove &amp;lt;!-- ID: repository.thegroove --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;\&lt;br /&gt;
* Cristal Azul &amp;lt;!-- ID: plugin.video.cristalazul --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Ezra&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon|plugin.video.magicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* TVsupertuga &amp;lt;!-- ID: plugin.video.TVsupertuga --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* omegle&lt;br /&gt;
* omglz&lt;br /&gt;
* Onlyfans&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* tutorials-iptv-xbmc.blogspot&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=241627</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=241627"/>
		<updated>2022-02-23T15:31:17Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Muted Merlin&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* Gujal &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* &amp;lt;Merlin&amp;gt; &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Continuum&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* Odin &amp;lt;!-- ID: plugin.video.odin --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Q Sports&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &amp;lt;!-- ID: plugin.video.shadow --&amp;gt;&lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=241240</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=241240"/>
		<updated>2022-01-11T18:32:46Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kelebek&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* StreamDigitalRepo&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Doomsday &amp;lt;!-- ID: repository.doomzday --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;madtitansports&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* Gujal &amp;lt;!-- ID: repository.gujal --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* HSK &amp;lt;!-- ID: repository.hsk.repo --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* KDC &amp;lt;!-- ID: repository.KDC --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Mad Titan Sports &amp;lt;!-- ID: repository.madtitansports|plugin.video.madtitansports --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* Mar33 &amp;lt;!-- ID: repository.mar33 --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* Merlin &amp;lt;!-- ID: repository.merlin --&amp;gt;Mad Titan Sports&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay|script.pressplay.artwork|script.pressplay.metadata --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* SteamDigitalRepo &amp;lt;!-- ID: repository.streamdigitalrepo --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: repository.tivustream --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* HDFilme.cx &amp;lt;!-- ID: plugin.video.hdfilme.cx --&amp;gt;&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork|script.incursion.metadata --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod|script.realdebrid --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Merlin&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata|script.module.oathscrapers --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* Tivustream &amp;lt;!-- ID: plugin.video.tivustream --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* Xship &amp;lt;!-- ID: repository.xship --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* Viagra&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2021&amp;diff=238729</id>
		<title>Kodi Foundation/Elections/2021</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2021&amp;diff=238729"/>
		<updated>2021-11-11T18:39:59Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: /* Voting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[XBMC Foundation]] | [[XBMC Foundation/Elections|Elections]] }}&lt;br /&gt;
&lt;br /&gt;
==Pre-election==&lt;br /&gt;
DarrenHill was voting admin, as his seat was not up for re-election.&lt;br /&gt;
&lt;br /&gt;
==Nomination notice==&lt;br /&gt;
The following notice posted on the Team Kodi private forum, and linked to in an e-mail to all Foundation members, to give due notice about the election and to collect nominations. The Foundation bylaws state that at least ten days must be given for a notice about member decisions such as an election, which served as the nomination period.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Nominations for the XBMC Foundation Board Elections 2021&amp;quot;, as written by DarrenHill&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
It&#039;s already September, meaning it&#039;s time for the yearly [url=https://kodi.tv/about/xbmc-foundation]XBMC Foundation[/url] board elections again.&lt;br /&gt;
&lt;br /&gt;
Due to his actual work commitments, Learningit has requested to resign his seat on the board early. With regret, the board have accepted his request and so his seat is also up for nomination.&lt;br /&gt;
&lt;br /&gt;
This year board member seats up for election are: Yol, Ronie and Learningit.&lt;br /&gt;
Seats not up for election are Keith and DarrenHill (me)&lt;br /&gt;
&lt;br /&gt;
The rules are pretty simple:&lt;br /&gt;
&lt;br /&gt;
# Any team member can nominate, but the nominee must be a member of the Foundation*.&lt;br /&gt;
# You&#039;re allowed to nominate multiple people if you wish.&lt;br /&gt;
# The nominated member has the option to accept or decline their nomination.&lt;br /&gt;
# Only foundation members will be able to vote. *&lt;br /&gt;
# If a person has already been nominated, please don&#039;t nominate them again.&lt;br /&gt;
&lt;br /&gt;
Please make sure to keep your nominations simple and clear. Eg:&lt;br /&gt;
[quote]&lt;br /&gt;
Nominate: &amp;lt;member&amp;gt;&lt;br /&gt;
Motivation: I would like to nominate &amp;lt;member&amp;gt; for the XBMC Foundation Board because &amp;lt;motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
&lt;br /&gt;
In case you&#039;re nominated, please reply with something like..&lt;br /&gt;
[quote]&lt;br /&gt;
Thank you. I accept my nomination. &amp;lt;motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
or&lt;br /&gt;
[quote]&lt;br /&gt;
No, thanks. I decline my nomination. &amp;lt;Optional motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
&lt;br /&gt;
The second post in this thread wil be updated with a list of members and the nomination status on a regular basis,&lt;br /&gt;
so you don&#039;t have to crawl through all posts/pages to check.&lt;br /&gt;
&lt;br /&gt;
The nomination period is 1 month starting today and will end on October 16th.&lt;br /&gt;
Actual voting will begin after that and will be closed a couple of weeks later (if a vote is required) &lt;br /&gt;
Once the voting is over, the results will be announced in this thread as well as though a team email.&lt;br /&gt;
&lt;br /&gt;
The actual starting date for the new board seats will be in November, when we would like to have a joint online meeting with the old and new board members as a smooth hand-over and to welcome the new board members.&lt;br /&gt;
&lt;br /&gt;
* If you&#039;d like to vote in the election, you need to be accepted as a foundation member and affirm the by-laws of the foundation.&lt;br /&gt;
Details on applying to join the Foundation are at: https://forum.kodi.tv/showthread.php?tid=335025 (Click here to join the Foundation)&lt;br /&gt;
&lt;br /&gt;
A list of all foundation members can be found here: https://drive.google.com/open?id=1yy_gPbZPGeJUG5GDcZZScek7mEY-EdY0xY0UJaJRPHE (Foundation member list - only accessible to Google accounts logged in using your Kodi address).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Voting==&lt;br /&gt;
Voting started on Tuesday 16th October 2021 and ended on Saturday 6th November 2021 using the Condorcet Internet Voting Service with a ranking scale, https://civs.cs.cornell.edu/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Individual e-mail addresses from Foundation members were entered into the CIVS ballot and mailed each Foundation member with a unique voting key url. This also served as the notice for the start of the voting period.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A second notice was given out outside of the CVIS system in order to reduce the chance of someone accidentally not receiving a voting notice. Voting notices can be sent out again, but voting keys are generated based on e-mail addresses and thus prevent double voting.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following description was used for the ballot:&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Elections for the Kodi Foundation Board for 2021.&lt;br /&gt;
&lt;br /&gt;
We have 4 candidates for the 3 available seats, so please select your preference for who should take the seats.&lt;br /&gt;
&lt;br /&gt;
Voting is available to all Kodi Foundation members, and will end just before the team meeting on 6th November.&lt;br /&gt;
&lt;br /&gt;
The results will be announced during that meeting.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
;Final list of confirmed nominees:&lt;br /&gt;
* da-anda&lt;br /&gt;
* yol&lt;br /&gt;
* ronie&lt;br /&gt;
* phunkyfish&lt;br /&gt;
&lt;br /&gt;
==Results==&lt;br /&gt;
24 Foundation members voted. The top three ranked become board members effective November 2021. Da-anda, Ronie and yol were elected as board members.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Results page:&#039;&#039;&#039; https://civs1.civs.us/cgi-bin/results.pl?id=E_3a8f50794fc75de6&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;&#039;ronie&#039;&#039;&#039;  (Condorcet winner: wins contests with all other choices)&lt;br /&gt;
# &#039;&#039;&#039;yol&#039;&#039;&#039; &lt;br /&gt;
# &#039;&#039;&#039;da-anda&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=238728</id>
		<title>Kodi Foundation</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=238728"/>
		<updated>2021-11-11T18:39:01Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: /* Previous elections */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav}}&lt;br /&gt;
&amp;lt;section begin=intro /&amp;gt;The &amp;quot;&#039;&#039;&#039;XBMC Foundation&#039;&#039;&#039;&amp;quot; is the non-profit organization that oversees the [[Kodi|{{kodi}}]] project and is registered in the US.&amp;lt;section end=intro /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Members ==&lt;br /&gt;
Membership of the XBMC Foundation is typically taken from members of Team Kodi, but may include non Team members.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors ==&lt;br /&gt;
{| class=&amp;quot;infobox&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;section begin=Foundation members /&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;Keith Herrington (keith)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2016 - 11/2022&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Darren Hill (DarrenHill)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2018 - 11/2022&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;ronie (ronie)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2019 - 11/2023&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Yol (Yol)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2019 - 11/2023&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Da-Anda (Da-Anda)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2021 - 11/2023&#039;&#039;&amp;lt;section end=Foundation members /&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
The XBMC Board of Directors are Foundation members that manages the XBMC Foundation. The Board consists of five seats that are chosen by vote from the XBMC Foundation members. The Board&#039;s responsibilities include management of funds, publicity, and all business related issues (taxes, communication with other businesses, maintaining non-profit status etc.)&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Board of Directors meetings ==&lt;br /&gt;
The Board meets about once a month (in addition to any special meetings as required) to discuss any business that needs to be handled by the foundation.  Meetings are typically conducted via teleconference using a service such as Skype.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors elections ==&lt;br /&gt;
;Who can be an XBMC Board member?&lt;br /&gt;
:Any existing member of the foundation, as voted by the remaining members.&lt;br /&gt;
&lt;br /&gt;
;How long does a board member hold office?&lt;br /&gt;
:Terms last for two years. We endeavor to have a staggered cycle so that not all board members are turned over at a single election. There are no term restrictions, so Board members may even run for consecutive terms. However, in the interests of sharing the load, any and all members are encouraged to participate.&lt;br /&gt;
&lt;br /&gt;
;What is expected of an XBMC Board member?&lt;br /&gt;
:Board members are expected to attend all meetings or will otherwise be diligent in letting the other board members know if they won&#039;t be around.  Further, they&#039;ll be expected to make decisions (as a group) in the best interests of the foundation.  The Board accountable to the members, so should consider recommendations made by members during the decision making process, Though they ultimately must make the final decisions.  Any and all discussion should be frankly communicated to members within a reasonable time frame.&lt;br /&gt;
&lt;br /&gt;
;Who elects the officers (President, Secretary, Treasurer etc?)&lt;br /&gt;
:The board elects the officers.  In doing so, they may choose to take advice from the membership, but the decision is theirs.  The President must be from within the board itself, though Secretary, Treasurer, and any other officers the board wishes to appoint may be from outside the board (or outside the membership).&lt;br /&gt;
&lt;br /&gt;
=== Election process ===&lt;br /&gt;
&lt;br /&gt;
Board elections occur as follows:&lt;br /&gt;
# A member is nominated by the Board to oversee the election.&lt;br /&gt;
# Nominations for the open positions are taken from within the existing membership via email and/or via a forum thread.  This lasts a minimum of 10 days.&lt;br /&gt;
# Confirmed nominees are placed on the ballot.&lt;br /&gt;
# A vote of the membership is then taken using a trusted internet voting service using a ranking system. (usually via the Condorcet Internet Voting Service, http://www.cs.cornell.edu/w8/~andru/civs ) and the candidates with the highest ranks take office.  This lasts about two weeks.&lt;br /&gt;
#: &#039;&#039;In the event of a tie, it will be resolved with the existing board members discussing with the tied nominees. Tied nominees that do not go on the board may be nominated as officers of the Foundation, for example.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Previous elections ===&lt;br /&gt;
* [[/Elections/2021|2021]]&lt;br /&gt;
* [[/Elections/2020|2020]]&lt;br /&gt;
* [[/Elections/2019|2019]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2018|2018]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2017|2017]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2016|2016]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2014|2014]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2013|2013]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2012|2012]]&lt;br /&gt;
&lt;br /&gt;
== Foundation Bylaws and other important documents ==&lt;br /&gt;
* [[Media:ByLaws.pdf]]&lt;br /&gt;
* [[Media:Delaware Incorporation Notice.pdf]]&lt;br /&gt;
* [[Media:Delaware Notice Of Good Standing.pdf]]&lt;br /&gt;
* [[Media:KodiFoundationIncorporationNotice.pdf]]&lt;br /&gt;
* [[Media:Kodi_Foundation_exempt.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Trademarks ==&lt;br /&gt;
{{see|Official:Trademark Policy index}}&lt;br /&gt;
&lt;br /&gt;
== Financial information ==&lt;br /&gt;
&lt;br /&gt;
=== Financial status ===&lt;br /&gt;
&lt;br /&gt;
* Form 990 2016 - http://www.guidestar.org/FinDocuments/2016/474/565/2016-474565769-0e36f6e3-9.pdf &lt;br /&gt;
* Income and expenses 2015 - https://drive.google.com/file/d/0BwsEEPRqIzELOVpUa0p4endrRWc/view?usp=sharing&lt;br /&gt;
* Income and expenses 2014 - https://drive.google.com/file/d/0BwsEEPRqIzELVW9rMkpPUWZRSHM/view?usp=sharing&lt;br /&gt;
* Income and expenses 2013 - https://docs.google.com/spreadsheet/ccc?key=0AtlJ3dnHcw46dHpmeXlIV0hGaC13Z3I3b25hZWhWRGc#gid=8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;note&#039;&#039;: 2014 and 2015 expenses are US Foundation account only.&lt;br /&gt;
&lt;br /&gt;
=== Account details ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Unites States account&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Bank: Wells Fargo&lt;br /&gt;
* Beneficiary: Kodi Foundation&lt;br /&gt;
&lt;br /&gt;
== Legal representation ==&lt;br /&gt;
The XBMC Foundation is legally represented by the [[w:Software Freedom Law Center|SFLC (Software Freedom Law Center)]].&lt;br /&gt;
&lt;br /&gt;
In addition the XBMC Foundation is member of [[w:Open_Invention_Network|OIN (Open Invention Network)]] since 9 July 2010. OIN is a defensive patent pool and community of patent non-aggression which enables freedom of action in Linux.&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
For contact information, please see http://kodi.tv/about/contact/&lt;br /&gt;
&lt;br /&gt;
[[Category:XBMC_Foundation-Archived]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2021&amp;diff=238727</id>
		<title>Kodi Foundation/Elections/2021</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2021&amp;diff=238727"/>
		<updated>2021-11-11T18:38:32Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: /* Voting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[XBMC Foundation]] | [[XBMC Foundation/Elections|Elections]] }}&lt;br /&gt;
&lt;br /&gt;
==Pre-election==&lt;br /&gt;
DarrenHill was voting admin, as his seat was not up for re-election.&lt;br /&gt;
&lt;br /&gt;
==Nomination notice==&lt;br /&gt;
The following notice posted on the Team Kodi private forum, and linked to in an e-mail to all Foundation members, to give due notice about the election and to collect nominations. The Foundation bylaws state that at least ten days must be given for a notice about member decisions such as an election, which served as the nomination period.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Nominations for the XBMC Foundation Board Elections 2021&amp;quot;, as written by DarrenHill&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
It&#039;s already September, meaning it&#039;s time for the yearly [url=https://kodi.tv/about/xbmc-foundation]XBMC Foundation[/url] board elections again.&lt;br /&gt;
&lt;br /&gt;
Due to his actual work commitments, Learningit has requested to resign his seat on the board early. With regret, the board have accepted his request and so his seat is also up for nomination.&lt;br /&gt;
&lt;br /&gt;
This year board member seats up for election are: Yol, Ronie and Learningit.&lt;br /&gt;
Seats not up for election are Keith and DarrenHill (me)&lt;br /&gt;
&lt;br /&gt;
The rules are pretty simple:&lt;br /&gt;
&lt;br /&gt;
# Any team member can nominate, but the nominee must be a member of the Foundation*.&lt;br /&gt;
# You&#039;re allowed to nominate multiple people if you wish.&lt;br /&gt;
# The nominated member has the option to accept or decline their nomination.&lt;br /&gt;
# Only foundation members will be able to vote. *&lt;br /&gt;
# If a person has already been nominated, please don&#039;t nominate them again.&lt;br /&gt;
&lt;br /&gt;
Please make sure to keep your nominations simple and clear. Eg:&lt;br /&gt;
[quote]&lt;br /&gt;
Nominate: &amp;lt;member&amp;gt;&lt;br /&gt;
Motivation: I would like to nominate &amp;lt;member&amp;gt; for the XBMC Foundation Board because &amp;lt;motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
&lt;br /&gt;
In case you&#039;re nominated, please reply with something like..&lt;br /&gt;
[quote]&lt;br /&gt;
Thank you. I accept my nomination. &amp;lt;motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
or&lt;br /&gt;
[quote]&lt;br /&gt;
No, thanks. I decline my nomination. &amp;lt;Optional motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
&lt;br /&gt;
The second post in this thread wil be updated with a list of members and the nomination status on a regular basis,&lt;br /&gt;
so you don&#039;t have to crawl through all posts/pages to check.&lt;br /&gt;
&lt;br /&gt;
The nomination period is 1 month starting today and will end on October 16th.&lt;br /&gt;
Actual voting will begin after that and will be closed a couple of weeks later (if a vote is required) &lt;br /&gt;
Once the voting is over, the results will be announced in this thread as well as though a team email.&lt;br /&gt;
&lt;br /&gt;
The actual starting date for the new board seats will be in November, when we would like to have a joint online meeting with the old and new board members as a smooth hand-over and to welcome the new board members.&lt;br /&gt;
&lt;br /&gt;
* If you&#039;d like to vote in the election, you need to be accepted as a foundation member and affirm the by-laws of the foundation.&lt;br /&gt;
Details on applying to join the Foundation are at: https://forum.kodi.tv/showthread.php?tid=335025 (Click here to join the Foundation)&lt;br /&gt;
&lt;br /&gt;
A list of all foundation members can be found here: https://drive.google.com/open?id=1yy_gPbZPGeJUG5GDcZZScek7mEY-EdY0xY0UJaJRPHE (Foundation member list - only accessible to Google accounts logged in using your Kodi address).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Voting==&lt;br /&gt;
Voting started on Tuesday 1st September 2021 and ended on Saturday 6th November 2021 using the Condorcet Internet Voting Service with a ranking scale, https://civs.cs.cornell.edu/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Individual e-mail addresses from Foundation members were entered into the CIVS ballot and mailed each Foundation member with a unique voting key url. This also served as the notice for the start of the voting period.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A second notice was given out outside of the CVIS system in order to reduce the chance of someone accidentally not receiving a voting notice. Voting notices can be sent out again, but voting keys are generated based on e-mail addresses and thus prevent double voting.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following description was used for the ballot:&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Elections for the Kodi Foundation Board for 2021.&lt;br /&gt;
&lt;br /&gt;
We have 4 candidates for the 3 available seats, so please select your preference for who should take the seats.&lt;br /&gt;
&lt;br /&gt;
Voting is available to all Kodi Foundation members, and will end just before the team meeting on 6th November.&lt;br /&gt;
&lt;br /&gt;
The results will be announced during that meeting.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
;Final list of confirmed nominees:&lt;br /&gt;
* da-anda&lt;br /&gt;
* yol&lt;br /&gt;
* ronie&lt;br /&gt;
* phunkyfish&lt;br /&gt;
&lt;br /&gt;
==Results==&lt;br /&gt;
24 Foundation members voted. The top three ranked become board members effective November 2021. Da-anda, Ronie and yol were elected as board members.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Results page:&#039;&#039;&#039; https://civs1.civs.us/cgi-bin/results.pl?id=E_3a8f50794fc75de6&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;&#039;ronie&#039;&#039;&#039;  (Condorcet winner: wins contests with all other choices)&lt;br /&gt;
# &#039;&#039;&#039;yol&#039;&#039;&#039; &lt;br /&gt;
# &#039;&#039;&#039;da-anda&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2021&amp;diff=238726</id>
		<title>Kodi Foundation/Elections/2021</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2021&amp;diff=238726"/>
		<updated>2021-11-11T18:37:46Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[XBMC Foundation]] | [[XBMC Foundation/Elections|Elections]] }}&lt;br /&gt;
&lt;br /&gt;
==Pre-election==&lt;br /&gt;
DarrenHill was voting admin, as his seat was not up for re-election.&lt;br /&gt;
&lt;br /&gt;
==Nomination notice==&lt;br /&gt;
The following notice posted on the Team Kodi private forum, and linked to in an e-mail to all Foundation members, to give due notice about the election and to collect nominations. The Foundation bylaws state that at least ten days must be given for a notice about member decisions such as an election, which served as the nomination period.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Nominations for the XBMC Foundation Board Elections 2021&amp;quot;, as written by DarrenHill&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
It&#039;s already September, meaning it&#039;s time for the yearly [url=https://kodi.tv/about/xbmc-foundation]XBMC Foundation[/url] board elections again.&lt;br /&gt;
&lt;br /&gt;
Due to his actual work commitments, Learningit has requested to resign his seat on the board early. With regret, the board have accepted his request and so his seat is also up for nomination.&lt;br /&gt;
&lt;br /&gt;
This year board member seats up for election are: Yol, Ronie and Learningit.&lt;br /&gt;
Seats not up for election are Keith and DarrenHill (me)&lt;br /&gt;
&lt;br /&gt;
The rules are pretty simple:&lt;br /&gt;
&lt;br /&gt;
# Any team member can nominate, but the nominee must be a member of the Foundation*.&lt;br /&gt;
# You&#039;re allowed to nominate multiple people if you wish.&lt;br /&gt;
# The nominated member has the option to accept or decline their nomination.&lt;br /&gt;
# Only foundation members will be able to vote. *&lt;br /&gt;
# If a person has already been nominated, please don&#039;t nominate them again.&lt;br /&gt;
&lt;br /&gt;
Please make sure to keep your nominations simple and clear. Eg:&lt;br /&gt;
[quote]&lt;br /&gt;
Nominate: &amp;lt;member&amp;gt;&lt;br /&gt;
Motivation: I would like to nominate &amp;lt;member&amp;gt; for the XBMC Foundation Board because &amp;lt;motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
&lt;br /&gt;
In case you&#039;re nominated, please reply with something like..&lt;br /&gt;
[quote]&lt;br /&gt;
Thank you. I accept my nomination. &amp;lt;motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
or&lt;br /&gt;
[quote]&lt;br /&gt;
No, thanks. I decline my nomination. &amp;lt;Optional motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
&lt;br /&gt;
The second post in this thread wil be updated with a list of members and the nomination status on a regular basis,&lt;br /&gt;
so you don&#039;t have to crawl through all posts/pages to check.&lt;br /&gt;
&lt;br /&gt;
The nomination period is 1 month starting today and will end on October 16th.&lt;br /&gt;
Actual voting will begin after that and will be closed a couple of weeks later (if a vote is required) &lt;br /&gt;
Once the voting is over, the results will be announced in this thread as well as though a team email.&lt;br /&gt;
&lt;br /&gt;
The actual starting date for the new board seats will be in November, when we would like to have a joint online meeting with the old and new board members as a smooth hand-over and to welcome the new board members.&lt;br /&gt;
&lt;br /&gt;
* If you&#039;d like to vote in the election, you need to be accepted as a foundation member and affirm the by-laws of the foundation.&lt;br /&gt;
Details on applying to join the Foundation are at: https://forum.kodi.tv/showthread.php?tid=335025 (Click here to join the Foundation)&lt;br /&gt;
&lt;br /&gt;
A list of all foundation members can be found here: https://drive.google.com/open?id=1yy_gPbZPGeJUG5GDcZZScek7mEY-EdY0xY0UJaJRPHE (Foundation member list - only accessible to Google accounts logged in using your Kodi address).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Voting==&lt;br /&gt;
Voting started on Tuesday 1st September 2021 and ended on Saturday 6th November 2021 using the Condorcet Internet Voting Service with a ranking scale, https://civs.cs.cornell.edu/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Individual e-mail addresses from Foundation members were entered into the CIVS ballot and mailed each Foundation member with a unique voting key url. This also served as the notice for the start of the voting period.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A second notice was given out outside of the CVIS system in order to reduce the chance of someone accidentally not receiving a voting notice. Voting notices can be sent out again, but voting keys are generated based on e-mail addresses and thus prevent double voting.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following description was used for the ballot:&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Voting to fill the three board seats up for election this year.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
;Final list of confirmed nominees:&lt;br /&gt;
* da-anda&lt;br /&gt;
* yol&lt;br /&gt;
* ronie&lt;br /&gt;
* phunkyfish&lt;br /&gt;
&lt;br /&gt;
==Results==&lt;br /&gt;
24 Foundation members voted. The top three ranked become board members effective November 2021. Da-anda, Ronie and yol were elected as board members.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Results page:&#039;&#039;&#039; https://civs1.civs.us/cgi-bin/results.pl?id=E_3a8f50794fc75de6&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;&#039;ronie&#039;&#039;&#039;  (Condorcet winner: wins contests with all other choices)&lt;br /&gt;
# &#039;&#039;&#039;yol&#039;&#039;&#039; &lt;br /&gt;
# &#039;&#039;&#039;da-anda&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2021&amp;diff=238725</id>
		<title>Kodi Foundation/Elections/2021</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation/Elections/2021&amp;diff=238725"/>
		<updated>2021-11-11T18:35:55Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Board election 2021 process and results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[XBMC Foundation]] | [[XBMC Foundation/Elections|Elections]] }}&lt;br /&gt;
&lt;br /&gt;
==Pre-election==&lt;br /&gt;
DarrenHill was voting admin, as his seat was not up for re-election.&lt;br /&gt;
&lt;br /&gt;
==Nomination notice==&lt;br /&gt;
The following notice posted on the Team Kodi private forum, and linked to in an e-mail to all Foundation members, to give due notice about the election and to collect nominations. The Foundation bylaws state that at least ten days must be given for a notice about member decisions such as an election, which served as the nomination period.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;Nominations for the XBMC Foundation Board Elections 2021&amp;quot;, as written by DarrenHill&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
It&#039;s already September, meaning it&#039;s time for the yearly [url=https://kodi.tv/about/xbmc-foundation]XBMC Foundation[/url] board elections again.&lt;br /&gt;
&lt;br /&gt;
Due to his actual work commitments, Learningit has requested to resign his seat on the board early. With regret, the board have accepted his request and so his seat is also up for nomination.&lt;br /&gt;
&lt;br /&gt;
This year board member seats up for election are: Yol, Ronie and Learningit.&lt;br /&gt;
Seats not up for election are Keith and DarrenHill (me)&lt;br /&gt;
&lt;br /&gt;
The rules are pretty simple:&lt;br /&gt;
&lt;br /&gt;
1. Any team member can nominate, but the nominee must be a member of the Foundation*.&lt;br /&gt;
2. You&#039;re allowed to nominate multiple people if you wish.&lt;br /&gt;
3. The nominated member has the option to accept or decline their nomination.&lt;br /&gt;
4. Only foundation members will be able to vote. *&lt;br /&gt;
5. If a person has already been nominated, please don&#039;t nominate them again.&lt;br /&gt;
&lt;br /&gt;
Please make sure to keep your nominations simple and clear. Eg:&lt;br /&gt;
[quote]&lt;br /&gt;
Nominate: &amp;lt;member&amp;gt;&lt;br /&gt;
Motivation: I would like to nominate &amp;lt;member&amp;gt; for the XBMC Foundation Board because &amp;lt;motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
&lt;br /&gt;
In case you&#039;re nominated, please reply with something like..&lt;br /&gt;
[quote]&lt;br /&gt;
Thank you. I accept my nomination. &amp;lt;motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
or&lt;br /&gt;
[quote]&lt;br /&gt;
No, thanks. I decline my nomination. &amp;lt;Optional motivation&amp;gt;&lt;br /&gt;
[/quote]&lt;br /&gt;
&lt;br /&gt;
The second post in this thread wil be updated with a list of members and the nomination status on a regular basis,&lt;br /&gt;
so you don&#039;t have to crawl through all posts/pages to check.&lt;br /&gt;
&lt;br /&gt;
The nomination period is 1 month starting today and will end on October 16th.&lt;br /&gt;
Actual voting will begin after that and will be closed a couple of weeks later (if a vote is required) &lt;br /&gt;
Once the voting is over, the results will be announced in this thread as well as though a team email.&lt;br /&gt;
&lt;br /&gt;
The actual starting date for the new board seats will be in November, when we would like to have a joint online meeting with the old and new board members as a smooth hand-over and to welcome the new board members.&lt;br /&gt;
&lt;br /&gt;
* If you&#039;d like to vote in the election, you need to be accepted as a foundation member and affirm the by-laws of the foundation.&lt;br /&gt;
Details on applying to join the Foundation are at: [url=https://forum.kodi.tv/showthread.php?tid=335025]Click here to join the Foundation[/url]&lt;br /&gt;
&lt;br /&gt;
A list of all foundation members can be found here: [url=https://drive.google.com/open?id=1yy_gPbZPGeJUG5GDcZZScek7mEY-EdY0xY0UJaJRPHE]Foundation member list[/url] (only accessible to Google accounts logged in using your Kodi address).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Voting==&lt;br /&gt;
Voting started on Tuesday 1st September 2021 and ended on Saturday 6th November 2021 using the Condorcet Internet Voting Service with a ranking scale, https://civs.cs.cornell.edu/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Individual e-mail addresses from Foundation members were entered into the CIVS ballot and mailed each Foundation member with a unique voting key url. This also served as the notice for the start of the voting period.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A second notice was given out outside of the CVIS system in order to reduce the chance of someone accidentally not receiving a voting notice. Voting notices can be sent out again, but voting keys are generated based on e-mail addresses and thus prevent double voting.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following description was used for the ballot:&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Voting to fill the three board seats up for election this year.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
;Final list of confirmed nominees:&lt;br /&gt;
* da-anda&lt;br /&gt;
* yol&lt;br /&gt;
* ronie&lt;br /&gt;
* phunkyfish&lt;br /&gt;
&lt;br /&gt;
==Results==&lt;br /&gt;
24 Foundation members voted. The top three ranked become board members effective November 2021. Da-anda, Ronie and yol were elected as board members.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Results page:&#039;&#039;&#039; https://civs1.civs.us/cgi-bin/results.pl?id=E_3a8f50794fc75de6&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;&#039;ronie&#039;&#039;&#039;  (Condorcet winner: wins contests with all other choices)&lt;br /&gt;
# &#039;&#039;&#039;yol&#039;&#039;&#039; &lt;br /&gt;
# &#039;&#039;&#039;da-anda&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=238724</id>
		<title>Kodi Foundation</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=238724"/>
		<updated>2021-11-11T18:30:09Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Added da-anda&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav}}&lt;br /&gt;
&amp;lt;section begin=intro /&amp;gt;The &amp;quot;&#039;&#039;&#039;XBMC Foundation&#039;&#039;&#039;&amp;quot; is the non-profit organization that oversees the [[Kodi|{{kodi}}]] project and is registered in the US.&amp;lt;section end=intro /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Members ==&lt;br /&gt;
Membership of the XBMC Foundation is typically taken from members of Team Kodi, but may include non Team members.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors ==&lt;br /&gt;
{| class=&amp;quot;infobox&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;section begin=Foundation members /&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;Keith Herrington (keith)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2016 - 11/2022&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Darren Hill (DarrenHill)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2018 - 11/2022&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;ronie (ronie)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2019 - 11/2023&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Yol (Yol)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2019 - 11/2023&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Da-Anda (Da-Anda)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2021 - 11/2023&#039;&#039;&amp;lt;section end=Foundation members /&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
The XBMC Board of Directors are Foundation members that manages the XBMC Foundation. The Board consists of five seats that are chosen by vote from the XBMC Foundation members. The Board&#039;s responsibilities include management of funds, publicity, and all business related issues (taxes, communication with other businesses, maintaining non-profit status etc.)&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Board of Directors meetings ==&lt;br /&gt;
The Board meets about once a month (in addition to any special meetings as required) to discuss any business that needs to be handled by the foundation.  Meetings are typically conducted via teleconference using a service such as Skype.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors elections ==&lt;br /&gt;
;Who can be an XBMC Board member?&lt;br /&gt;
:Any existing member of the foundation, as voted by the remaining members.&lt;br /&gt;
&lt;br /&gt;
;How long does a board member hold office?&lt;br /&gt;
:Terms last for two years. We endeavor to have a staggered cycle so that not all board members are turned over at a single election. There are no term restrictions, so Board members may even run for consecutive terms. However, in the interests of sharing the load, any and all members are encouraged to participate.&lt;br /&gt;
&lt;br /&gt;
;What is expected of an XBMC Board member?&lt;br /&gt;
:Board members are expected to attend all meetings or will otherwise be diligent in letting the other board members know if they won&#039;t be around.  Further, they&#039;ll be expected to make decisions (as a group) in the best interests of the foundation.  The Board accountable to the members, so should consider recommendations made by members during the decision making process, Though they ultimately must make the final decisions.  Any and all discussion should be frankly communicated to members within a reasonable time frame.&lt;br /&gt;
&lt;br /&gt;
;Who elects the officers (President, Secretary, Treasurer etc?)&lt;br /&gt;
:The board elects the officers.  In doing so, they may choose to take advice from the membership, but the decision is theirs.  The President must be from within the board itself, though Secretary, Treasurer, and any other officers the board wishes to appoint may be from outside the board (or outside the membership).&lt;br /&gt;
&lt;br /&gt;
=== Election process ===&lt;br /&gt;
&lt;br /&gt;
Board elections occur as follows:&lt;br /&gt;
# A member is nominated by the Board to oversee the election.&lt;br /&gt;
# Nominations for the open positions are taken from within the existing membership via email and/or via a forum thread.  This lasts a minimum of 10 days.&lt;br /&gt;
# Confirmed nominees are placed on the ballot.&lt;br /&gt;
# A vote of the membership is then taken using a trusted internet voting service using a ranking system. (usually via the Condorcet Internet Voting Service, http://www.cs.cornell.edu/w8/~andru/civs ) and the candidates with the highest ranks take office.  This lasts about two weeks.&lt;br /&gt;
#: &#039;&#039;In the event of a tie, it will be resolved with the existing board members discussing with the tied nominees. Tied nominees that do not go on the board may be nominated as officers of the Foundation, for example.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Previous elections ===&lt;br /&gt;
* [[/Elections/2020|2020]]&lt;br /&gt;
* [[/Elections/2019|2019]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2018|2018]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2017|2017]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2016|2016]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2014|2014]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2013|2013]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2012|2012]]&lt;br /&gt;
&lt;br /&gt;
== Foundation Bylaws and other important documents ==&lt;br /&gt;
* [[Media:ByLaws.pdf]]&lt;br /&gt;
* [[Media:Delaware Incorporation Notice.pdf]]&lt;br /&gt;
* [[Media:Delaware Notice Of Good Standing.pdf]]&lt;br /&gt;
* [[Media:KodiFoundationIncorporationNotice.pdf]]&lt;br /&gt;
* [[Media:Kodi_Foundation_exempt.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Trademarks ==&lt;br /&gt;
{{see|Official:Trademark Policy index}}&lt;br /&gt;
&lt;br /&gt;
== Financial information ==&lt;br /&gt;
&lt;br /&gt;
=== Financial status ===&lt;br /&gt;
&lt;br /&gt;
* Form 990 2016 - http://www.guidestar.org/FinDocuments/2016/474/565/2016-474565769-0e36f6e3-9.pdf &lt;br /&gt;
* Income and expenses 2015 - https://drive.google.com/file/d/0BwsEEPRqIzELOVpUa0p4endrRWc/view?usp=sharing&lt;br /&gt;
* Income and expenses 2014 - https://drive.google.com/file/d/0BwsEEPRqIzELVW9rMkpPUWZRSHM/view?usp=sharing&lt;br /&gt;
* Income and expenses 2013 - https://docs.google.com/spreadsheet/ccc?key=0AtlJ3dnHcw46dHpmeXlIV0hGaC13Z3I3b25hZWhWRGc#gid=8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;note&#039;&#039;: 2014 and 2015 expenses are US Foundation account only.&lt;br /&gt;
&lt;br /&gt;
=== Account details ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Unites States account&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Bank: Wells Fargo&lt;br /&gt;
* Beneficiary: Kodi Foundation&lt;br /&gt;
&lt;br /&gt;
== Legal representation ==&lt;br /&gt;
The XBMC Foundation is legally represented by the [[w:Software Freedom Law Center|SFLC (Software Freedom Law Center)]].&lt;br /&gt;
&lt;br /&gt;
In addition the XBMC Foundation is member of [[w:Open_Invention_Network|OIN (Open Invention Network)]] since 9 July 2010. OIN is a defensive patent pool and community of patent non-aggression which enables freedom of action in Linux.&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
For contact information, please see http://kodi.tv/about/contact/&lt;br /&gt;
&lt;br /&gt;
[[Category:XBMC_Foundation-Archived]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=235819</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=235819"/>
		<updated>2021-10-16T08:29:30Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Muted phoenix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* Merlin &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* &amp;lt;Phoenix Reborn&amp;gt; &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* Jio&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Merlin&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* &amp;lt;Phoenix&amp;gt; &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=235217</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=235217"/>
		<updated>2021-10-03T08:33:22Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Removed Falcon, as it&amp;#039;s false-positives and without any actual script entries&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* Merlin &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* Phoenix Reborn &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* Jio&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Merlin&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* Phoenix &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=235036</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=235036"/>
		<updated>2021-10-02T20:09:21Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Muted falcon&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* Merlin &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* Phoenix Reborn &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* Falcon Project&lt;br /&gt;
* Falcon Ultra&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* Jio&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Merlin&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* Phoenix &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=234136</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=234136"/>
		<updated>2021-09-23T08:04:10Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* Merlin &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* Phoenix Reborn &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* Falcon&lt;br /&gt;
* Falcon Project&lt;br /&gt;
* Falcon Ultra&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* Jio&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Merlin&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* Phoenix &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=234130</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=234130"/>
		<updated>2021-09-21T19:39:40Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* Sports 101&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* Merlin &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* Phoenix Reborn &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* Slam &amp;lt;!-- ID: repository.slam19 --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* Falcon&lt;br /&gt;
* Falcon Project&lt;br /&gt;
* Falcon Ultra&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* Jio&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Merlin&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* Phoenix &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* Venom &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=234129</id>
		<title>Kodi Foundation</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Kodi_Foundation&amp;diff=234129"/>
		<updated>2021-09-21T19:21:51Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Remove Learningit due to his resignation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav}}&lt;br /&gt;
&amp;lt;section begin=intro /&amp;gt;The &amp;quot;&#039;&#039;&#039;XBMC Foundation&#039;&#039;&#039;&amp;quot; is the non-profit organization that oversees the [[Kodi|{{kodi}}]] project and is registered in the US.&amp;lt;section end=intro /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Members ==&lt;br /&gt;
Membership of the XBMC Foundation is typically taken from members of Team Kodi, but may include non Team members.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors ==&lt;br /&gt;
{| class=&amp;quot;infobox&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;section begin=Foundation members /&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;Keith Herrington (keith)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2016 - 11/2022&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Darren Hill (DarrenHill)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2018 - 11/2022&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;ronie (ronie)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2019 - 11/2021&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Yol (Yol)&#039;&#039;&#039; - Board member - &#039;&#039;Term: 11/2019 - 11/2021&#039;&#039;&amp;lt;section end=Foundation members /&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
The XBMC Board of Directors are Foundation members that manages the XBMC Foundation. The Board consists of five seats that are chosen by vote from the XBMC Foundation members. The Board&#039;s responsibilities include management of funds, publicity, and all business related issues (taxes, communication with other businesses, maintaining non-profit status etc.)&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Board of Directors meetings ==&lt;br /&gt;
The Board meets about once a month (in addition to any special meetings as required) to discuss any business that needs to be handled by the foundation.  Meetings are typically conducted via teleconference using a service such as Skype.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors elections ==&lt;br /&gt;
;Who can be an XBMC Board member?&lt;br /&gt;
:Any existing member of the foundation, as voted by the remaining members.&lt;br /&gt;
&lt;br /&gt;
;How long does a board member hold office?&lt;br /&gt;
:Terms last for two years. We endeavor to have a staggered cycle so that not all board members are turned over at a single election. There are no term restrictions, so Board members may even run for consecutive terms. However, in the interests of sharing the load, any and all members are encouraged to participate.&lt;br /&gt;
&lt;br /&gt;
;What is expected of an XBMC Board member?&lt;br /&gt;
:Board members are expected to attend all meetings or will otherwise be diligent in letting the other board members know if they won&#039;t be around.  Further, they&#039;ll be expected to make decisions (as a group) in the best interests of the foundation.  The Board accountable to the members, so should consider recommendations made by members during the decision making process, Though they ultimately must make the final decisions.  Any and all discussion should be frankly communicated to members within a reasonable time frame.&lt;br /&gt;
&lt;br /&gt;
;Who elects the officers (President, Secretary, Treasurer etc?)&lt;br /&gt;
:The board elects the officers.  In doing so, they may choose to take advice from the membership, but the decision is theirs.  The President must be from within the board itself, though Secretary, Treasurer, and any other officers the board wishes to appoint may be from outside the board (or outside the membership).&lt;br /&gt;
&lt;br /&gt;
=== Election process ===&lt;br /&gt;
&lt;br /&gt;
Board elections occur as follows:&lt;br /&gt;
# A member is nominated by the Board to oversee the election.&lt;br /&gt;
# Nominations for the open positions are taken from within the existing membership via email and/or via a forum thread.  This lasts a minimum of 10 days.&lt;br /&gt;
# Confirmed nominees are placed on the ballot.&lt;br /&gt;
# A vote of the membership is then taken using a trusted internet voting service using a ranking system. (usually via the Condorcet Internet Voting Service, http://www.cs.cornell.edu/w8/~andru/civs ) and the candidates with the highest ranks take office.  This lasts about two weeks.&lt;br /&gt;
#: &#039;&#039;In the event of a tie, it will be resolved with the existing board members discussing with the tied nominees. Tied nominees that do not go on the board may be nominated as officers of the Foundation, for example.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Previous elections ===&lt;br /&gt;
* [[/Elections/2020|2020]]&lt;br /&gt;
* [[/Elections/2019|2019]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2018|2018]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2017|2017]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2016|2016]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2014|2014]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2013|2013]]&lt;br /&gt;
* [[Archive:XBMC_Foundation/Elections/2012|2012]]&lt;br /&gt;
&lt;br /&gt;
== Foundation Bylaws and other important documents ==&lt;br /&gt;
* [[Media:ByLaws.pdf]]&lt;br /&gt;
* [[Media:Delaware Incorporation Notice.pdf]]&lt;br /&gt;
* [[Media:Delaware Notice Of Good Standing.pdf]]&lt;br /&gt;
* [[Media:KodiFoundationIncorporationNotice.pdf]]&lt;br /&gt;
* [[Media:Kodi_Foundation_exempt.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Trademarks ==&lt;br /&gt;
{{see|Official:Trademark Policy index}}&lt;br /&gt;
&lt;br /&gt;
== Financial information ==&lt;br /&gt;
&lt;br /&gt;
=== Financial status ===&lt;br /&gt;
&lt;br /&gt;
* Form 990 2016 - http://www.guidestar.org/FinDocuments/2016/474/565/2016-474565769-0e36f6e3-9.pdf &lt;br /&gt;
* Income and expenses 2015 - https://drive.google.com/file/d/0BwsEEPRqIzELOVpUa0p4endrRWc/view?usp=sharing&lt;br /&gt;
* Income and expenses 2014 - https://drive.google.com/file/d/0BwsEEPRqIzELVW9rMkpPUWZRSHM/view?usp=sharing&lt;br /&gt;
* Income and expenses 2013 - https://docs.google.com/spreadsheet/ccc?key=0AtlJ3dnHcw46dHpmeXlIV0hGaC13Z3I3b25hZWhWRGc#gid=8&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;note&#039;&#039;: 2014 and 2015 expenses are US Foundation account only.&lt;br /&gt;
&lt;br /&gt;
=== Account details ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Unites States account&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Bank: Wells Fargo&lt;br /&gt;
* Beneficiary: Kodi Foundation&lt;br /&gt;
&lt;br /&gt;
== Legal representation ==&lt;br /&gt;
The XBMC Foundation is legally represented by the [[w:Software Freedom Law Center|SFLC (Software Freedom Law Center)]].&lt;br /&gt;
&lt;br /&gt;
In addition the XBMC Foundation is member of [[w:Open_Invention_Network|OIN (Open Invention Network)]] since 9 July 2010. OIN is a defensive patent pool and community of patent non-aggression which enables freedom of action in Linux.&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
For contact information, please see http://kodi.tv/about/contact/&lt;br /&gt;
&lt;br /&gt;
[[Category:XBMC_Foundation-Archived]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=234128</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=234128"/>
		<updated>2021-09-21T11:13:48Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Muted venom&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious&lt;br /&gt;
* Sports 101&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* Merlin &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* Phoenix Reborn &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* &amp;lt;Venom&amp;gt; &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* Falcon&lt;br /&gt;
* Falcon Project&lt;br /&gt;
* Falcon Ultra&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* Jio&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Merlin&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* Phoenix &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* Venom &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=234127</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=234127"/>
		<updated>2021-09-21T08:20:36Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Muted diamond&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious&lt;br /&gt;
* Sports 101&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* &amp;lt;Diamond&amp;gt; &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.diamond-wizard-repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* Merlin &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* Phoenix Reborn &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* Venom &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* Falcon&lt;br /&gt;
* Falcon Project&lt;br /&gt;
* Falcon Ultra&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* Jio&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Merlin&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* Phoenix &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* Venom &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=233241</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=233241"/>
		<updated>2021-09-07T14:14:26Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: Muted magnetic&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* &amp;lt;Magnetic&amp;gt; &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious&lt;br /&gt;
* Sports 101&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* Diamond &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamond wizard &amp;lt;!-- ID: repository.diamond-wizard-repo --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* Merlin &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* Phoenix Reborn &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* Venom &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* Falcon&lt;br /&gt;
* Falcon Project&lt;br /&gt;
* Falcon Ultra&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* Jio&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Merlin&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Navy Seal&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* Phoenix &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* Venom &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=233199</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=233199"/>
		<updated>2021-08-30T11:12:31Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* Doomzday&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious&lt;br /&gt;
* Sports 101&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* Diamond &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamond wizard &amp;lt;!-- ID: repository.diamond-wizard-repo --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* Merlin &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* Phoenix Reborn &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* Venom &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* EzzerMan &amp;lt;!-- ID: plugin.program.EzzerMan19 --&amp;gt;&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* Falcon&lt;br /&gt;
* Falcon Project&lt;br /&gt;
* Falcon Ultra&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* Jio&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Merlin&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: script.module.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* Phoenix &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* Tiki &amp;lt;!-- ID: script.tikiart|script.tikiskins --&amp;gt;&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* Venom &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=232829</id>
		<title>Official:Forum rules/Banned add-ons</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Official:Forum_rules/Banned_add-ons&amp;diff=232829"/>
		<updated>2021-08-11T18:41:31Z</updated>

		<summary type="html">&lt;p&gt;DarrenHill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav| [[Official:Forum rules]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is an example list of repositories and add-ons that have been identified as violating the {{kodi}} &#039;&#039;&#039;[[Official:Forum rules]]&#039;&#039;&#039;. This means they have been banned from any official {{kodi}} forums, websites, IRC channels and any social media accounts that are under the control of Team Kodi or the [[XBMC Foundation]]. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;{{big|{{red|This list is only an example. Due to the dynamic nature of Piracy streams and the add-ons that access them, it is impossible to list all Builds/Repositories/Add-ons that violate the [[Official:Forum_rules#Piracy_Policy|forum rules]]}}}}&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
While Team Kodi does not regulate what users install or use, we offer no support when your install includes add-ons that violate the forum rules. Failure to do so may result in a ban.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How do I tell if something is allowed or not==&lt;br /&gt;
{{collapse top|click &amp;quot;Expand&amp;quot; to view the rules on piracy/bootleg video content --&amp;gt;}}&lt;br /&gt;
{{main|Official:Forum rules}}&lt;br /&gt;
{{#lst:Official:Forum rules|piracy policy}}&lt;br /&gt;
{{collapse bottom}}&lt;br /&gt;
&lt;br /&gt;
The basic rule of thumb for what is not allowed, is that if the Add-on is offering something for free that you would normally expect to pay for by any other means, then it&#039;ll most likely be using pirate feeds. &lt;br /&gt;
&lt;br /&gt;
If the Add-on simply allows access to web feeds from the rights holders then discussion of these is normally allowed, in this case there generally will be a website equivalent of the service, for example Youtube, BBC iPlayer, Netflix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note -&#039;&#039;&#039; If the Add-on is from our Official Add-on Repo then it has already been checked that it doesn&#039;t break our rules, therefore anything contained in the Official Repo is safe to discuss in any of our websites/channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kodi Forks ==&lt;br /&gt;
* Nodi&lt;br /&gt;
* QODI&lt;br /&gt;
* Streamsmart&lt;br /&gt;
* TVMC&lt;br /&gt;
&lt;br /&gt;
== Wizards ==&lt;br /&gt;
All Wizards and addon installers&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Builds ==&lt;br /&gt;
Any build featuring or offering one or more of the repositories or add-ons listed below&lt;br /&gt;
* &amp;lt;4k Colors&amp;gt;&lt;br /&gt;
* alluneed&lt;br /&gt;
* Apollo&lt;br /&gt;
* Buildstube&lt;br /&gt;
* Buildstuben&lt;br /&gt;
* Breezz&lt;br /&gt;
* &amp;lt;Bucks&amp;gt;&lt;br /&gt;
* EzzerMac&lt;br /&gt;
* FTMC TTM&lt;br /&gt;
* FMC&lt;br /&gt;
* Grindhouse&lt;br /&gt;
* Kodianer&lt;br /&gt;
* Magic Dragon&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.Magnetic --&amp;gt;&lt;br /&gt;
* NarcacistWizard &amp;lt;!-- ID: repository.NarcacistWizard --&amp;gt;&lt;br /&gt;
* One Nation&lt;br /&gt;
* Redbox&lt;br /&gt;
* Skydarks&lt;br /&gt;
* SkyMashi TV&lt;br /&gt;
* Slamious&lt;br /&gt;
* Supreme build &amp;lt;!-- ID: repository.supremebuilds --&amp;gt;&lt;br /&gt;
* The Crew&lt;br /&gt;
* Twistednutz&lt;br /&gt;
* Xanax&lt;br /&gt;
* Xenon&lt;br /&gt;
* Xtasy&lt;br /&gt;
&lt;br /&gt;
== Repository blacklist ==&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: repository.13clowns|repository.13clownsBETA --&amp;gt;&lt;br /&gt;
* Absolut &amp;lt;!-- ID: repository.Absolut.Kodi --&amp;gt;&lt;br /&gt;
* Adjaranet&lt;br /&gt;
* Adryan Lists &amp;lt;!-- ID: repository.adryan --&amp;gt;&lt;br /&gt;
* Aenemapy &amp;lt;!-- ID: repository.aenemapy --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: repository.aftershock --&amp;gt;&lt;br /&gt;
* &amp;lt;Agent&amp;gt; &amp;lt;!-- ID: repository.Agent --&amp;gt;&lt;br /&gt;
* &amp;lt;AH&amp;gt; &amp;lt;!-- ID: repository.ah --&amp;gt;&lt;br /&gt;
* AJ Builds &amp;lt;!-- ID: repository.aj-addons|repository.aj --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: repository.alfa-addon --&amp;gt;&lt;br /&gt;
* Aliunde &amp;lt;!-- ID: repository.aliunde --&amp;gt;&lt;br /&gt;
* AllEyezOnMe &amp;lt;!-- ID: repository.alleyezonme --&amp;gt;&lt;br /&gt;
* Androidbboy &amp;lt;!-- ID: repository.androidbboy --&amp;gt;&lt;br /&gt;
* Apollo &amp;lt;!-- ID: repository.apollo|program.apollo --&amp;gt;&lt;br /&gt;
* Ares &amp;lt;!-- ID: repository.aresproject --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: repository.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: repository.AtomReborn --&amp;gt;&lt;br /&gt;
* &amp;lt;Awesome&amp;gt; &amp;lt;!-- ID: repository.awesome --&amp;gt;&lt;br /&gt;
* Balandro &amp;lt;!-- ID: repository.balandro --&amp;gt;&lt;br /&gt;
* Bamf &amp;lt;!-- ID: repository.Bamf --&amp;gt;&lt;br /&gt;
* Beau B &amp;lt;!-- ID: repository.Beaubrepo --&amp;gt;&lt;br /&gt;
* BC Repo &amp;lt;!-- ID: repository.bandicoot --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: repository.blamo --&amp;gt;&lt;br /&gt;
* &amp;lt;Blaze&amp;gt; &amp;lt;!-- ID: repository.BlazeRepo --&amp;gt;&lt;br /&gt;
* BlissTV &amp;lt;!-- ID: repository.blisstv --&amp;gt;&lt;br /&gt;
* Brettus &amp;lt;!-- ID: repository.Brettusrepo|repository.brettus.repo --&amp;gt;&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: repository.bubbles|repository.bubbles.1 --&amp;gt;&lt;br /&gt;
* Bugatsinho &amp;lt;!-- ID: repository.bugatsinho --&amp;gt;&lt;br /&gt;
* Bulldog Streams &amp;lt;!-- ID: repository.bulldogstreams --&amp;gt;&lt;br /&gt;
* Bookmark Lite &amp;lt;!-- ID: repository.bookmarklite|repository.bookmark --&amp;gt;&lt;br /&gt;
* Canal Nereo &amp;lt;!-- ID: repository.CanalNereo --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: repository.canvas --&amp;gt;&lt;br /&gt;
* Carnamaleon &amp;lt;!-- repository.carnamaleon --&amp;gt;&lt;br /&gt;
* Catoal &amp;lt;!-- ID: repository.catoal --&amp;gt;&lt;br /&gt;
* Cazlo &amp;lt;!-- ID: repository.cazlo --&amp;gt;&lt;br /&gt;
* Cellar Door TV &amp;lt;!-- ID: repository.cellardoortv|repository.cdrepo --&amp;gt;&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: repository.cerebro --&amp;gt;&lt;br /&gt;
* Colossus &amp;lt;!-- ID: repository.colossus|repository.colossus.common --&amp;gt;&lt;br /&gt;
* Cosmic Saints &amp;lt;!-- ID: repository.csaints --&amp;gt;&lt;br /&gt;
* Cyberflix&lt;br /&gt;
* Cyphers Locker &amp;lt;!-- ID: repository.Cypherslocker --&amp;gt;&lt;br /&gt;
* Dandy Media &amp;lt;!-- ID: repository.dandy.kodi|repository.dandymedia --&amp;gt;&lt;br /&gt;
* Dark Media &amp;lt;!-- ID: repository.darkmedia --&amp;gt;&lt;br /&gt;
* Decosub &amp;lt;!-- ID: repository.decosub --&amp;gt;&lt;br /&gt;
* DejaVu &amp;lt;!-- ID: repository.dejavu|repository.DejaVu --&amp;gt;&lt;br /&gt;
* Deliverance &amp;lt;!-- ID: repository.Deliverance --&amp;gt;&lt;br /&gt;
* Diablo &amp;lt;!-- ID: repository.Diablo --&amp;gt;&lt;br /&gt;
* Diamond &amp;lt;!-- ID: repo.rubyjewelwizard|repository.Diamond-Wizard-Repo|repository.Diamond-Back-End|repository.Diamond-Addons-and-Repo-Installer|plugin.program.diamondwizard  --&amp;gt;&lt;br /&gt;
* Diamond wizard &amp;lt;!-- ID: repository.diamond-wizard-repo --&amp;gt;&lt;br /&gt;
* Diamondback &amp;lt;!-- ID: repository.diamondback --&amp;gt;&lt;br /&gt;
* Diggz &amp;lt;!-- ID: repository.diggz --&amp;gt;&lt;br /&gt;
* Dimitrology &amp;lt;!-- ID: repository.dimitrology --&amp;gt;&lt;br /&gt;
* Dobbelina &amp;lt;!-- ID: repository.dobbelina --&amp;gt;&lt;br /&gt;
* Docshadrach &amp;lt;!-- ID: repository.docshadrach --&amp;gt;&lt;br /&gt;
* Duckpool &amp;lt;!-- ID: repository.duckpool --&amp;gt;&lt;br /&gt;
* Dudehere &amp;lt;!-- ID: repository.dudehere.plugins|repository.dudehere --&amp;gt;&lt;br /&gt;
* Durex &amp;lt;!-- ID: repository.drxrepopub|repository.drxrepopub2  --&amp;gt;&lt;br /&gt;
* Eggman (Overeasy) &amp;lt;!-- ID: repository.eggman|repository.fanfilm --&amp;gt;&lt;br /&gt;
* Eleazar &amp;lt;!-- ID: repository.eleazar --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: repository.elementum --&amp;gt;&lt;br /&gt;
* Elysium &amp;lt;!-- ID: repository.elysium --&amp;gt;&lt;br /&gt;
* EntertainmentRepo &amp;lt;!-- ID: repository.entertainmentrepobackup|repository.entertainmentrepo --&amp;gt;&lt;br /&gt;
* Exodus &amp;lt;!-- ID: repository.exodus --&amp;gt;&lt;br /&gt;
* Exodus Redux &amp;lt;!-- ID: repository.exodusredux  --&amp;gt;&lt;br /&gt;
* EzzerMacs &amp;lt;!-- ID: repository.EzzerMacsWizard --&amp;gt;&lt;br /&gt;
* FanFilms &amp;lt;!-- ID: repository.fanfilm --&amp;gt;&lt;br /&gt;
* &amp;lt;Flawless&amp;gt; &amp;lt;!-- ID: repository.flawless --&amp;gt;&lt;br /&gt;
* Fido &amp;lt;!-- ID: repository.Fido --&amp;gt;&lt;br /&gt;
* Fierce Gorilla &amp;lt;!-- ID: repository.fiercegorilla --&amp;gt;&lt;br /&gt;
* FilmKodi &amp;lt;!-- ID: repository.filmkodi.com --&amp;gt;&lt;br /&gt;
* FireTVGuru &amp;lt;!-- ID: repository.firetvguru --&amp;gt;&lt;br /&gt;
* FireStick Plusman &amp;lt;!-- ID: repository.Firestickplusman --&amp;gt;&lt;br /&gt;
* Flecha Nega &amp;lt;!-- ID: repository.flechanegra --&amp;gt;&lt;br /&gt;
* Foxystreams &amp;lt;!-- ID: repository.foxystreams --&amp;gt;&lt;br /&gt;
* Fractured &amp;lt;!-- ID: repository.fractured --&amp;gt;&lt;br /&gt;
* FracturedWizard &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* Fusion &amp;lt;!-- ID: repository.fusion --&amp;gt;&lt;br /&gt;
* Gaia &amp;lt;!-- ID: repository.gaia|plugin.video.gaia|script.gaia.resources|script.gaia.artwork --&amp;gt;&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt; &amp;lt;!-- ID: repository.Galaxy --&amp;gt;&lt;br /&gt;
* GenTec &amp;lt;!-- ID: repository.GenTec --&amp;gt;&lt;br /&gt;
* GenieTV &amp;lt;!-- ID: repository.GenieTv --&amp;gt;&lt;br /&gt;
* Ghost IPTV &amp;lt;!-- ID: repository.Ghost --&amp;gt;&lt;br /&gt;
* Goodfellas &amp;lt;!-- ID: repository.goodfellas|repository.gfservers --&amp;gt;&lt;br /&gt;
* GB160 &amp;lt;!-- ID: repository.gb160.kodi|repository.gb160-kodi-addons --&amp;gt;&lt;br /&gt;
* Goliath &amp;lt;!-- ID: repository.Goliath --&amp;gt;&lt;br /&gt;
* Griffin &amp;lt;!-- ID: griffin --&amp;gt;&lt;br /&gt;
* Grindhouse &amp;lt;!-- ID: repository.grindhousekodi --&amp;gt;&lt;br /&gt;
* HalowTV &amp;lt;!-- ID: repository.HalowTV --&amp;gt;&lt;br /&gt;
* Hellhounds &amp;lt;!-- ID: repository.hellhounds --&amp;gt;&lt;br /&gt;
* Hiraya &amp;lt;!-- ID: repository.hirayasoftware --&amp;gt;&lt;br /&gt;
* Host 505 &amp;lt;!-- ID: repository.host505 --&amp;gt;&lt;br /&gt;
* House of el &amp;lt;!-- ID: repository.houseofel --&amp;gt;&lt;br /&gt;
* Humla&lt;br /&gt;
* Iceballs &amp;lt;!-- ID: repository.iceballs --&amp;gt;&lt;br /&gt;
* Illuminati &amp;lt;!-- ID: repository.illuminati --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: incursion.repository --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: repository.InfiniFlix --&amp;gt;&lt;br /&gt;
* Jewrepo &amp;lt;!-- ID: repository.jewrepo|repository.jewbackD --&amp;gt;&lt;br /&gt;
* J1nx &lt;br /&gt;
* Jesus box tv &amp;lt;!-- ID: repository.jesusboxtv --&amp;gt;&lt;br /&gt;
* Jsergio &amp;lt;!-- repository.jsergio --&amp;gt;&lt;br /&gt;
* Juggernaut &amp;lt;!-- ID: repository.juggernaut --&amp;gt;&lt;br /&gt;
* K3l3vra &amp;lt;!-- ID: repository.k3l3vra --&amp;gt;&lt;br /&gt;
* Kaosbox2 &amp;lt;!-- ID: repository.kaosbox2 --&amp;gt;&lt;br /&gt;
* &amp;lt;kb&amp;gt; &amp;lt;!-- ID: repository.kb --&amp;gt;&lt;br /&gt;
* Kdil&lt;br /&gt;
* Kinkin &amp;lt;!-- ID: repository.Kinkin --&amp;gt;&lt;br /&gt;
* Kirks Build&lt;br /&gt;
* KNE &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kod1&lt;br /&gt;
* Kodi Addons Club&lt;br /&gt;
* Kodi Balkan &amp;lt;!-- ID:repository.kodibalkan --&amp;gt;&lt;br /&gt;
* Kodibae &amp;lt;!-- ID: repository.kodibae --&amp;gt;&lt;br /&gt;
* Kodi-CZSK &amp;lt;!-- ID: repository.kodi-czsk --&amp;gt;&lt;br /&gt;
* Kodi Ghost &amp;lt;!-- ID: repository.kodi_ghost --&amp;gt;&lt;br /&gt;
* Kodi Israel &amp;lt;!-- ID: repository.kodil --&amp;gt;for&lt;br /&gt;
* Kodil &amp;lt;!-- ID: repository.kodil|repository.ukodil|repository.ukodi1 --&amp;gt;&lt;br /&gt;
* Kodi Neu Erleben &amp;lt;!-- ID: repository.KNE --&amp;gt;&lt;br /&gt;
* Kodi Rae &amp;lt;!-- ID: repository.kodirae --&amp;gt;&lt;br /&gt;
* Kodi Tips &amp;lt;!-- ID: repository.koditips --&amp;gt;&lt;br /&gt;
* KoDIYhelp &amp;lt;!-- ID: repository.kodiyhelp --&amp;gt;&lt;br /&gt;
* Kodi UKTV &amp;lt;!-- ID: repository.kodiuktv --&amp;gt;&lt;br /&gt;
* Kodiwpigulce &amp;lt;!-- ID:repository.kodiwpigulce.pl --&amp;gt;&lt;br /&gt;
* Krogsbell IPTV&lt;br /&gt;
* K.U.S. &amp;lt;!-- ID: repository.kus.allinone --&amp;gt;&lt;br /&gt;
* LastShip &amp;lt;!-- ID: repository.lastship --&amp;gt;&lt;br /&gt;
* Lazarus &amp;lt;!-- ID: repository.lazarus --&amp;gt;&lt;br /&gt;
* &amp;lt;Lambda&amp;gt; &amp;lt;!-- ID: repository.lambda --&amp;gt;&lt;br /&gt;
* Lazy Kodi&lt;br /&gt;
* Legion &amp;lt;!-- ID: repository.Legion|repository.Legion.N.Unhinged --&amp;gt;&lt;br /&gt;
* Leviathan &amp;lt;!-- ID: repository.FalconRepo --&amp;gt;&lt;br /&gt;
* &amp;lt;Lockdown&amp;gt; &amp;lt;!-- ID: repository.lockdown --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: repository.Loki --&amp;gt;&lt;br /&gt;
* Looking Glass &amp;lt;!-- ID: repository.lookingglass --&amp;gt;&lt;br /&gt;
* &amp;lt;Loop&amp;gt; &amp;lt;!-- ID: repository.loop ?&amp;gt;&lt;br /&gt;
* Man Cave &amp;lt;!-- ID: repository.mancave --&amp;gt;&lt;br /&gt;
* Maestro &amp;lt;!-- ID: repository.maestro --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: repository.magicality --&amp;gt;&lt;br /&gt;
* Magnetic &amp;lt;!-- ID: repository.magnetic|repository.Magnetic --&amp;gt;&lt;br /&gt;
* Maniac &amp;lt;!-- ID: repository.Maniac --&amp;gt;&lt;br /&gt;
* Markop159 &amp;lt;!-- ID: Markop159-repository --&amp;gt;&lt;br /&gt;
* MasterZD &amp;lt;!-- ID: repository.masterzd --&amp;gt;&lt;br /&gt;
* Mats Builds &amp;lt;!-- ID: repository.MatsBuilds --&amp;gt;&lt;br /&gt;
* Maverick &amp;lt;!-- ID: repository.maverickrepo --&amp;gt;&lt;br /&gt;
* Mbebe &amp;lt;!-- ID: repository.mbebe --&amp;gt;&lt;br /&gt;
* Megatron &amp;lt;!-- ID: repository.megatron --&amp;gt;&lt;br /&gt;
* Merlin &amp;lt;!-- ID: repository.merlin --&amp;gt;&lt;br /&gt;
* Metal Kettle &amp;lt;!-- ID: repository.metalkettle --&amp;gt;&lt;br /&gt;
* Milhano &amp;lt;!-- ID: repository.milhano --&amp;gt;&lt;br /&gt;
* Misfit Mod Light&lt;br /&gt;
* Mobie&lt;br /&gt;
* MorePower &amp;lt;!-- ID: repository.morepower --&amp;gt;&lt;br /&gt;
* Movie shark&lt;br /&gt;
* MoviesHD &amp;lt;!-- ID: repository.movieshd --&amp;gt;&lt;br /&gt;
* MrandMrsSmith &amp;lt;!-- ID: repository.mrandmrssmith --&amp;gt;&lt;br /&gt;
* MrBlamo&lt;br /&gt;
* MrFreeworld &amp;lt;!-- ID: repository.mrfreeworld --&amp;gt;&lt;br /&gt;
* Mr Stealth &amp;lt;!-- ID: repository.mrstealth|repository.mrstealth.gotham|repository.mrstealth.isengard --&amp;gt;&lt;br /&gt;
* MTL FREETV&lt;br /&gt;
* Mucky Ducks &amp;lt;!-- ID: repository.mdrepo --&amp;gt;&lt;br /&gt;
* MyShows.me &amp;lt;!-- ID repository.myshows.me --&amp;gt;&lt;br /&gt;
* Narcacist &amp;lt;!-- ID repository.narcacist --&amp;gt;&lt;br /&gt;
* Nixgates &amp;lt;!-- ID: nixgates.repository|repository.nixgates --&amp;gt;&lt;br /&gt;
* No-issue&lt;br /&gt;
* Noledynasty &amp;lt;!-- ID: repository.noledynasty --&amp;gt;&lt;br /&gt;
* Noobs and nerds &amp;lt;!-- ID: repository.noobsandnerds --&amp;gt;&lt;br /&gt;
* &amp;lt;Notsure&amp;gt; &amp;lt;!-- ID: repository.sedundnes --&amp;gt;&lt;br /&gt;
* Number 1 Guru &amp;lt;!-- ID: repository.number1guru --&amp;gt;&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numb3r5&lt;br /&gt;
* Oblivion &amp;lt;!-- ID: repository.Oblivion --&amp;gt;&lt;br /&gt;
* &amp;lt;Octopus&amp;gt; &amp;lt;!-- ID: repository.octopus --&amp;gt;&lt;br /&gt;
* &amp;lt;Oculus&amp;gt; &amp;lt;!-- ID: repository.tmb --&amp;gt;&lt;br /&gt;
* Onealliance &amp;lt;!-- ID: repository.onealliance --&amp;gt;&lt;br /&gt;
* OneNation &amp;lt;!-- ID: repository.onenation --&amp;gt;&lt;br /&gt;
* Openeleq &amp;lt;!-- ID: repository.q --&amp;gt;&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: repository.openwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Origin&amp;gt; &amp;lt;!-- ID: repository.origin --&amp;gt;&lt;br /&gt;
* Orion &amp;lt;!-- ID: repository.orion --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: repository.ororotv --&amp;gt;&lt;br /&gt;
* Pandoras Box &amp;lt;!-- ID: repository.PansBox|repository.pandoras --&amp;gt;&lt;br /&gt;
* Phoenix Reborn &amp;lt;!-- ID: repository.phoenixreborn --&amp;gt;&lt;br /&gt;
* Pipcan &amp;lt;!-- ID: repository.pipcan --&amp;gt;&lt;br /&gt;
* Players Klub &amp;lt;!-- ID: repository.playersklub --&amp;gt;&lt;br /&gt;
* Playon Monkey &amp;lt;!-- ID: repository.playonmonkey --&amp;gt;&lt;br /&gt;
* Plexus &amp;lt;!-- ID: repository.plexus-streams --&amp;gt;&lt;br /&gt;
* Podgod &amp;lt;!-- ID: repository.podgod --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: repository.premiumize --&amp;gt;&lt;br /&gt;
* &amp;lt;Press Play&amp;gt; &amp;lt;!-- ID: repository.pressplay --&amp;gt;&lt;br /&gt;
* Ptom &amp;lt;!-- ID: repository.ptom --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: repository.pulsarunofficial|repository.providerspulsarunofficial --&amp;gt;&lt;br /&gt;
* &amp;lt;Pulse&amp;gt; &amp;lt;!-- ID: repository.pulse --&amp;gt;&lt;br /&gt;
* PureRepo &amp;lt;!-- ID: repository.PureRepo --&amp;gt;&lt;br /&gt;
* Quasar &amp;lt;!-- ID: repository.quasar|repository.unofficialquasarmirror --&amp;gt;&lt;br /&gt;
* raeenterprises &amp;lt;!-- ID: repo.raeenterprises --&amp;gt;&lt;br /&gt;
* Razer &amp;lt;!-- ID: repository.razer --&amp;gt;&lt;br /&gt;
* Red Hood &amp;lt;!-- ID: repository.redhood --&amp;gt;&lt;br /&gt;
* Redditreaper &amp;lt;!-- ID: repository.redditreaper --&amp;gt;&lt;br /&gt;
* Renegades &amp;lt;!-- ID: repository.renegades --&amp;gt;&lt;br /&gt;
* Repoil Club &amp;lt;!-- ID: repository.repoil.club --&amp;gt;&lt;br /&gt;
* Retromania &amp;lt;!-- ID: repository.retromania --&amp;gt;&lt;br /&gt;
* Ring of Saturn &amp;lt;!-- ID: repository.rings --&amp;gt;&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: repository.Rising.Tides --&amp;gt;&lt;br /&gt;
* Robin Hood &amp;lt;!-- ID:repository.robinhood --&amp;gt;&lt;br /&gt;
* Rodrigo &amp;lt;!-- ID: repository.rodrigo --&amp;gt;&lt;br /&gt;
* Rockcrusher &amp;lt;!-- ID: repository.Rockcrusher|program.RockClean --&amp;gt;&lt;br /&gt;
* Sanctuary &amp;lt;!-- ID: repository.sanctuary --&amp;gt;&lt;br /&gt;
* Sandman &amp;lt;!-- ID: repository.sm --&amp;gt;&lt;br /&gt;
* Sarcasm &amp;lt;!-- ID: repository.Sarcasm --&amp;gt;&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: repository.sastatv|repository.sastatv.addons --&amp;gt;&lt;br /&gt;
* Scarecrew &amp;lt;!-- ID: repository.scarecrow --&amp;gt;&lt;br /&gt;
* Sdarot &amp;lt;!-- ID: repository.sdarot --&amp;gt;&lt;br /&gt;
* Seren&lt;br /&gt;
* Shani &amp;lt;!-- ID: repository.shani --&amp;gt;&lt;br /&gt;
* Simply caz &amp;lt;!-- ID: repository.simplycaz --&amp;gt;&lt;br /&gt;
* Skydarks &amp;lt;!-- ID: repository.skydarks --&amp;gt;&lt;br /&gt;
* SpinzTV &amp;lt;!-- ID: repository.SpinzTV --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: repository.unofficialsportsdevil --&amp;gt;&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: repository.sportsaccess --&amp;gt;&lt;br /&gt;
* Smash repo &amp;lt;!-- ID: repository.smash --&amp;gt;&lt;br /&gt;
* Smash Wizard &amp;lt;!-- ID: repository.skymashitv --&amp;gt;&lt;br /&gt;
* Smoothstreams &amp;lt;!-- ID: repository.smoothstreams --&amp;gt;&lt;br /&gt;
* Stealth &amp;lt;!-- ID: repository.stealth --&amp;gt;&lt;br /&gt;
* &amp;lt;Stefano&amp;gt; &amp;lt;!-- ID: repository.stefanorepository --&amp;gt;&lt;br /&gt;
* Steptoes &amp;lt;!-- ID: repository.steptoes --&amp;gt;&lt;br /&gt;
* StreamArmy &amp;lt;!-- ID: repository.StreamArmy --&amp;gt;&lt;br /&gt;
* Stream Hub &amp;lt;!-- ID: repository.streamhub --&amp;gt;&lt;br /&gt;
* SubZero &amp;lt;!-- ID: repository.subzero --&amp;gt;&lt;br /&gt;
* SuicideTV &amp;lt;!-- ID: repository.suicidetv --&amp;gt;&lt;br /&gt;
* Super Repo &amp;lt;!-- ID: superrepo|superrepo.kodi.krypton.repositories|superrepo.kodi.isengard.all|superrepo.kodi.krypton.all|superrepo.kodi.krypton.anime|superrepo.kodi.krypton.video|repository.superrepo.org.frodo.all|repository.superrepo.gotham.all|repository.superrepo.org.helix.all|superrepo.kodi.helix.all|superrepo.kodi.jarvis.all|superrepo.kodi.jarvis.video|superrepo.kodi.leia.all|superrepo.kodi.leia.video|superrepo.kodi.isengard.adult|superrepo.kodi.krypton.external.repositories|superrepo.kodi.krypton.services --&amp;gt;&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: repository.supremacy|plugin.program.supremebuildswizard --&amp;gt;&lt;br /&gt;
* Sweetwork &amp;lt;!-- ID: repository.sweetwork --&amp;gt;&lt;br /&gt;
* T2K &amp;lt;!-- ID: repository.T2K|plugin.video.T2K1ClickMovie --&amp;gt;&lt;br /&gt;
* Targetin Wizard&lt;br /&gt;
* Tantrum TV &amp;lt;!-- ID: repository.tantrumtv --&amp;gt;&lt;br /&gt;
* TDW1980 &amp;lt;!-- ID: repository.tdw1980 --&amp;gt;&lt;br /&gt;
* Team DNA &amp;lt;!-- ID: repository.teamdna --&amp;gt;&lt;br /&gt;
* Team Nutz&lt;br /&gt;
* Tempest &amp;lt;!-- ID: repository.zapto|repository.tempest|plugin.video.tempest --&amp;gt;&lt;br /&gt;
* The Crew &amp;lt;!-- ID: repository.thecrew --&amp;gt;&lt;br /&gt;
* The Mania Services &amp;lt;!-- ID: repository.themaniaservices --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: repository.loop --&amp;gt;&lt;br /&gt;
* The Real Urban Kingz &amp;lt;!-- ID: repository.therealurbankingz --&amp;gt;&lt;br /&gt;
* The Unjudged&lt;br /&gt;
* The Vibe &amp;lt;!-- ID: repository.thevibe --&amp;gt;&lt;br /&gt;
* The wiz&lt;br /&gt;
* Thgiliwt &amp;lt;!-- ID: repository.thgiliwt --&amp;gt;&lt;br /&gt;
* &amp;lt;Titan&amp;gt; &amp;lt;!-- ID: repository.titan.addons --&amp;gt;&lt;br /&gt;
* Tikipeter &amp;lt;!-- ID: repository.tikipeter --&amp;gt;&lt;br /&gt;
* Tk Norris &amp;lt;!-- ID: repository.tknorris.release|repository.tknorris.beta|script.module.tknorris.shared --&amp;gt;&lt;br /&gt;
* Total Installer &amp;lt;!-- ID: plugin.program.totalinstaller --&amp;gt; &lt;br /&gt;
* TOTALXBMC&lt;br /&gt;
* Tsunami OG &amp;lt;!-- ID: repository.tsunamiogrepo --&amp;gt;&lt;br /&gt;
* TVADDONS &amp;lt;!-- ID: repository.tva.common|plugin.video.ustvnow.tva|script.tvaddons.debug.log|repository.tvaddons.nl --&amp;gt;&lt;br /&gt;
* TV King &amp;lt;!-- ID: repository.tvking|repository.tvkings --&amp;gt;&lt;br /&gt;
* Twilight0 &amp;lt;!-- ID: repository.twilight0 --&amp;gt;&lt;br /&gt;
* Ufo &amp;lt;!-- ID: repository.ufo-repo --&amp;gt;&lt;br /&gt;
* Underdog &amp;lt;!-- ID: repository.underdog --&amp;gt;&lt;br /&gt;
* UK Turk &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* UK Turks &amp;lt;!-- ID: repository.ukturk --&amp;gt;&lt;br /&gt;
* Ukodil &amp;lt;!-- ID: reposiroty.ukodil --&amp;gt;&lt;br /&gt;
* &amp;lt;Unity&amp;gt;&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: repository.universalscrapers --&amp;gt;&lt;br /&gt;
* uRepo &amp;lt;!-- ID: repository.urepo|repository.uRepo --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: repository.vader-streams.tv --&amp;gt;&lt;br /&gt;
* Venom &amp;lt;!-- ID: repository.venom --&amp;gt;&lt;br /&gt;
* Vidtime &amp;lt;!-- ID: repository.VinManJSV --&amp;gt;&lt;br /&gt;
* VIP Secret TV &amp;lt;!-- ID: repository.vipsecrettv --&amp;gt;&lt;br /&gt;
* &amp;lt;Vista&amp;gt; &amp;lt;!-- ID: repository.vista|repository.vistafree|repository.vistatv --&amp;gt;&lt;br /&gt;
* VKKodi &amp;lt;!-- ID: vkkodi.repo --&amp;gt;&lt;br /&gt;
* VS247 &amp;lt;!-- ID: repository.vs247 --&amp;gt;&lt;br /&gt;
* Vstream &amp;lt;!-- ID: repository.vstream --&amp;gt;&lt;br /&gt;
* Where the monsters live &amp;lt;!-- ID: repository.Wherethemonsterslive --&amp;gt;&lt;br /&gt;
* White Devil &amp;lt;!-- ID: repository.whitedevil --&amp;gt;&lt;br /&gt;
* WikiXBMC&lt;br /&gt;
* Willows &amp;lt;!-- ID: repository.Willowsrepo --&amp;gt;&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: repository.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie &amp;lt;!-- ID: repository.wookie --&amp;gt;&lt;br /&gt;
* Wrestling on Demand &amp;lt;!-- ID: repository.wod --&amp;gt;&lt;br /&gt;
* Xan &amp;lt;!-- ID: repository.xanrepo --&amp;gt;&lt;br /&gt;
* XBMC HUB &amp;lt;!-- ID: repository.xbmchub --&amp;gt;&lt;br /&gt;
* Xfinity&lt;br /&gt;
* &amp;lt;Xstream&amp;gt; &amp;lt;!-- ID: repository.xstream|plugin.video.xstream --&amp;gt;&lt;br /&gt;
* Xunity&lt;br /&gt;
* XvBMC &amp;lt;!-- ID: repository.xvbmc --&amp;gt;&lt;br /&gt;
* Whitecream &amp;lt;!-- ID: repository.whitecream --&amp;gt;&lt;br /&gt;
* Zero Tolerance &amp;lt;!-- ID: repository.zt --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Add-on blacklist ==&lt;br /&gt;
* 123Movies &amp;lt;!-- ID: plugin.video.123movies|plugin.video.md123movies --&amp;gt;&lt;br /&gt;
* 13Clowns &amp;lt;!-- ID: plugin.video.13clowns|script.module.13clowns|script.13clowns.artwork|script.13clowns.metadata --&amp;gt;&lt;br /&gt;
* 1Angels &lt;br /&gt;
* 1Channel &amp;lt;!-- ID: plugin.video.1channel|script.1channel.themepak --&amp;gt;&lt;br /&gt;
* &amp;lt;1x2&amp;gt; &amp;lt;!-- ID: plugin.video.1x2 --&amp;gt;&lt;br /&gt;
* 80sstuff &amp;lt;!-- ID: plugin.video.80sstuff --&amp;gt;&lt;br /&gt;
* AceStreams&lt;br /&gt;
* Adryanlist &amp;lt;!-- ID: plugin.video.Adryanlist --&amp;gt;&lt;br /&gt;
* Aftershock &amp;lt;!-- ID: plugin.video.Aftershock --&amp;gt;&lt;br /&gt;
* Alfa &amp;lt;!-- ID: plugin.video.alfa|script.alfa-update-helper --&amp;gt;&lt;br /&gt;
* AllDebrid &lt;br /&gt;
* All Eyez on Me&lt;br /&gt;
* All Movies Stream&lt;br /&gt;
* &amp;lt;Alpha&amp;gt; &amp;lt;!-- ID: repository.twilight --&amp;gt;&lt;br /&gt;
* Alvin &lt;br /&gt;
* Amigos&lt;br /&gt;
* Animeram &amp;lt;!-- ID: plugin.video.Animeram --&amp;gt;&lt;br /&gt;
* Aragon &amp;lt;!-- ID: plugin.video.aragon|script.module.aragon|script.module.aragon.net --&amp;gt;&lt;br /&gt;
* Area 51&lt;br /&gt;
* Ares &amp;lt;!-- ID: plugin.video.AresExtremeSports|plugin.video.AresKungFu|plugin.video.AresMafia|plugin.video.AresMoTV|plugin.video.AresMotorSports|plugin.video.AresParanormal|plugin.video.AresTube|plugin.video.AresUFO|plugin.video.AresWorld|script.areswizard --&amp;gt;&lt;br /&gt;
* Arrakis &amp;lt;!-- ID: plugin.video.arrakis --&amp;gt;&lt;br /&gt;
* Asgard&lt;br /&gt;
* Aspis &amp;lt;!-- ID: plugin.video.Aspis|script.module.Aspis|script.module.Aspis.Mobdro|script.module.Aspis.Tv|script.module.Aspis.Sports|script.module.Aspis-live --&amp;gt;&lt;br /&gt;
* At The Flix &amp;lt;!-- ID: plugin.video.AtTheFlix --&amp;gt;&lt;br /&gt;
* Atomic &amp;lt;!-- ID: plugin.video.Atomic|script.Atomic.metadata|script.Atomic.artwork|script.module.Atomic --&amp;gt;&lt;br /&gt;
* Atom Reborn &amp;lt;!-- ID: plugin.video.ATOMREBORN --&amp;gt;&lt;br /&gt;
* BaddAssMovies4U &amp;lt;!-- ID: plugin.video.badassmovies --&amp;gt;&lt;br /&gt;
* Bandicoot&lt;br /&gt;
* Bassfox-official&lt;br /&gt;
* BBTS &amp;lt;!-- ID: plugin.video.bbts --&amp;gt;&lt;br /&gt;
* BBTSIP&lt;br /&gt;
* &amp;lt;Beast&amp;gt;&lt;br /&gt;
* Bennu &amp;lt;!-- ID: plugin.video.bennu --&amp;gt;&lt;br /&gt;
* Binky TV &amp;lt;!-- ID: plugin.video.binkytv --&amp;gt;&lt;br /&gt;
* Blamo &amp;lt;!-- ID: plugin.video.blamo --&amp;gt;&lt;br /&gt;
* Bob Unleashed &amp;lt;!-- ID: plugin.video.bob.unleashed --&amp;gt;&lt;br /&gt;
* BrazucaPlay &amp;lt;!-- ID: plugin.video.BrazucaPlay --&amp;gt;&lt;br /&gt;
* Brettus&lt;br /&gt;
* Bubbles &amp;lt;!-- ID: plugin.video.bubbles|script.bubbles.artwork|script.bubbles.resources  --&amp;gt;&lt;br /&gt;
* Cannabis &amp;lt;!-- ID: repository.fracturedwizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Canvas&amp;gt; &amp;lt;!-- ID: plugin.video.canvas --&amp;gt;&lt;br /&gt;
* Caretaker&lt;br /&gt;
* CartoonHD&lt;br /&gt;
* Cartoons8 &amp;lt;!-- ID: plugin.video.cartoons8 --&amp;gt;&lt;br /&gt;
* cCloud  &amp;lt;!-- ID: plugin.video.ccloudtv --&amp;gt;&lt;br /&gt;
* Cellar Door&lt;br /&gt;
* Cerebro &amp;lt;!-- ID: plugin.video.cerebro-movies --&amp;gt;&lt;br /&gt;
* Chappa&#039;ai &amp;lt;!-- ID: video.plugin.chappaai --&amp;gt;&lt;br /&gt;
* Chronos &amp;lt;!-- ID: plugin.video.chronos --&amp;gt;&lt;br /&gt;
* Cine &amp;lt;!-- ID: plugin.video.cine --&amp;gt;&lt;br /&gt;
* Cloud 9 &amp;lt;!-- ID: plugin.video.Cloud9 --&amp;gt;&lt;br /&gt;
* Cloudword&lt;br /&gt;
* Community Portal&lt;br /&gt;
* Configurator for Kodi&lt;br /&gt;
* Config wizard&lt;br /&gt;
* Cosmic Saints&lt;br /&gt;
* Covenant &amp;lt;!-- ID: plugin.video.covenant|script.covenant.artwork|script.module.covenant|script.covenant.metadata   --&amp;gt;&lt;br /&gt;
* Daffys &amp;lt;!-- ID: plugin.video.daffyslist --&amp;gt;&lt;br /&gt;
* Deccan Delight&lt;br /&gt;
* Dexter TV &amp;lt;!-- ID: plugin.video.dex|plugin.video.dexinstaller|plugin.video.dextertv --&amp;gt;&lt;br /&gt;
* Diabolik &amp;lt;!-- ID: plugin.video.Diabolik441 --&amp;gt;&lt;br /&gt;
* Diesel&lt;br /&gt;
* Ditto Rain&lt;br /&gt;
* Ditto HotRain&lt;br /&gt;
* DOCU HUB &amp;lt;!-- ID: plugin.video.docuhub --&amp;gt;&lt;br /&gt;
* DosMovies&lt;br /&gt;
* Dreamcatcher&lt;br /&gt;
* Duck Shitmancave&lt;br /&gt;
* Durex &amp;lt;!-- ID: plugin.program.durex.notifications|plugin.program.drxwizard|plugin.video.durextv2|skin.durexonfluence  --&amp;gt;&lt;br /&gt;
* Einthusan&lt;br /&gt;
* Eldorado &amp;lt;!-- ID: repository.eldorado --&amp;gt;&lt;br /&gt;
* Elementum &amp;lt;!-- ID: plugin.video.elementum|script.elementum.burst --&amp;gt;&lt;br /&gt;
* Eliplex TV&lt;br /&gt;
* Elysium &amp;lt;!-- ID: plugin.video.elysium|plugin.video.elysiumlite|script.elysium.artwork --&amp;gt;&lt;br /&gt;
* Entertainment Hub&lt;br /&gt;
* Exodus &amp;lt;!-- ID: plugin.video.exodus|script.module.exodus|script.exodus.artwork|script.exodus.metadata|script.module.exoscrapers --&amp;gt;&lt;br /&gt;
* ExodusRedux &amp;lt;!-- ID: plugin.video.exodusredux|script.exodusredux.artwork|script.exodusredux.metadata|script.module.exodusredux  --&amp;gt;&lt;br /&gt;
* Exoshark&lt;br /&gt;
* Fan Film&lt;br /&gt;
* F_50ci3ty&lt;br /&gt;
* F.T.V. &amp;lt;!-- ID: plugin.video.F.T.V --&amp;gt;&lt;br /&gt;
* F4M proxy &amp;lt;!-- ID: script.video.F4mProxy|script.module.f4mproxy --&amp;gt;&lt;br /&gt;
* F4M tester &amp;lt;!-- ID: plugin.video.f4mTester --&amp;gt;&lt;br /&gt;
* Falcon&lt;br /&gt;
* Falcon Project&lt;br /&gt;
* Falcon Ultra&lt;br /&gt;
* &amp;lt;Fantastic&amp;gt; &amp;lt;!-- ID: plugin.video.fantastic|script.fantastic.metadata|script.fantastic.artwork|script.module.fantastic  --&amp;gt;&lt;br /&gt;
* &amp;lt;Fen&amp;gt; &amp;lt;!-- ID: script.module.tikimeta|script.module.tikiscrapers|plugin.video.fen --&amp;gt;&lt;br /&gt;
* Feren&lt;br /&gt;
* Film Kodi&lt;br /&gt;
* Film Dictator&lt;br /&gt;
* Filmux&lt;br /&gt;
* Final Gear&lt;br /&gt;
* Fine and Dandy &amp;lt;!-- ID: plugin.video.fineanddandy --&amp;gt;&lt;br /&gt;
* Fire TV Guru&lt;br /&gt;
* Flixnet&lt;br /&gt;
* Free Streams &amp;lt;!-- ID: plugin.video.freestreams --&amp;gt;&lt;br /&gt;
* &amp;lt;Fresh start&amp;gt; &amp;lt;!-- ID: plugin.video.freshstart --&amp;gt;&lt;br /&gt;
* Gaia&lt;br /&gt;
* &amp;lt;Galaxy&amp;gt;&lt;br /&gt;
* &amp;lt;Genesis&amp;gt; &amp;lt;!-- ID: plugin.video.genesis|script.module.genesis --&amp;gt;&lt;br /&gt;
* Genesis Reborn &amp;lt;!-- ID: plugin.video.genesisreborn|script.genesisreborn.metadata|script.genesisreborn.artwork  --&amp;gt;&lt;br /&gt;
* Genie TV&lt;br /&gt;
* Goliath&lt;br /&gt;
* Good fellas &amp;lt;!-- ID: plugin.video.goodfellas --&amp;gt;&lt;br /&gt;
* GoMovies&lt;br /&gt;
* GoTV&lt;br /&gt;
* Gurzil &amp;lt;!-- ID: plugin.video.gurzil --&amp;gt;&lt;br /&gt;
* HalowIPTV &lt;br /&gt;
* Hard Nox&lt;br /&gt;
* Hot rain&lt;br /&gt;
* I4a TV&lt;br /&gt;
* I Watch Online&lt;br /&gt;
* Icarus &amp;lt;!-- ID: plugin.video.icarus --&amp;gt;&lt;br /&gt;
* Ice Films &amp;lt;!-- ID: plugin.video.icefilms --&amp;gt;&lt;br /&gt;
* Incursion &amp;lt;!-- ID: plugin.video.incursion|script.module.incursion|script.incursion.artwork --&amp;gt;&lt;br /&gt;
* Indian TV&lt;br /&gt;
* Indigo &amp;lt;!-- ID: plugin.program.indigo --&amp;gt;&lt;br /&gt;
* Infiniflix &amp;lt;!-- ID: resource.uisounds.InfiniTV|script.InfiniTV.artwork|script.InfiniFlix.metadata --&amp;gt;&lt;br /&gt;
* IPTV Stalker&lt;br /&gt;
* IPTV Simple Client 2&lt;br /&gt;
* Ironman &amp;lt;!-- ID: plugin.video.ironman --&amp;gt;&lt;br /&gt;
* IStream&lt;br /&gt;
* IVue TV &amp;lt;!-- ID: plugin.video.IVUEcreator|plugin.video.iVuewiz|script.ivueguide|xbmc.repo.ivueguide --&amp;gt;&lt;br /&gt;
* Iwannawatch &amp;lt;!-- ID: plugin.video.iwannawatch --&amp;gt;&lt;br /&gt;
* J1nxPack&lt;br /&gt;
* Jango Music&lt;br /&gt;
* Jeckyll Hyde&lt;br /&gt;
* Jesus Box&lt;br /&gt;
* JokerSports &amp;lt;!-- ID: plugin.video.JokerSports|script.module.jokerHD --&amp;gt;&lt;br /&gt;
* Jor El &amp;lt;!-- ID: plugin.video.jor-el|script.module.jor-el|script.jor-el.artwork|script.jor-el.metadata|script.realdebrid.mod --&amp;gt;&lt;br /&gt;
* Kaito &amp;lt;!-- ID:plugin.video.kaito --&amp;gt;&lt;br /&gt;
* Kartina TV &amp;lt;!-- ID: plugin.video.kartina.tv --&amp;gt;&lt;br /&gt;
* Kids1ClickMovie &amp;lt;!-- ID: plugin.video.Kids1ClickMovie --&amp;gt;&lt;br /&gt;
* Kidsflix&lt;br /&gt;
* Kino.pub&lt;br /&gt;
* Kiss Anime &amp;lt;!-- ID: plugin.video.kissanime --&amp;gt;&lt;br /&gt;
* Klugscheisser&lt;br /&gt;
* KodiCat&lt;br /&gt;
* Kodiland&lt;br /&gt;
* KodiOnDemand&lt;br /&gt;
* Kodi Popcorn Time &amp;lt;!-- ID: plugin.video.kodipopcorntime --&amp;gt;&lt;br /&gt;
* KodiUK TV&lt;br /&gt;
* Kratos &amp;lt;!-- ID: plugin.video.kratos|script.module.kratos|script.kratos.artwork|script.kratos.metadata --&amp;gt;&lt;br /&gt;
* Kratos Reborn &amp;lt;!-- ID: plugin.video.kratosreborn|script.kratosreborn.artwork|script.kratosreborn.metadata --&amp;gt;&lt;br /&gt;
* Lastship&lt;br /&gt;
* Latest Dude&lt;br /&gt;
* Legendary &amp;lt;!-- ID: plugin.video.Legendary|script.Legendary.metadata|script.Legendary.artwork|script.module.Legendary --&amp;gt;&lt;br /&gt;
* Leviathan&lt;br /&gt;
* Limitless &amp;lt;!-- ID: plugin.video.limitless --&amp;gt;&lt;br /&gt;
* Livehub &amp;lt;!-- ID: plugin.video.livehub|plugin.video.livehub2 --&amp;gt;&lt;br /&gt;
* Live Streams Pro &amp;lt;!-- ID: plugin.video.live.streamspro  --&amp;gt;&lt;br /&gt;
* &amp;lt;Logan&amp;gt; &amp;lt;!-- ID: plugin.video.loganaddon --&amp;gt;&lt;br /&gt;
* Loki &amp;lt;!-- ID: plugin.video.loki|script.module.loki-live --&amp;gt;&lt;br /&gt;
* Looking Glass&lt;br /&gt;
* Lucky IP TV &amp;lt;!-- ID: plugin.video.mdluckytv --&amp;gt;&lt;br /&gt;
* Maestro IP TV &amp;lt;!-- ID: plugin.video.maestroiptv --&amp;gt;&lt;br /&gt;
* Magic Dragon &amp;lt;!-- ID: plugin.video.themagicdragon --&amp;gt;&lt;br /&gt;
* Magicality &amp;lt;!-- ID: script.magicality.artwork|script.magicality.metadata|script.module.magicality|plugin.video.magicality --&amp;gt;&lt;br /&gt;
* Magyck PI&lt;br /&gt;
* Marvin&lt;br /&gt;
* MashUp&lt;br /&gt;
* Maverick &amp;lt;!-- ID: plugin.video.MaverickTV|plugin.video.Maverickiptv|script.module.MaverickLive|plugin.video.Maverick --&amp;gt;&lt;br /&gt;
* MD repo&lt;br /&gt;
* Mega Reborn &amp;lt;!-- ID: plugin.video.MegaReBorn --&amp;gt;&lt;br /&gt;
* Mega Search&lt;br /&gt;
* Mercury &amp;lt;!-- ID: plugin.video.Mercury --&amp;gt;&lt;br /&gt;
* Merlin&lt;br /&gt;
* Metallik &amp;lt;!-- ID: plugin.video.metallik --&amp;gt;&lt;br /&gt;
* Metalliq &amp;lt;!-- ID: plugin.video.metalliq --&amp;gt;&lt;br /&gt;
* MK Sports&lt;br /&gt;
* Mobdina &amp;lt;!-- ID: plugin.video.mobdina --&amp;gt;&lt;br /&gt;
* Mobdro &amp;lt;!-- ID: plugin.video.mobdro|script.module.mobdro --&amp;gt;&lt;br /&gt;
* Modbro&lt;br /&gt;
* Money Sports&lt;br /&gt;
* MotorReplays &amp;lt;!-- ID: plugin.video.motorreplays --&amp;gt;&lt;br /&gt;
* &amp;lt;Movie Hub&amp;gt;&lt;br /&gt;
* Movie Hut&lt;br /&gt;
* Movie Night&lt;br /&gt;
* Movies Tape&lt;br /&gt;
* Movie25&lt;br /&gt;
* Movie4k &amp;lt;!-- ID: plugin.video.movie4k --&amp;gt;&lt;br /&gt;
* Movie Rulz&lt;br /&gt;
* Movies XK&lt;br /&gt;
* MovieStorm&lt;br /&gt;
* Mp3streams&lt;br /&gt;
* MrKnow &amp;lt;!-- ID: script.mrknow.urlresolver --&amp;gt;&lt;br /&gt;
* MrPiracy &amp;lt;!-- ID: plugin.video.mrpiracy --&amp;gt;&lt;br /&gt;
* Mucky Duck&lt;br /&gt;
* MuchMovies&lt;br /&gt;
* Mutts Nuts&lt;br /&gt;
* Navi X &amp;lt;!-- ID: script.navi-x --&amp;gt;&lt;br /&gt;
* Nemesis &amp;lt;!-- ID: plugin.video.nemesis|plugin.video.nemesisaio --&amp;gt;&lt;br /&gt;
* Neptune Rising &amp;lt;!-- ID: plugin.video.neptune|script.neptune.artwork|script.neptune.metadata --&amp;gt;&lt;br /&gt;
* Nextgen &amp;lt;!-- ID: plugin.program.nextgen --&amp;gt;&lt;br /&gt;
* NLView&lt;br /&gt;
* No Limits&lt;br /&gt;
* Nole Cinema &lt;br /&gt;
* Numb3r5&lt;br /&gt;
* &amp;lt;Numbers&amp;gt;&lt;br /&gt;
* Numbersbynumbers &amp;lt;!-- ID: plugin.video.numbersbynumbers|script.module.numbersbynumbers|script.numbersbynumbers.artwork|script.numbersbynumbers.metadata --&amp;gt;&lt;br /&gt;
* OCW Reborn &amp;lt;!-- ID: plugin.video.ocw --&amp;gt;&lt;br /&gt;
* One Alliance&lt;br /&gt;
* One Click Moviez &amp;lt;!-- ID: plugin.video.oneclick --&amp;gt;&lt;br /&gt;
* One Nation &amp;lt;!-- ID: plugin.program.onenationportal --&amp;gt;&lt;br /&gt;
* Online Movies Pro&lt;br /&gt;
* Operation Robocop&lt;br /&gt;
* Open Wizard &amp;lt;!-- ID: plugin.program.openwizard --&amp;gt;&lt;br /&gt;
* Ororo TV &amp;lt;!-- ID: plugin.video.ororotv --&amp;gt;&lt;br /&gt;
* Overeasy &amp;lt;!-- ID: plugin.video.overeasy|script.module.overeasy|script.overeasy.artwork|script.overeasy.metadata --&amp;gt;&lt;br /&gt;
* P2P Streams &amp;lt;!-- ID: plugin.video.p2p-streams --&amp;gt;&lt;br /&gt;
* Palantir &amp;lt;!-- ID: plugin.video.palantir --&amp;gt;&lt;br /&gt;
* Paradox&lt;br /&gt;
* Paragon&lt;br /&gt;
* Phoenix &amp;lt;!-- ID: plugin.video.phoenixkids|plugin.video.phoenixreborn|plugin.video.phoenixrebornmovies --&amp;gt;&lt;br /&gt;
* phstreams &amp;lt;!-- ID: plugin.video.phstreams --&amp;gt;&lt;br /&gt;
* Picasso &amp;lt;!-- ID: plugin.video.picasso --&amp;gt;&lt;br /&gt;
* Placenta &amp;lt;!-- ID: plugin.video.placenta|script.placenta.metadata|script.placenta.artwork|script.module.placenta --&amp;gt;&lt;br /&gt;
* Players Klub&lt;br /&gt;
* Plexus &amp;lt;!-- ID: program.plexus --&amp;gt;&lt;br /&gt;
* Popcorn Time&lt;br /&gt;
* Poseidon &amp;lt;!-- ID: plugin.video.poseidon|script.poseidon.artwork|script.poseidon.metadata --&amp;gt;&lt;br /&gt;
* Premiumize &amp;lt;!-- ID: plugin.video.premiumize|plugin.video.premiumizer --&amp;gt;&lt;br /&gt;
* Prime Links&lt;br /&gt;
* Prime Streams &amp;lt;!-- ID: plugin.video.primestreams --&amp;gt;&lt;br /&gt;
* Primewire&lt;br /&gt;
* Project Cypher&lt;br /&gt;
* Project Free TV &amp;lt;!-- ID: plugin.video.projectfreetv --&amp;gt;&lt;br /&gt;
* Pro Sport; Pro-Sport; ProSport &amp;lt;!-- ID: plugin.video.prosport --&amp;gt;&lt;br /&gt;
* Pulsar &amp;lt;!-- ID: plugin.video.pulsar --&amp;gt;&lt;br /&gt;
* Pyramid &amp;lt;!-- ID: plugin.video.thepyramid --&amp;gt;&lt;br /&gt;
* Quantum&lt;br /&gt;
* Quasar &amp;lt;!-- ID: plugin.video.quasar --&amp;gt;&lt;br /&gt;
* Rapid Bit&lt;br /&gt;
* Real Debrid&lt;br /&gt;
* Real Movies &amp;lt;!-- ID: plugin.video.real-movies --&amp;gt;&lt;br /&gt;
* Rebirth &amp;lt;!-- ID: plugin.video.rebirth --&amp;gt;&lt;br /&gt;
* ReleaseBB&lt;br /&gt;
* Release Hub&lt;br /&gt;
* Renegades TV&lt;br /&gt;
* Rising Tides &amp;lt;!-- ID: plugin.video.Rising.Tides --&amp;gt;&lt;br /&gt;
* RockCrusher&lt;br /&gt;
* RL series&lt;br /&gt;
* RobinHood Project &amp;lt;!-- ID:pvr.robinhoodtv --&amp;gt;&lt;br /&gt;
* Resistance &amp;lt;!-- ID: plugin.video.resistance|script.module.resistance|script.resistance.artwork|script.resistance.metadata --&amp;gt;&lt;br /&gt;
* Royal We &amp;lt;!-- ID: plugin.video.theroyalwe --&amp;gt;&lt;br /&gt;
* SALTS &amp;lt;!-- ID: plugin.video.salts|plugin.video.saltsrd.lite|script.salts.themepak|script.module.saltsrd.shared --&amp;gt;&lt;br /&gt;
* Sanctuary&lt;br /&gt;
* Sasta TV &amp;lt;!-- ID: plugin.video.sastatv --&amp;gt;&lt;br /&gt;
* Schism &amp;lt;!-- ID: script.schism.common|script.module.schism.common --&amp;gt;&lt;br /&gt;
* Scrubs &amp;lt;!-- plugin.video.scrubsv2|script.module.scrubsv2|script.scrubsv2.artwork|script.scrubsv2.metadata --&amp;gt;&lt;br /&gt;
* Season Dream &amp;lt;!-- plugin.video.seasondream --&amp;gt;&lt;br /&gt;
* Seren &amp;lt;!-- ID: plugin.video.seren|context.seren --&amp;gt;&lt;br /&gt;
* Settv&lt;br /&gt;
* Selfless&lt;br /&gt;
* Sdarot.tv &amp;lt;!-- ID: plugin.video.sdarot.tv|plugin.video.sdarot.video --&amp;gt;&lt;br /&gt;
* &amp;lt; Shadow &amp;gt; &lt;br /&gt;
* Showbox &amp;lt;!-- ID: plugin.video.showboxarize|plugin.video.Showbox --&amp;gt;&lt;br /&gt;
* Silent Hunter&lt;br /&gt;
* Simple Kodi Wizard &amp;lt;!-- ID: plugin.video.SimpleKodiWizard --&amp;gt;&lt;br /&gt;
* &amp;lt;Smash&amp;gt; &amp;lt;!-- ID: plugin.program.SMASHWizard --&amp;gt;&lt;br /&gt;
* Smooth streams &amp;lt;!-- ID: script.smoothstreams --&amp;gt;&lt;br /&gt;
* Soap Catchup&lt;br /&gt;
* Soulless&lt;br /&gt;
* Sparkle &amp;lt;!-- ID: plugin.video.sparkle --&amp;gt;&lt;br /&gt;
* Specto &amp;lt;!-- ID: plugin.video.specto|script.specto.media --&amp;gt;&lt;br /&gt;
* Spinz TV&lt;br /&gt;
* Sport A Holic&lt;br /&gt;
* Sport365&lt;br /&gt;
* Sports Access &amp;lt;!-- ID: plugin.video.sportsaccess --&amp;gt;&lt;br /&gt;
* Sports Devil &amp;lt;!-- ID: plugin.video.SportsDevil|plugin.video.sportsdevil.launcher --&amp;gt; &lt;br /&gt;
* Sportsmania&lt;br /&gt;
* SportzTV &amp;lt;!-- ID: plugin.video.SportzTV --&amp;gt;&lt;br /&gt;
* Stallion&lt;br /&gt;
* Stream army &amp;lt;!-- ID: plugin.video.streamarmy --&amp;gt;&lt;br /&gt;
* Stream Cinema &amp;lt;!-- ID: plugin.video.stream-cinema --&amp;gt;&lt;br /&gt;
* Stream hub &amp;lt;!-- ID: plugin.video.streamhub|plugin.video.streamhubp --&amp;gt;&lt;br /&gt;
* Stream on Demand&lt;br /&gt;
* Stream Storm TV&lt;br /&gt;
* Stream This TV&lt;br /&gt;
* Subzero &amp;lt;!-- ID: plugin.video.subzero|plugin.video.subzerokids --&amp;gt;&lt;br /&gt;
* Super Streams&lt;br /&gt;
* SuperTV&lt;br /&gt;
* Supremacy &amp;lt;!-- ID: plugin.video.supremacy|plugin.video.Supremacy.Sports|script.module.Supremacy.sportsHD|script.module.supremacy|script.module.Supremacy.Tv|script.module.Supremacyhd --&amp;gt;&lt;br /&gt;
* Swa Desi&lt;br /&gt;
* Swiftstreamz &amp;lt;!-- ID: script.module.swiftstreamz --&amp;gt;&lt;br /&gt;
* Tantrumtv &amp;lt;!-- ID: plugin.video.tantrumtvchannel --&amp;gt;&lt;br /&gt;
* TARDIS &amp;lt;!-- ID: plugin.video.tardis --&amp;gt;&lt;br /&gt;
* TATA.TO-TV&lt;br /&gt;
* TATA.TO-VIDEO&lt;br /&gt;
* TAZ&lt;br /&gt;
* TeamZT Kriptix&lt;br /&gt;
* TeeVee &amp;lt;!-- ID: plugin.video.teevee --&amp;gt;&lt;br /&gt;
* TempTV &amp;lt;!-- ID: plugin.video.temptv --&amp;gt;&lt;br /&gt;
* Tempest &amp;lt;!-- ID: plugin.video.tempest|script.tempest.artwork|script.tempest.metadata --&amp;gt;&lt;br /&gt;
* Terrarium TV&lt;br /&gt;
* The Crew &amp;lt;!-- ID: script.thecrew.artwork|script.thecrew.metadata|plugin.video.thecrew|script.module.thecrew|script.crew.sports --&amp;gt;&lt;br /&gt;
* The Dog&#039;s Bollocks &amp;lt;!-- ID: plugin.video.thedogsbollocks --&amp;gt;&lt;br /&gt;
* &amp;lt;The Loop&amp;gt; &amp;lt;!-- ID: plugin.video.the-loop --&amp;gt;&lt;br /&gt;
* The Oath &amp;lt;!-- ID: plugin.video.theoath|script.theoath.artwork|script.theoath.metadata --&amp;gt;&lt;br /&gt;
* The Yid &amp;lt;!-- ID: script.module.TheYid.common --&amp;gt;&lt;br /&gt;
* Tiggers&lt;br /&gt;
* T Killa&lt;br /&gt;
* Toon Mania &amp;lt;!-- ID: plugin.video.toonmania --&amp;gt;&lt;br /&gt;
* TurkVod&lt;br /&gt;
* TV One &amp;lt;!-- ID: plugin.video.tvone111 --&amp;gt;&lt;br /&gt;
* TVOnline &amp;lt;!-- ID: plugin.video.tvonline.cc --&amp;gt;&lt;br /&gt;
* UK Turk Playlist &amp;lt;!-- ID: plugin.video.ukturk --&amp;gt;&lt;br /&gt;
* UK TV Now &amp;lt;!-- ID: plugin.video.uktvnow --&amp;gt;&lt;br /&gt;
* Ultimate installer&lt;br /&gt;
* Ultimate IPTV&lt;br /&gt;
* &amp;lt;Universal Scrapers&amp;gt; &amp;lt;!-- ID: script.module.universalscrapers --&amp;gt;&lt;br /&gt;
* Uranus &amp;lt;!-- ID: plugin.video.uranus|script.module.uranus|script.uranus.artwork|script.uranus.metadata --&amp;gt;&lt;br /&gt;
* Vader Streams &amp;lt;!-- ID: plugin.video.VADER|script.tvguide.Vader --&amp;gt;&lt;br /&gt;
* Vdubt25&lt;br /&gt;
* Velocity &amp;lt;!-- ID: plugin.video.velocity|plugin.video.velocitykids --&amp;gt;&lt;br /&gt;
* Venom &amp;lt;!-- ID: plugin.video.venom|context.venom --&amp;gt;&lt;br /&gt;
* Video devil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Videodevil &amp;lt;!-- ID: plugin.video.videodevil --&amp;gt;&lt;br /&gt;
* Vip secret&lt;br /&gt;
* Vortech TV&lt;br /&gt;
* Vstream &amp;lt;!-- ID: plugin.video.vstream --&amp;gt;&lt;br /&gt;
* White cream&lt;br /&gt;
* White Devil&lt;br /&gt;
* Wolfpack &amp;lt;!-- ID: plugin.video.wolfpack|resource.uisounds.wolfpack --&amp;gt;&lt;br /&gt;
* Wookie&lt;br /&gt;
* Wraith&lt;br /&gt;
* Wrestling On Demand&lt;br /&gt;
* Xan &amp;lt;!-- ID: plugin.program.xanwiz --&amp;gt;&lt;br /&gt;
* Xfinity Installer&lt;br /&gt;
* XMovies8&lt;br /&gt;
* &amp;lt;Xstream&amp;gt;&lt;br /&gt;
* Xunity &amp;lt;!-- ID: plugin.video.xunity --&amp;gt;&lt;br /&gt;
* xxxodus &amp;lt;!-- ID: plugin.video.xxx-o-dus|script.xxxodus.artwork|script.xxxodus.metadata|script.xxxodus.scrapers|plugin.video.xxx-o-dus --&amp;gt;&lt;br /&gt;
* Yify Movies &amp;lt;!-- ID: plugin.video.yifymovies.hd --&amp;gt;&lt;br /&gt;
* Yoda &amp;lt;!-- ID: plugin.video.yoda|script.yoda.metadata|script.module.yoda|script.yoda.artwork|plugin.video.Yoda|script.Yoda.metadata|script.module.Yoda|script.Yoda.artwork --&amp;gt;&lt;br /&gt;
* Zem TV &amp;lt;!-- ID: plugin.video.ZemTV-shani --&amp;gt;&lt;br /&gt;
* Zeta TV&lt;br /&gt;
* Zeus &amp;lt;!-- ID: plugin.video.zeus --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==So where do I get support?==&lt;br /&gt;
Every Add-on should contain the authors name, this is found by opening the Context menu on the Add-on and selecting &#039;&#039;&#039;Add-on Information&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Generally a search of the Add-on&#039;s name together with the author name will give the location of where the author is active.&lt;br /&gt;
&lt;br /&gt;
For example a search term might be:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Kodi TheCollective Youtube&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:add-on-context.JPG|400px]]&lt;br /&gt;
[[File:add-on-info.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i style=&amp;quot;display:none; speak:none;&amp;quot;&amp;gt;&lt;br /&gt;
* Astrologer&lt;br /&gt;
* Astrology&lt;br /&gt;
* Asshole&lt;br /&gt;
* Babaji&lt;br /&gt;
* Credit card&lt;br /&gt;
* cunt\w*&lt;br /&gt;
* Divorce&lt;br /&gt;
* được&lt;br /&gt;
* fuck\w*&lt;br /&gt;
* FullZ&lt;br /&gt;
* Gestapo&lt;br /&gt;
* Hitler&lt;br /&gt;
* India&lt;br /&gt;
* Marriage&lt;br /&gt;
* Moderator&lt;br /&gt;
* Moderators&lt;br /&gt;
* Mumbai&lt;br /&gt;
* Nazi&lt;br /&gt;
* Những&lt;br /&gt;
* Real Love&lt;br /&gt;
* Switchonshop&lt;br /&gt;
* Switch0sh0p&lt;br /&gt;
* Switch0nsh0p&lt;br /&gt;
* Switchonsh0p&lt;br /&gt;
* Switch0nshop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0\$hop&lt;br /&gt;
* \$witchon\$hop&lt;br /&gt;
* \$witch0n\$h0p&lt;br /&gt;
* Teatv&lt;br /&gt;
* Telegram\w*&lt;br /&gt;
* p\.com&lt;br /&gt;
* \+91&lt;br /&gt;
* VPN&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{top}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOINDEX__&lt;br /&gt;
[[Category:XBMC_Foundation]]&lt;/div&gt;</summary>
		<author><name>DarrenHill</name></author>
	</entry>
</feed>