diff --git a/docs/guides/advanced-usage/activate-ams-within-restricted-geo-locations.md b/docs/guides/advanced-usage/activate-ams-within-restricted-geo-locations.md
index 12934a6d..0e663785 100644
--- a/docs/guides/advanced-usage/activate-ams-within-restricted-geo-locations.md
+++ b/docs/guides/advanced-usage/activate-ams-within-restricted-geo-locations.md
@@ -106,7 +106,7 @@ If the output of the above command returns a "valid" value, your license can be
#### 6. Add the settings for Ant Media Server.
```
-echo "proxy.address=username:password@proxy.antmedia.io:80" >> /usr/local/antmedia/conf/red5.properties
+echo "proxy.address=username:password@license-verification.antmedia.io:80" >> /usr/local/antmedia/conf/red5.properties
```
Finally, restart the Ant Media Server.
```
diff --git a/docs/guides/monitoring/collecting-logs-from-ams-cluster.md b/docs/guides/monitoring/collecting-logs-from-ams-cluster.md
index ce5b2369..fb17002c 100644
--- a/docs/guides/monitoring/collecting-logs-from-ams-cluster.md
+++ b/docs/guides/monitoring/collecting-logs-from-ams-cluster.md
@@ -20,66 +20,68 @@ The following example is for Ubuntu with a 4Gb RAM (minimum), however the same s
#### Prerequisites
-In order to run Elasticsearch, you must install Java. Run the following commands to install.
-
+- In order to run Elasticsearch, you must install Java. Run the following commands to install.
+```sh
sudo apt-get update
sudo apt-get install apt-transport-https openjdk-11-jre openjdk-11-jre-headless uuid-runtime pwgen
-
+``
### Step 1: Install MongoDB
-MongoDB stores the configurations and meta information. Install MongoDB using the following commands.
-
+- MongoDB stores the configurations and meta information. Install MongoDB using the following commands.
+```sh
sudo apt-get install gnupg
wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu `lsb_release -cs`/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
sudo apt-get update && sudo apt-get install -y mongodb-org
-
-Enable and restart MongoDB service by running the commands below.
-
+```
+- Enable and restart MongoDB service by running the commands below.
+```sh
sudo systemctl enable mongod.service & sudo systemctl restart mongod.service
-
-Make sure the service is running:
-
+```
+- Make sure the service is running:
+```sh
sudo systemctl status mongod.service
+```
### Step 2: Install Elasticsearch
Graylog can be used with Elasticsearch 7.x. Elasticsearch acts as a search server, requiring Graylog to work.
Install Elasticsearch using the following commands.
-
+```sh
wget -O - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add
echo "deb https://artifacts.elastic.co/packages/oss-7.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-7.x.list
sudo apt-get update && sudo apt-get install elasticsearch-oss
-
+```
Once the installation of Elasticsearch 7.x is complete, set the cluster name for Graylog.
Edit the following file:
-
+```sh
vim /etc/elasticsearch/elasticsearch.yml
-
+```
and then add the 2 lines below.
-
+```echo
cluster.name: graylog
action.auto_create_index: false
-
+```
Save the file and exit.
Enable and restart Elasticsearch service by running the commands below:
-
+```sh
sudo systemctl enable elasticsearch.service
sudo systemctl restart elasticsearch.service
-
+```
Make sure the service is running. To check the status of Elasticsearch, run the command below:
-
+```sh
sudo systemctl status elasticsearch.service
-
+```
Make sure everything is correct by running the following command:
-
+```sh
curl -X GET http://localhost:9200
+```
Output:
-```
+```echo
root@graylog:~# curl -X GET http://localhost:9200
{
"name" : "cdN0aJ1",
@@ -100,7 +102,7 @@ Output:
}
```
Make sure the output status is green.
-```
+```echo
curl -XGET 'http://localhost:9200/_cluster/health?pretty=true'
{
@@ -126,19 +128,19 @@ Make sure the output status is green.
Graylog is a log parser. It collects logs from various inputs. Now that we have installed MongoDB and Elasticsearch, it is time to install Graylog.
Install Graylog using the following commands:
-```
+```sh
wget https://packages.graylog2.org/repo/packages/graylog-4.3-repository_latest.deb
sudo dpkg -i graylog-4.3-repository_latest.deb
sudo apt-get update && sudo apt-get install graylog-server -y
```
To create your **root\_password\_sha2** run the following command. You will need this password to login to the Graylog web interface.
-```
+```sh
echo -n "Enter Password: " && head -1 `` #### Information about CVE-2021-44228
->`
->` Since Apache Kafka uses Log4j 1.x, there is no impact\[1\]. If your Logstash and Elasticsearch version is lower than 7.16.1, you can upgrade to the latest version with the command ```apt-get update && apt-get install -y logstash elasticsearch```. If you do not have the possibility to update, you need to add the parameter ```-Dlog4j2.formatMsgNoLookups=true``` to the JVM option.
->`
->` \[1\] [https://logging.apache.org/log4j/2.x/security.html](https://logging.apache.org/log4j/2.x/security.html)
->`
->` \[2\] [https://discuss.elastic.co/t/apache-log4j2-remote-code-execution-rce-vulnerability-cve-2021-44228-esa-2021-31/291476](https://discuss.elastic.co/t/apache-log4j2-remote-code-execution-rce-vulnerability-cve-2021-44228-esa-2021-31/291476)
-
-Which data can you access from Ant Media?
+- [Use Automatic Installation Script](#Automatic-Installation-Script)
+- [Install Apache Kafka](#Install-Apache-Kafka)
+- [Install Elasticsearch and Logstash](#Install-Elasticsearch-and-Logstash)
+- [Install Grafana](#Install-Grafana)
+
+> #### Information about CVE-2021-44228
+>
+> Since Apache Kafka uses Log4j 1.x, there is no impact\[1\]. If your Logstash and Elasticsearch version is lower than 7.16.1, you can upgrade to the latest version with the command `apt-get update && apt-get install -y logstash elasticsearch`. If you do not have the possibility to update, you need to add the parameter `-Dlog4j2.formatMsgNoLookups=true` to the JVM option.
+>>
+>> \[1\] [https://logging.apache.org/log4j/2.x/security.html](https://logging.apache.org/log4j/2.x/security.html)
+>> \[2\] [https://discuss.elastic.co/t/apache-log4j2-remote-code-execution-rce-vulnerability-cve-2021-44228-esa-2021-31/291476](https://discuss.elastic.co/t/apache-log4j2-remote-code-execution-rce-vulnerability-cve-2021-44228-esa-2021-31/291476)
+
+### Which data can you access from Ant Media?
-----------------------------------------
Ant Media Server provides the following statistics.
-instanceId
-
-cpuUsage
-
-jvmMemoryUsage
-
-systemInfo
-
-systemMemoryInfo
-
-fileSystemInfo
-
-jvmNativeMemoryUsage
-
-localWebRTCLiveStreams
-
-localLiveStreams
-
-
-localWebRTCViewers
-
-localHLSViewers
-
-encoders-blocked
-
-encoders-not-opened
-
-publish-timeout-errors
-
-vertx-worker-thread-queue-size
-
-webrtc-vertx-worker-thread-queue-size
-
-server-timing
-
-host-addres
-
-Automatic installation script
------------------------------
-
-If you would like automatic installation instead of dealing with the steps above, you can use the script below.
-
-[https://raw.githubusercontent.com/ant-media/Scripts/master/install-monitoring-tools.sh](https://raw.githubusercontent.com/ant-media/Scripts/master/install-monitoring-tools.sh)
+- instanceId
+- cpuUsage
+- jvmMemoryUsage
+- systemInfo
+- systemMemoryInfo
+- fileSystemInfo
+- jvmNativeMemoryUsage
+- localWebRTCLiveStreams
+- localLiveStreams
+- localWebRTCViewers
+- localHLSViewers
+- encoders-blocked
+- encoders-not-opened
+- publish-timeout-errors
+- vertx-worker-thread-queue-size
+- webrtc-vertx-worker-thread-queue-size
+- server-timing
+- host-addres
+
+## Automatic Installation Script
+
+If you would like automatic installation instead of dealing with the steps above, you can use the script below:
+- [Install Monitoring Tools through shell script for Ant Media Server](https://raw.githubusercontent.com/ant-media/Scripts/master/install-monitoring-tools.sh)
**Usage:**
- wget https://raw.githubusercontent.com/ant-media/Scripts/master/install-monitoring-tools.sh && chmod +x install-monitoring-tools.sh
+```sh
+wget https://raw.githubusercontent.com/ant-media/Scripts/master/install-monitoring-tools.sh && chmod +x install-monitoring-tools.sh
+```
-After the installation is completed successfully, login to Web panel ```http://your_ip_address:3000/``` through your web browser. The default username and password is ```admin/admin```
+After the installation is completed successfully, login to Web panel `http://your_ip_address:3000/` through your web browser. The default username and password is `admin/admin`
-Install Apache Kafka
---------------------
+## Install Apache Kafka
Kafka is useful for building real-time streaming data pipelines to get data between the systems or applications.
-**1.** Install Java because Apache Kafka requires Java.
+1. Install Java because Apache Kafka requires Java.
+```sh
apt-get update && apt-get install openjdk-8-jdk -y
+```
-**2.** Download the Apache Kafka and then extract the archive file
-
+2. Download the Apache Kafka and then extract the archive file
+```sh
wget https://archive.apache.org/dist/kafka/2.2.0/kafka_2.12-2.2.0.tgz
tar -zxvf kafka_2.12-2.2.0.tgz
sudo mv kafka_2.12-2.2.0 /opt/kafka
-
-**3.** Edit **server.properties** ```vim /opt/kafka/config/server.properties``` file as below.
-
+```
+3. Edit **server.properties** `vim /opt/kafka/config/server.properties` file as below.
+```sh
listeners=PLAINTEXT://your_server_ip:9092
-
-**4.** Start Apache Kafka
-
+```
+4. Start Apache Kafka
+```sh
sudo /opt/kafka/bin/zookeeper-server-start.sh /opt/kafka/config/zookeeper.properties &
sudo /opt/kafka/bin/kafka-server-start.sh /opt/kafka/config/server.properties &
-
sudo /opt/kafka/bin/kafka-server-start.sh /opt/kafka/config/server.properties &
+```
+Firstly, we've started ZooKeeper because Kafka needs ZooKeeper and then we've started Kafka.
-Firstly, we've started ZooKeeper because Kafka needs ZooKeeper and then we've started Kafka **5.** Check if it's working. Run the command below
-
+5. Check if it's working. Run the command below
+```sh
netstat -tpln | egrep "9092|2181"
+```
+if you see that the ports(`9092` and `2181`) are in listening mode, it means it's working.
-if you see that the ports(9092 and 2181) are in listening mode, it means it's working.
-
-#### Run Apache Kafka as a ```systemd``` service.
+### Run Apache Kafka as a `systemd` service.
-Running Apache Kafka as a ```systemd``` service will let us manage Kafka services to start/stop using the ```systemctl``` commands. Follow the instructions below
+Running Apache Kafka as a `systemd` service will let us manage Kafka services to start/stop using the `systemctl` commands. Follow the instructions below
-* Create ```systemd```unit file for Apache Kafka
-
- ```vim /lib/systemd/system/kafka.service```
-
+- Create ```systemd```unit file for Apache Kafka
+```sh
+ vim /lib/systemd/system/kafka.service
+```
-* Copy and paste the below content into the ```kafka.service```you've created above. Make sure that you set the correct JAVA\_HOME path for your system in the content below
-
- [Unit]
- Description=Apache Kafka Server
- Requires=network.target remote-fs.target
- After=network.target remote-fs.target kafka-zookeeper.service
-
- [Service]
- Type=simple
- Environment=JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-amd64
- ExecStart=/opt/kafka/bin/kafka-server-start.sh /opt/kafka/config/server.properties
- ExecStop=/opt/kafka/bin/kafka-server-stop.sh
-
- [Install]
- WantedBy=multi-user.target
+- Copy and paste the below content into the `kafka.service`you've created above. Make sure that you set the correct JAVA\_HOME path for your system in the content below
-* Create ```systemd```unit file for Zookeeper
+```echo
+ [Unit]
+ Description=Apache Kafka Server
+ Requires=network.target remote-fs.target
+ After=network.target remote-fs.target kafka-zookeeper.service
- ```vim /lib/systemd/system/kafka-zookeeper.service```
+ [Service]
+ Type=simple
+ Environment=JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-amd64
+ ExecStart=/opt/kafka/bin/kafka-server-start.sh /opt/kafka/config/server.properties
+ ExecStop=/opt/kafka/bin/kafka-server-stop.sh
-* Copy and paste the below content to the ```kafka-zookeeper.service``` file you've created above.
-
- [Unit]
- Description=Apache Zookeeper Server
- Requires=network.target remote-fs.target
- After=network.target remote-fs.target
-
- [Service]
- Type=simple
- Environment=JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-amd64
- ExecStart=/opt/kafka/bin/zookeeper-server-start.sh /opt/kafka/config/zookeeper.properties
- ExecStop=/opt/kafka/bin/zookeeper-server-stop.sh
-
- [Install]
- WantedBy=multi-user.target
-
-* Enable and reload the systemd daemon to apply new changes.
-
- systemctl enable kafka-zookeeper.service
- systemctl enable kafka.service
+ [Install]
+ WantedBy=multi-user.target
+```
-* Start kafka server
+- Create `systemd` unit file for Zookeeper
+```sh
+ vim /lib/systemd/system/kafka-zookeeper.service
+```
- systemctl start kafka-zookeeper.service
- systemctl start kafka.service
+- Copy and paste the below content to the `kafka-zookeeper.service` file you've created above.
+```echo
+ [Unit]
+ Description=Apache Zookeeper Server
+ Requires=network.target remote-fs.target
+ After=network.target remote-fs.target
+
+ [Service]
+ Type=simple
+ Environment=JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-amd64
+ ExecStart=/opt/kafka/bin/zookeeper-server-start.sh /opt/kafka/config/zookeeper.properties
+ ExecStop=/opt/kafka/bin/zookeeper-server-stop.sh
+
+ [Install]
+ WantedBy=multi-user.target
+```
+- Enable and reload the systemd daemon to apply new changes.
+```sh
+ systemctl enable kafka-zookeeper.service
+ systemctl enable kafka.service
+```
+- kafka server
+```sh
+ systemctl start kafka-zookeeper.service
+ systemctl start kafka.service
+```
-#### Kafka settings for Ant Media Server
+### Kafka settings for Ant Media Server
-If you want to monitor Ant Media Server, you need to set the IP address of your Apache Kafka in ```AMS_INSTALLTION_DIR/conf/red5.properties``` file.
+If you want to monitor Ant Media Server, you need to set the IP address of your Apache Kafka in `AMS_INSTALLTION_DIR/conf/red5.properties` file.
-* Open the following line with the editor
+- Open the following line with the editor
- ```vim /usr/local/antmedia/conf/red5.properties```
-
-* Edit the following line
-
- ```server.kafka_brokers=ip_address:port_number```
-
- Replace ```ip_address:port_number``` with Apache Kafka IP Address and port number
-
- Example: ```server.kafka_brokers=192.168.1.230:9092```
-
-* Restart Ant Media Server.
+```sh
+ vim /usr/local/antmedia/conf/red5.properties
+```
- ```service antmedia restart```
+- Edit the line: `server.kafka_brokers=ip_address:port_number`
+> Replace `ip_address:port_number` with Apache Kafka IP Address and port number.
+> Example: `server.kafka_brokers=192.168.1.230:9092`
-* Check if it's working
+- Restart Ant Media Server.
+
+```sh
+ service antmedia restart
+```
+- Check if it's working
When you run the following command on Kafka server, if there is data flow, everything is configured properly.
- ```/opt/kafka/bin/kafka-console-consumer.sh --bootstrap-server 192.168.1.230:9092 --topic ams-instance-stats --from-beginning```
+```sh
+ /opt/kafka/bin/kafka-console-consumer.sh --bootstrap-server 192.168.1.230:9092 --topic ams-instance-stats --from-beginning
+```
- Output should be something like below:
-```
+- Output should be something like below:
+```json
{"instanceId":"a06e5437-40ee-49c1-8e38-273544964335","cpuUsage":
{"processCPUTime":596700000,"systemCPULoad":0,"processCPULoad":1},"jvmMemoryUsage":
{"maxMemory":260046848,"totalMemory":142606336,"freeMemory":21698648,"inUseMemory":120907688},"systemInfo":
{"osName":"Linux","osArch":"amd64","javaVersion":"1.8","processorCount":1},"systemMemoryInfo":
...
-
+ }
```
+
#### Some Useful Apache Kafka commands
-* List all topics
+- List all topics
- ```/opt/kafka/bin/kafka-topics.sh --list --bootstrap-server your_kafka_server:9092```
-
- Example:
+```sh
+ /opt/kafka/bin/kafka-topics.sh --list --bootstrap-server your_kafka_server:9092
+```
- /opt/kafka/bin/kafka-topics.sh --list --bootstrap-server 192.168.1.230:9092
- ams-instance-stats
- ams-webrtc-stats
- kafka-webrtc-tester-stats
+Example:
+```sh
+ /opt/kafka/bin/kafka-topics.sh --list --bootstrap-server 192.168.1.230:9092
+ ams-instance-stats
+ ams-webrtc-stats
+ kafka-webrtc-tester-stats
+```
-* Monitor messages for a specific topic with Kafka Consumer as we've used above
+- Monitor messages for a specific topic with Kafka Consumer as we've used above
- ```/opt/kafka/bin/kafka-console-consumer.sh --bootstrap-server 192.168.1.230:9092 --topic ams-instance-stats --from-beginning```
+```sh
+ /opt/kafka/bin/kafka-console-consumer.sh --bootstrap-server 192.168.1.230:9092 --topic ams-instance-stats --from-beginning
+```
-Install Elasticsearch and Logstash
-----------------------------------
+## Install Elasticsearch and Logstash
### Install Elasticseach
-**1.** Import GPG key and Repo
-```
+1. Import GPG key and Repo
+```sh
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
sudo apt-get install apt-transport-https
echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-7.x.list
```
-**2.** Update package lists and install elastic search
-```
+
+2. Update package lists and install elastic search
+```sh
sudo apt-get update && sudo apt-get install elasticsearch
```
-**3.** Enable and start elasticsearch service
-```
+
+3. Enable and start elasticsearch service
+```sh
sudo systemctl enable elasticsearch.service
sudo systemctl start elasticsearch.service
```
-#### Install Logstash
+
+### Install Logstash
Logstash is a server‑side data processing pipeline that ingests data from multiple sources simultaneously, transforms it and then sends it to a “stash” like Elasticsearch
-**1.** Update your package lists, then install ```logstash``` with the following command
-```
+1. Update your package lists, then install `logstash` with the following command:
+```sh
sudo apt-get update && sudo apt-get install logstash
```
-**2.** Enable logstash service
-```
+2. Enable logstash service
+```sh
sudo systemctl enable logstash.service
```
-**3.** Configure logstash. Create **/etc/logstash/conf.d/logstash.conf** file and add below content. Please don't forget to replace ```kafka_server_ip``` and make sure ```elasticsearch_ip``` is correct.
-```
+3. Configure logstash. Create `/etc/logstash/conf.d/logstash.conf` file and add below content. Please don't forget to replace `kafka_server_ip` and make sure `elasticsearch_ip` is correct.
+
+```echo
#kafka
input {
kafka {
@@ -274,152 +271,182 @@ Logstash is a server‑side data processing pipeline that ingests data from mult
stdout { codec =>` rubydebug }
}
```
-**4.** Save and close the file, then restart ```logstash``` service
-```
+
+4. Save and close the file, then restart `logstash` service
+```sh
sudo systemctl restart logstash
```
+
#### Test Elasticsearch and Logstash Configuration
You can test that Elasticsearch and Logstash are working correctly with the command below.
-```curl -XGET 'localhost:9200/_cat/indices?v&pretty'```
+```sh
+ curl -XGET 'localhost:9200/_cat/indices?v&pretty'
+```
Example output:
-
+```echo
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size
yellow open logstash-log-2020.03.23 mf-ffIHBSNO4s7_YoUr_Rw 1 1 1300 0 527.5kb 527.5kb
+```
-Install Grafana
----------------
+## Install Grafana
Grafana is an open source metric analytics & visualization suite.
-**1.** In order to install Grafana Server, run the following commands.
-
+1. In order to install Grafana Server, run the following commands.
+```sh
sudo apt-get install -y software-properties-common wget apt-transport-https
wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add -
sudo add-apt-repository "deb https://packages.grafana.com/oss/deb stable main"
sudo apt-get update && sudo apt-get install grafana
+```
-**2.** Enable and start grafana server
-
+2. Enable and start grafana server
+```sh
sudo systemctl enable grafana-server
sudo systemctl start grafana-server
+```
-#### Configure Grafana
+### Configure Grafana
-**1.** Login to Web panel(```http://your_ip_address:3000/login```) through your web browser. Default username and password is ```admin/admin```
+1. Login to Web panel `http://your_ip_address:3000/login` through your web browser. Default username and password is `admin/admin`
-**2.** Click ```Add data source```
+2. Click `Add data source`.
![](@site/static/img/grafana1.png)
- **3.** Select Elasticsearch
+3. Select Elasticsearch
![](@site/static/img/grafana2.png)
- **4.** Set setting as below
-
+4. Set setting as below
+```echo
URL : http://127.0.0.1:9200
Index name: logstash-*
Time filed name: @timestamp
Version: 7.0+
+```
+![](@site/static/img/grafana3_1.png)
-![](@site/static/img/grafana3_1.png)![](@site/static/img/grafana3.png)
+![](@site/static/img/grafana3.png)
-Click ```New dashboard```
-```![](@site/static/img/grafana4.png)```**6.** Click ```Add Query```
-```![](@site/static/img/grafana5.png)```**7.** Choose whatever you want to monitor.
-![](@site/static/img/grafana6.png)**8.** Ant Media Example Dashboard
-![](@site/static/img/grafana7.png)
+5. Click `New dashboard`
+![](@site/static/img/grafana4.png)
+
+6. Click `Add Query`
+![](@site/static/img/grafana5.png)
->` If you would like to use the same dashboard, you can download it from the below link
+7. Choose whatever you want to monitor.
+![](@site/static/img/grafana6.png)
+
+8. Ant Media Example Dashboard
+![](@site/static/img/grafana7.png)
->` [https://antmedia.io/antmedia-dashboard.json](https://antmedia.io/antmedia-dashboard.json)
+> If you would like to use the same dashboard, you can download it from the below link
+> [https://antmedia.io/antmedia-dashboard.json](https://antmedia.io/antmedia-dashboard.json)
#### Create Telegram Alert
You can define an alert in Grafana and it can notify when specific events happen
-**1.** Create a New Bot \* Open Telegram and search for @BotFather user and send the following command. ```/newbot``` \* When you create a new bot, you will get response like below. ```Use this token to access the HTTP API: 1254341629:AAHYHhJK8TgsUXa7jqBK7wU1bJ8hzWhUFzs Keep your token secure and store it safely, it can be used by anyone to control your bot.```
+1. Create a New Bot
-**2.** Create a Channel and retrieve the channel's chat ID.
+- Open Telegram and search for @BotFather user and send the following command: `/newbot`
+- When you create a new bot, you will get response like below.
+- Use this token to access the `HTTP API`: `1254341629:AAHYHhJK8TgsUXa7jqBK7wU1bJ8hzWhUFzs`
-* Create a channel in telegram and Invite your bot as an admin
-* Send a test message and Get the Chat ID
-* Use cURL or just visit the url below with your browser. Don't forget to replace the access token
-
- https://api.telegram.org/bot{USE_YOUR_ACCESS_TOKEN}/getUpdates
+Keep your token secure and store it safely, it can be used by anyone to control your bot.
+
+2. Create a Channel and retrieve the channel's chat ID.
+
+- Create a channel in telegram and Invite your bot as an admin
+- Send a test message and Get the Chat ID
+- Use cURL or just visit the url below with your browser. Dont forget to replace the access token: `https://api.telegram.org/bot{USE_YOUR_ACCESS_TOKEN}/getUpdates`
-* You will get the lines like below.
-```
- {"ok":true,"result":[{"update_id":222389875,
- "channel_post":{"message_id":2,"chat":
- {"id":-1001181377238,"title":"test","type":"channel"},"date":1587016720,"text":"test"}}]}
+3. You will get the lines like below.
+
+```json
+ {"ok":true,"result":[{"update_id":222389875,
+ "channel_post":{"message_id":2,"chat":
+ {"id":-1001181377238,"title":"test","type":"channel"},"date":1587016720,"text":"test"}}]}
```
-* Save the id number: ```-1001181377238``` because we'll need it in next step
-#### Configure Grafana Notification
+4. Save the id number: ```-1001181377238``` because we'll need it in next step
+
+### Configure Grafana Notification
We have configured the chatbot aboe. Now let's start to configure Grafana Notification.
-**1.** Login to Grafana web panel via ```http://your_grafana_server:3000```
+1. Login to Grafana web panel via `http://your_grafana_server:3000`
+
+2. Click Alerting / Notification Channel
+![](@site/static/img/grafana_telegram_1.png)
-**2.** Click Alerting / Notification Channel
-![](@site/static/img/grafana_telegram_1.png)**3.** Add New Channel
+3. Add New Channel
![](@site/static/img/grafana_telegram_2.png)
- **4.** Configure it as shown in the below screenshot
+4. Configure it as shown in the below screenshot
![](@site/static/img/grafana_telegram_3.png)
+```echo
Name : name_of_your_notification.
Type : Telegram
Bot Api Token: your_bot_token_id
Chat ID: your_channel_id
+```
-If you click on the Send Test and there is a message on the telegram, everything is fine.
+5. If you click on the Send Test and there is a message on the telegram, everything is fine.
![](@site/static/img/grafana_telegram_5.png)
Now you've set up notifications as you wish.
-How to Enable SSL
------------------
+### How to Enable SSL
We prefer to use SSL termination.
-Run the following commands to install Nginx and certbot
-
-```sudo apt install curl ca-certificates lsb-release -y```
-```
- echo "deb http://nginx.org/packages/`lsb_release -d | awk '{print $2}' | tr '[:upper:]' '[:lower:]'` `lsb_release -cs` nginx" \
+- Run the following commands to install Nginx and certbot
- | sudo tee /etc/apt/sources.list.d/nginx.list
+```sh
+ sudo apt install curl ca-certificates lsb-release -y
+ echo "deb http://nginx.org/packages/`lsb_release -d | awk '{print $2}' | tr '[:upper:]' '[:lower:]'` `lsb_release -cs` nginx" | sudo tee /etc/apt/sources.list.d/nginx.list
```
-Now import an official Nginx signing key
-```curl -fsSL https://nginx.org/keys/nginx_signing.key | sudo apt-key add -```
+- Now import an official Nginx signing key
-run the following commands to install nginx
+```sh
+ curl -fsSL https://nginx.org/keys/nginx_signing.key | sudo apt-key add -
+```
+- Run the following commands to install nginx
+```sh
sudo apt update
sudo apt install nginx certbot python3-certbot-nginx -y
+```
-run the following commands to create certificate
-
+- Run the following commands to create certificate
+```sh
certbot --nginx -d yourdomain.com -d www.yourdomain.com
+```
-edit crontab file ```crontab -e```
-
-add below line to renew certificate each 80 days.
+- edit crontab file with command `crontab -e` and add below line to renew certificate each 80 days.
-```0 0 */80 * * root certbot -q renew --nginx```
+```sh
+ 0 0 */80 * * root certbot -q renew --nginx
+```
-Backup default Nginx configuration
+- Backup default Nginx configuration
-```mv /etc/nginx/conf.d/default.conf{,_bck}```
+```sh
+ mv /etc/nginx/conf.d/default.conf{,_bck}
+```
-Create a new file called ```grafana.conf``` and edit and save the following lines according to you.
+- Create a new file called `grafana.conf` and edit and save the following lines according to you.
-```vim /etc/nginx/conf.d/grafana.conf```
+```sh
+ vim /etc/nginx/conf.d/grafana.conf
```
+
+```echo
server {
listen 443 ssl;
server_name yourdomain.com;
@@ -441,57 +468,63 @@ Create a new file called ```grafana.conf``` and edit and save the following line
proxy_pass http://127.0.0.1:3000;
}
}
-
```
-You can reach Grafana as follows.
-
-```https://yourdomain.com/```
+- You can reach Grafana through: `https://yourdomain.com/`
-Performance Tuning
-------------------
+### Performance Tuning
The performance will be affected by system resources and network status.
-**1.** Heap size has to be less than 4Gb and not more than 8Gb. Set the minimum (Xms) and maximum (Xmx) heap allocation size to the same value to prevent the heap size from being resized.
-
-For example, 4GB / 4GB is set for a total of 8Gb memory.
+1. Heap size has to be less than 4Gb and not more than 8Gb. Set the minimum (Xms) and maximum (Xmx) heap allocation size to the same value to prevent the heap size from being resized.
+>> For example, 4GB / 4GB is set for a total of 8Gb memory.
Open the following file then change Xms and Xmx values according to your total memory.
-```vim /etc/logstash/jvm.options```
-
- -Xms4g
- -Xmx4g
-
-**2.** The pipeline.workers setting determines how many threads to run for filter and output processing. This defaults to the number of the host's CPU cores.
+```sh
+ vim /etc/logstash/jvm.options
+```
+>> Xms4g
+>> Xmx4g
-Edit the following file then change pipeline.workes according to your CPU cores.
+2. The pipeline.workers setting determines how many threads to run for filter and output processing. This defaults to the number of the host's CPU cores.
-```vim /etc/logstash/logstash.yml```
+Edit the `logstash.yml` file with command `vim /etc/logstash/logstash.yml` then change pipeline.workes according to your CPU cores. Example:
-```pipeline.workers: 4```
+```sh
+ pipeline.workers: 4
+```
-**3.** Ensure that the consumer\_threads parameter matches the number of partitions that are specified in the Apache Kafka configuration. If you specify fewer partitions than consumer threads, some threads remain idle while they wait for an available partition.
+3. Ensure that the consumer\_threads parameter matches the number of partitions that are specified in the Apache Kafka configuration. If you specify fewer partitions than consumer threads, some threads remain idle while they wait for an available partition.
-```/etc/logstash/conf.d/logstash.conf```
+```sh
+ /etc/logstash/conf.d/logstash.conf
```
+```echo
input {
kafka {
bootstrap_servers =>` "kafka_ip:9092"
client_id =>` "logstash"
group_id =>` "logstash"
consumer_threads =>` 4
+ ...
+ }
+ }
```
-You can find out how many partitions Kafka has by following the command below. And you can equate the number of consumer\_threads to the number of partitions.
-```./kafka-topics.sh --describe --zookeeper 127.0.0.1:2181 --topic ams-instance-stats```
+- You can find out how many partitions Kafka has by following the command below. And you can equate the number of consumer threads to the number of partitions.
-If you want to increase the partition number in Kafka, you can use the following command.
+```sh
+ ./kafka-topics.sh --describe --zookeeper 127.0.0.1:2181 --topic ams-instance-stats
+```
-```./kafka-topics.sh --zookeeper 127.0.0.1:2181 --alter --topic ams-instance-stats --partitions 4```
+- If you want to increase the partition number in Kafka, you can use the following command.
-**4.** Comment the setting for syslog logging ```stdout { codec =>` rubydebug }``` from /etc/logstash/conf.d/logstash.conf file.
+```sh
+ ./kafka-topics.sh --zookeeper 127.0.0.1:2181 --alter --topic ams-instance-stats --partitions 4
```
+
+4. Comment the setting for syslog logging `stdout { codec => rubydebug }` from `/etc/logstash/conf.d/logstash.conf` file.
+```echo
input {
kafka {
bootstrap_servers =>` "kafka_ip:9092"
@@ -514,8 +547,12 @@ If you want to increase the partition number in Kafka, you can use the following
# stdout { codec =>` rubydebug }
}
```
-Finally, restart logstash and kafka service.
-```systemctl restart logstash && systemctl restart kafka```
+- Finally, restart logstash and kafka service.
+
+```sh
+ systemctl restart logstash && systemctl restart kafka
+```
-This is the whole setup of monitoring Ant Media Servers. If you have any questions, please just drop a line to contact (at) antmedia.io
+This is the whole setup of monitoring Ant Media Servers.
+If you have any questions, please just drop a line to contact@antmedia.io
diff --git a/docs/guides/publish-live-stream/playlist/creating-playlist.md b/docs/guides/publish-live-stream/playlist/creating-playlist.md
index c11403c7..a1c67c0a 100644
--- a/docs/guides/publish-live-stream/playlist/creating-playlist.md
+++ b/docs/guides/publish-live-stream/playlist/creating-playlist.md
@@ -9,11 +9,11 @@ It is very simple to create a playlist from the Ant Media Server dashboard by fo
## VoD files
-In order to create a playlist, we need to have a set of VoD files that will be used as playlist items. Therefore, as the first step, we will upload some VoD files to the Ant Media Server.
+To create a playlist, we need to have a set of VoD files that will be used as playlist items. Therefore, as the first step, we will upload some VoD files to the Ant Media Server.
### Login to your Ant Media Server Dashboard
-Login to your Ant Media Server Web Panel/dashboard. The url is like this: `https://YOUR_ANT_MEDIA_SERVER:5443/`
+Login to your Ant Media Server Web Panel/dashboard. The URL is like this: `https://YOUR_ANT_MEDIA_SERVER:5443/`
![image.png](@site/static/img/publish-live-stream/playlist/webpanel.png)
@@ -30,7 +30,7 @@ Login to your Ant Media Server Web Panel/dashboard. The url is like this: `https
Now we can upload the VoD files that we want to stream with the playlist.
-- Click on `Upload VoD` tab and then click on `Choose File` to select the files you want to upload. For this demonstration, I will upload three VoD files.
+- Click on the `Upload VoD` tab and then click on `Choose File` to select the files you want to upload. For this demonstration, I will upload three VoD files.
![image.png](@site/static/img/publish-live-stream/playlist/vod-upload.png)
@@ -52,7 +52,7 @@ Here is the curl sample:
curl -X POST -F "file=@test.mp4;type=video/*" http://localhost:5080/WebRTCAppEE/rest/v2/vods/create?name=test.mp4
```
-The uploaded file will be located in `antmedia/webapps/APP-NAME/streams` directory. MP4 file name will be changed to a random VOD ID, which you can find in the VOD section of the web panel application page.
+The uploaded file will be located in `antmedia/webapps/APP-NAME/streams` directory. The MP4 file name will be changed to a random VOD ID, which you can find in the VOD section of the web panel application page.
You can use the [Get VOD list](https://antmedia.io/rest/#/default/getVodList) rest API call to get the VOD file list from the database.
@@ -72,41 +72,106 @@ http://localhost:5080/WebRTCAppEE/streams/722484094956241856650105.mp4
Now that we have the VoD files ready, we will create the playlist with these VoD files as the playlist items.
-### Get the VoD URL
+- Go to the `Live Streams` section, click `New Live Stream`, and then select `Playlist` from the drop-down menu.
-- The sample path of a VoD file is like `http(s)://ams-server-urlPort/LiveApp/streams/vod_id.mp4`
-- In order to get the VOD URL, click on the hamburger icon, which is located at the right side of the screen and then click `Copy VoD URL`
+![image.png](@site/static/img/publish-live-stream/playlist/playlist.png)
+
+- Name your playlist, and click on `Add Playlist Item`. Under the dropdown menu, there are two options.
+
+1. **Add URL Directly**
+2. **Add From VODs**
+
+![add-playlist-item-01](https://github.com/user-attachments/assets/7b292014-d319-4a5e-8d3d-b5f388a07bc3)
+
+- Let's discuss both options and you can use any of these options based on your convenience.
-![image.png](@site/static/img/publish-live-stream/playlist/vod-url.png)
+### Add URL Directly
+If you have the VoD URL handy or are adding external VoDs, you can use this option.
-- Now we have the VoDs accessible through the below links
+#### Get the VoD URL
+
+- The sample path of a VoD file uploaded to the Ant Media Server VoD section is like `http(s)://ams-server-url:Port/LiveApp/streams/vod_id.mp4`
+
+- To get the VOD URL, click on the hamburger icon, which is located on the right side of the screen, and then click `Copy VoD URL`
+
+![copy-vod](https://github.com/user-attachments/assets/2693c0db-006c-4a04-ba72-f6835e950565)
+
+- Now we have the VoDs accessible through the links below.
```
-http://13.201.79.224:5080/LiveApp/streams/111716684850426702820750.mp4
-http://13.201.79.224:5080/LiveApp/streams/618712696735204930650663.mp4
-http://13.201.79.224:5080/LiveApp/streams/716674157649310868227159.mp4
+http://localhost:5080/LiveApp/streams/044283659243035008593467.mp4
+http://localhost:5080/LiveApp/streams/127700726123231884567831.mp4
```
-### Let's create the Playlist
+- Add all the playlist items and then click `Create`.
-- Go to `Live Streams` section, and click on `New Live Stream` and then select `Playlist` from the drop-down menu.
+- The `stream Id` field is not mandatory but you can put your streamId.
-![image.png](@site/static/img/publish-live-stream/playlist/playlist.png)
+![Screenshot](https://github.com/user-attachments/assets/44d98efc-805f-4378-83f1-e690e107bea2)
+
+- The playlist is created and it is offline by default.
+
+- Click on the `Start Broadcast` to start streaming of the playlist.
+
+![start-playlist](https://github.com/user-attachments/assets/1b9efce8-2a6f-4587-b9b8-b99bb86c685b)
+
+- Congratulations! The playlist is successfully created and running.
+
+![playlist-streaming](https://github.com/user-attachments/assets/44ef7735-163e-4105-a179-ac1b2b22bfeb)
+
+### Add From VODs
+This option is more useful if all the VoD files you want to stream are on your Ant Media Server itself under the VoD section.
-- Name your playlist, click on `Add Playlist Item`, add all the playlist items and then click `Create`.
-- The `stream Id` field is not mandatory but you can put your own streamId.
+![add-from-vod](https://github.com/user-attachments/assets/a430d1b8-36a3-4a14-9c1c-4e69265ff076)
-![image.png](@site/static/img/publish-live-stream/playlist/playlist-items.png)
+- You can search for the uploaded VoD items with their name or VOD Id and click on the `Add` option.
+
+![seraching-vods](https://github.com/user-attachments/assets/8f6d720f-8019-45e9-b59a-23e36a59f27a)
+
+- After you have added all the VoD files, click Create.
+
+![vods-added](https://github.com/user-attachments/assets/a29bf31b-d548-4317-b81c-90ac8bf3d3fa)
- The playlist is created and it is offline by default.
+![created-playlist](https://github.com/user-attachments/assets/44228147-2564-44b8-a38a-10682d943477)
+
+- Playlist length shows the overall duration of the playlist with the added items.
+
+- You can edit the playlist and the items as needed.
+
+![edit-playlist](https://github.com/user-attachments/assets/c2a68cb0-982f-4b2e-bc0a-10f3eae7ca2a)
+
- Click on the `Start Broadcast` to start streaming of the playlist.
-![image.png](@site/static/img/publish-live-stream/playlist/start-playlist.png)
+![start-playlist](https://github.com/user-attachments/assets/1b9efce8-2a6f-4587-b9b8-b99bb86c685b)
- Congratulations! The playlist is successfully created and running.
-![image.png](@site/static/img/publish-live-stream/playlist/playlist-running.png)
+![playlist-streaming](https://github.com/user-attachments/assets/44ef7735-163e-4105-a179-ac1b2b22bfeb)
+
+## Scheduling Playlist
+Starting from Ant Media server version 2.10.0, you can schedule your playlist to start at any time in advance with the ```Schedule to Start Automatically``` option and control the start of your playlist according to your schedule.
+
+- This can be set at both times: When creating the playlist as well as after the playlist is created.
+
+![schedule-while-creating](https://github.com/user-attachments/assets/334be0d7-c2c2-4a9c-b9d8-bc01d34513bd)
+
+- Click `Schedule to Start Automatically`, and choose the date from the calendar.
+
+![choose-date](https://github.com/user-attachments/assets/950805ae-d04f-44e0-9857-fef3f7f6b698)
+
+- Set the exact time when you want the playlist to be started and save.
+
+![choose-time](https://github.com/user-attachments/assets/9f9f0985-2875-4fcb-ab4b-2ed3d1941a12)
+
+:::important
+Please make sure that your server time is in sync with the NTP.
+:::
+
+- At the scheduled time, your playlist will start :)
+
+![playlist-scheduled](https://github.com/user-attachments/assets/b8471730-eba7-42d2-afcb-f9345072551c)
## Optimizing Playlist for Better Playback Experience
@@ -120,13 +185,13 @@ Now that we have learned how to create a playlist, let's make some configuration
![image.png](@site/static/img/publish-live-stream/playlist/hls-settings.png)
-- Scroll to the bottom and Click `Save` button to save the changes.
+- Scroll to the bottom and Click the `Save` button to save the changes.
- Scroll to the top and choose the settings mode from `Basic` to `Advanced`
![image.png](@site/static/img/publish-live-stream/playlist/advanced-settings.png)
-- Find `hlsflags` and change its value to `delete_segments+append_list+omit_endlist`
+- Find `hls flags` and change its value to `delete_segments+append_list+omit_endlist`
![image.png](@site/static/img/publish-live-stream/playlist/hls-flags.png)
diff --git a/static/img/126611-CMAF-Fig1-ORG.jpg b/static/img/126611-CMAF-Fig1-ORG.jpg
index f9a3abb0..7efaddee 100644
Binary files a/static/img/126611-CMAF-Fig1-ORG.jpg and b/static/img/126611-CMAF-Fig1-ORG.jpg differ
diff --git a/static/img/138691164-04d3f2c7-f37a-4acd-a590-2af05477e256.png b/static/img/138691164-04d3f2c7-f37a-4acd-a590-2af05477e256.png
index c5fae0b2..9558f4c3 100644
Binary files a/static/img/138691164-04d3f2c7-f37a-4acd-a590-2af05477e256.png and b/static/img/138691164-04d3f2c7-f37a-4acd-a590-2af05477e256.png differ
diff --git a/static/img/138696358-9d967d80-343b-4717-a587-1e934e63d5e3.png b/static/img/138696358-9d967d80-343b-4717-a587-1e934e63d5e3.png
index dd3ba527..9f0b44be 100644
Binary files a/static/img/138696358-9d967d80-343b-4717-a587-1e934e63d5e3.png and b/static/img/138696358-9d967d80-343b-4717-a587-1e934e63d5e3.png differ
diff --git a/static/img/138696730-9acb0de6-0c8d-42c4-9303-fd7f8a388aaf.png b/static/img/138696730-9acb0de6-0c8d-42c4-9303-fd7f8a388aaf.png
index c6c5409c..9bb0b6af 100644
Binary files a/static/img/138696730-9acb0de6-0c8d-42c4-9303-fd7f8a388aaf.png and b/static/img/138696730-9acb0de6-0c8d-42c4-9303-fd7f8a388aaf.png differ
diff --git a/static/img/138704308-6dccbd55-1bff-40e3-9c67-44fc23fc2b50.png b/static/img/138704308-6dccbd55-1bff-40e3-9c67-44fc23fc2b50.png
index 5a1308cc..2126fb3a 100644
Binary files a/static/img/138704308-6dccbd55-1bff-40e3-9c67-44fc23fc2b50.png and b/static/img/138704308-6dccbd55-1bff-40e3-9c67-44fc23fc2b50.png differ
diff --git a/static/img/138705765-b0a913c8-25c2-4ce7-89d5-68a664694532.png b/static/img/138705765-b0a913c8-25c2-4ce7-89d5-68a664694532.png
index 0b273d52..3a188c31 100644
Binary files a/static/img/138705765-b0a913c8-25c2-4ce7-89d5-68a664694532.png and b/static/img/138705765-b0a913c8-25c2-4ce7-89d5-68a664694532.png differ
diff --git a/static/img/138707266-883326ee-a3b6-4e58-a265-3e2844c97ef0.png b/static/img/138707266-883326ee-a3b6-4e58-a265-3e2844c97ef0.png
index fd9e8c48..7ffbe2e1 100644
Binary files a/static/img/138707266-883326ee-a3b6-4e58-a265-3e2844c97ef0.png and b/static/img/138707266-883326ee-a3b6-4e58-a265-3e2844c97ef0.png differ
diff --git a/static/img/138707768-2fd87a70-9ccd-4c66-9c96-fa33ef5fe781.png b/static/img/138707768-2fd87a70-9ccd-4c66-9c96-fa33ef5fe781.png
index ca8938ac..d9c7340e 100644
Binary files a/static/img/138707768-2fd87a70-9ccd-4c66-9c96-fa33ef5fe781.png and b/static/img/138707768-2fd87a70-9ccd-4c66-9c96-fa33ef5fe781.png differ
diff --git a/static/img/138709249-aa18beda-a575-42d0-981a-b62758b8df10.png b/static/img/138709249-aa18beda-a575-42d0-981a-b62758b8df10.png
index 61e02846..dfcfed2b 100644
Binary files a/static/img/138709249-aa18beda-a575-42d0-981a-b62758b8df10.png and b/static/img/138709249-aa18beda-a575-42d0-981a-b62758b8df10.png differ
diff --git a/static/img/152640815-81636a15-dc3e-44d5-8d90-4cff72cac14c(1).png b/static/img/152640815-81636a15-dc3e-44d5-8d90-4cff72cac14c(1).png
index 880113f4..f5b4beff 100644
Binary files a/static/img/152640815-81636a15-dc3e-44d5-8d90-4cff72cac14c(1).png and b/static/img/152640815-81636a15-dc3e-44d5-8d90-4cff72cac14c(1).png differ
diff --git a/static/img/152640816-06bcfe6e-35ed-4efe-9fda-bacb60826a82(1).png b/static/img/152640816-06bcfe6e-35ed-4efe-9fda-bacb60826a82(1).png
index 4aee7379..38da192d 100644
Binary files a/static/img/152640816-06bcfe6e-35ed-4efe-9fda-bacb60826a82(1).png and b/static/img/152640816-06bcfe6e-35ed-4efe-9fda-bacb60826a82(1).png differ
diff --git a/static/img/152640818-2b08b818-fb6e-428a-a2d7-aeba6b32be51(1).png b/static/img/152640818-2b08b818-fb6e-428a-a2d7-aeba6b32be51(1).png
index 9a3ec286..702538dc 100644
Binary files a/static/img/152640818-2b08b818-fb6e-428a-a2d7-aeba6b32be51(1).png and b/static/img/152640818-2b08b818-fb6e-428a-a2d7-aeba6b32be51(1).png differ
diff --git a/static/img/152640820-c9240fa7-9a40-40ed-9d6b-4c0ed3a0b2e1.png b/static/img/152640820-c9240fa7-9a40-40ed-9d6b-4c0ed3a0b2e1.png
index fb0bef3f..e44e0a5f 100644
Binary files a/static/img/152640820-c9240fa7-9a40-40ed-9d6b-4c0ed3a0b2e1.png and b/static/img/152640820-c9240fa7-9a40-40ed-9d6b-4c0ed3a0b2e1.png differ
diff --git a/static/img/152640822-5719e6e4-fab7-49f2-9bf6-3986d51b9f6d.png b/static/img/152640822-5719e6e4-fab7-49f2-9bf6-3986d51b9f6d.png
index 37867466..d6439c2c 100644
Binary files a/static/img/152640822-5719e6e4-fab7-49f2-9bf6-3986d51b9f6d.png and b/static/img/152640822-5719e6e4-fab7-49f2-9bf6-3986d51b9f6d.png differ
diff --git a/static/img/152640823-c87ded9e-aec1-4abb-8f3b-e9442679c28a.png b/static/img/152640823-c87ded9e-aec1-4abb-8f3b-e9442679c28a.png
index adcb363f..32228e86 100644
Binary files a/static/img/152640823-c87ded9e-aec1-4abb-8f3b-e9442679c28a.png and b/static/img/152640823-c87ded9e-aec1-4abb-8f3b-e9442679c28a.png differ
diff --git a/static/img/152640824-10f87703-9398-412c-ab07-7b773629e283.png b/static/img/152640824-10f87703-9398-412c-ab07-7b773629e283.png
index 21f022a9..2f33986b 100644
Binary files a/static/img/152640824-10f87703-9398-412c-ab07-7b773629e283.png and b/static/img/152640824-10f87703-9398-412c-ab07-7b773629e283.png differ
diff --git a/static/img/152640825-06b86d38-f024-4ca9-b545-78d38ad87abe.png b/static/img/152640825-06b86d38-f024-4ca9-b545-78d38ad87abe.png
index 93442be6..4b6a44eb 100644
Binary files a/static/img/152640825-06b86d38-f024-4ca9-b545-78d38ad87abe.png and b/static/img/152640825-06b86d38-f024-4ca9-b545-78d38ad87abe.png differ
diff --git a/static/img/152641240-633d9b3a-179d-4b9e-b0c5-2d1e12f9c7b7.png b/static/img/152641240-633d9b3a-179d-4b9e-b0c5-2d1e12f9c7b7.png
index 162a4329..15cda521 100644
Binary files a/static/img/152641240-633d9b3a-179d-4b9e-b0c5-2d1e12f9c7b7.png and b/static/img/152641240-633d9b3a-179d-4b9e-b0c5-2d1e12f9c7b7.png differ
diff --git a/static/img/152642513-780c642f-a689-4923-a160-dc88ae7a1afb.png b/static/img/152642513-780c642f-a689-4923-a160-dc88ae7a1afb.png
index 4018faa5..59e8fecb 100644
Binary files a/static/img/152642513-780c642f-a689-4923-a160-dc88ae7a1afb.png and b/static/img/152642513-780c642f-a689-4923-a160-dc88ae7a1afb.png differ
diff --git a/static/img/152643648-16a80676-25c5-4fe5-9517-0f46624a4b36.png b/static/img/152643648-16a80676-25c5-4fe5-9517-0f46624a4b36.png
index 5eed0f02..f6cb2344 100644
Binary files a/static/img/152643648-16a80676-25c5-4fe5-9517-0f46624a4b36.png and b/static/img/152643648-16a80676-25c5-4fe5-9517-0f46624a4b36.png differ
diff --git a/static/img/152643848-f5a0cfb9-5682-40fb-957d-3649e8315f11.png b/static/img/152643848-f5a0cfb9-5682-40fb-957d-3649e8315f11.png
index bc143673..ca9e5421 100644
Binary files a/static/img/152643848-f5a0cfb9-5682-40fb-957d-3649e8315f11.png and b/static/img/152643848-f5a0cfb9-5682-40fb-957d-3649e8315f11.png differ
diff --git a/static/img/152644118-b5f72bfe-8c4a-4ef3-b2b0-aafcf67a577d.png b/static/img/152644118-b5f72bfe-8c4a-4ef3-b2b0-aafcf67a577d.png
index 8b4b06b9..a6773070 100644
Binary files a/static/img/152644118-b5f72bfe-8c4a-4ef3-b2b0-aafcf67a577d.png and b/static/img/152644118-b5f72bfe-8c4a-4ef3-b2b0-aafcf67a577d.png differ
diff --git a/static/img/152644315-f2c607a7-a1ec-4b33-82bf-ba1ff05e2d18.png b/static/img/152644315-f2c607a7-a1ec-4b33-82bf-ba1ff05e2d18.png
index 7d1df0fb..a37d01d1 100644
Binary files a/static/img/152644315-f2c607a7-a1ec-4b33-82bf-ba1ff05e2d18.png and b/static/img/152644315-f2c607a7-a1ec-4b33-82bf-ba1ff05e2d18.png differ
diff --git a/static/img/152644434-9a3edc0e-456f-4eb7-a616-0820038e6aa8.png b/static/img/152644434-9a3edc0e-456f-4eb7-a616-0820038e6aa8.png
index d2d657f1..39213c71 100644
Binary files a/static/img/152644434-9a3edc0e-456f-4eb7-a616-0820038e6aa8.png and b/static/img/152644434-9a3edc0e-456f-4eb7-a616-0820038e6aa8.png differ
diff --git a/static/img/152644662-62b0756a-454b-465c-a2e4-f8d0a5e2789c.png b/static/img/152644662-62b0756a-454b-465c-a2e4-f8d0a5e2789c.png
index a79ccb2a..b26fc2dc 100644
Binary files a/static/img/152644662-62b0756a-454b-465c-a2e4-f8d0a5e2789c.png and b/static/img/152644662-62b0756a-454b-465c-a2e4-f8d0a5e2789c.png differ
diff --git a/static/img/152644742-73936897-0ff1-4e39-894a-c10f0319de4b.png b/static/img/152644742-73936897-0ff1-4e39-894a-c10f0319de4b.png
index ee46959c..1cfd0530 100644
Binary files a/static/img/152644742-73936897-0ff1-4e39-894a-c10f0319de4b.png and b/static/img/152644742-73936897-0ff1-4e39-894a-c10f0319de4b.png differ
diff --git a/static/img/152646071-b22ea083-c9d9-43ae-a98c-424f8a566a51.png b/static/img/152646071-b22ea083-c9d9-43ae-a98c-424f8a566a51.png
index 4d01562d..6d32605e 100644
Binary files a/static/img/152646071-b22ea083-c9d9-43ae-a98c-424f8a566a51.png and b/static/img/152646071-b22ea083-c9d9-43ae-a98c-424f8a566a51.png differ
diff --git a/static/img/152646691-d76e78b8-7009-4130-8b2f-450062a55998.png b/static/img/152646691-d76e78b8-7009-4130-8b2f-450062a55998.png
index 8c58aec0..4875d6c1 100644
Binary files a/static/img/152646691-d76e78b8-7009-4130-8b2f-450062a55998.png and b/static/img/152646691-d76e78b8-7009-4130-8b2f-450062a55998.png differ
diff --git a/static/img/152647166-ae859419-7bc9-49ab-871f-392fc5fc7cf1.png b/static/img/152647166-ae859419-7bc9-49ab-871f-392fc5fc7cf1.png
index d9ad10bb..0c8cdfd5 100644
Binary files a/static/img/152647166-ae859419-7bc9-49ab-871f-392fc5fc7cf1.png and b/static/img/152647166-ae859419-7bc9-49ab-871f-392fc5fc7cf1.png differ
diff --git a/static/img/152647506-8eb95d60-e12b-4a1a-b9cc-3d5fd00c6fe0.png b/static/img/152647506-8eb95d60-e12b-4a1a-b9cc-3d5fd00c6fe0.png
index 7029c1ee..fdf56fe4 100644
Binary files a/static/img/152647506-8eb95d60-e12b-4a1a-b9cc-3d5fd00c6fe0.png and b/static/img/152647506-8eb95d60-e12b-4a1a-b9cc-3d5fd00c6fe0.png differ
diff --git a/static/img/152648356-a6f8a563-5edd-4242-8e83-4686e8aa6f43.png b/static/img/152648356-a6f8a563-5edd-4242-8e83-4686e8aa6f43.png
index 5a3ed499..567f1845 100644
Binary files a/static/img/152648356-a6f8a563-5edd-4242-8e83-4686e8aa6f43.png and b/static/img/152648356-a6f8a563-5edd-4242-8e83-4686e8aa6f43.png differ
diff --git a/static/img/152652226-86f30378-977e-4b53-8192-21f9c27d8b50.png b/static/img/152652226-86f30378-977e-4b53-8192-21f9c27d8b50.png
index ce6c4958..86695936 100644
Binary files a/static/img/152652226-86f30378-977e-4b53-8192-21f9c27d8b50.png and b/static/img/152652226-86f30378-977e-4b53-8192-21f9c27d8b50.png differ
diff --git a/static/img/1_Open_WebRTCAppEE_and_Let_Browser_Access_Cam_and_Mic.jpg b/static/img/1_Open_WebRTCAppEE_and_Let_Browser_Access_Cam_and_Mic.jpg
index 0cbf1826..4840bfdf 100644
Binary files a/static/img/1_Open_WebRTCAppEE_and_Let_Browser_Access_Cam_and_Mic.jpg and b/static/img/1_Open_WebRTCAppEE_and_Let_Browser_Access_Cam_and_Mic.jpg differ
diff --git a/static/img/2_Press_Publish_Button.jpg b/static/img/2_Press_Publish_Button.jpg
index 281aca1b..907df19d 100644
Binary files a/static/img/2_Press_Publish_Button.jpg and b/static/img/2_Press_Publish_Button.jpg differ
diff --git a/static/img/3_Go_to_Play_Page.jpg b/static/img/3_Go_to_Play_Page.jpg
index e02cdeb2..7a68f6cd 100644
Binary files a/static/img/3_Go_to_Play_Page.jpg and b/static/img/3_Go_to_Play_Page.jpg differ
diff --git a/static/img/4_Press_Start_Play_Button.jpg b/static/img/4_Press_Start_Play_Button.jpg
index dc9b9238..49989e10 100644
Binary files a/static/img/4_Press_Start_Play_Button.jpg and b/static/img/4_Press_Start_Play_Button.jpg differ
diff --git a/static/img/68747470733a2f2f616e746d656469612e696f2f77702d636f6e74656e742f75706c6f6164732f323031382f31312f776562686f6f6b732d333030783237332e706e67.png b/static/img/68747470733a2f2f616e746d656469612e696f2f77702d636f6e74656e742f75706c6f6164732f323031382f31312f776562686f6f6b732d333030783237332e706e67.png
index e77afaa6..aca602bb 100644
Binary files a/static/img/68747470733a2f2f616e746d656469612e696f2f77702d636f6e74656e742f75706c6f6164732f323031382f31312f776562686f6f6b732d333030783237332e706e67.png and b/static/img/68747470733a2f2f616e746d656469612e696f2f77702d636f6e74656e742f75706c6f6164732f323031382f31312f776562686f6f6b732d333030783237332e706e67.png differ
diff --git a/static/img/68747470733a2f2f616e746d656469612e696f2f77702d636f6e74656e742f75706c6f6164732f323032312f30342f4157532d636c75737465722d312e706e67.png b/static/img/68747470733a2f2f616e746d656469612e696f2f77702d636f6e74656e742f75706c6f6164732f323032312f30342f4157532d636c75737465722d312e706e67.png
index 13295398..d861c14a 100644
Binary files a/static/img/68747470733a2f2f616e746d656469612e696f2f77702d636f6e74656e742f75706c6f6164732f323032312f30342f4157532d636c75737465722d312e706e67.png and b/static/img/68747470733a2f2f616e746d656469612e696f2f77702d636f6e74656e742f75706c6f6164732f323032312f30342f4157532d636c75737465722d312e706e67.png differ
diff --git a/static/img/92497488-14bcdf00-f202-11ea-9790-b9afcbe0f456.png b/static/img/92497488-14bcdf00-f202-11ea-9790-b9afcbe0f456.png
index 22a0fbf0..9e99d7fe 100644
Binary files a/static/img/92497488-14bcdf00-f202-11ea-9790-b9afcbe0f456.png and b/static/img/92497488-14bcdf00-f202-11ea-9790-b9afcbe0f456.png differ
diff --git a/static/img/95338115-41285180-08bb-11eb-8e61-d8a63e564cf5.png b/static/img/95338115-41285180-08bb-11eb-8e61-d8a63e564cf5.png
index 3848a691..284da123 100644
Binary files a/static/img/95338115-41285180-08bb-11eb-8e61-d8a63e564cf5.png and b/static/img/95338115-41285180-08bb-11eb-8e61-d8a63e564cf5.png differ
diff --git a/static/img/95338335-7df44880-08bb-11eb-839c-5f9a443ec6bf.png b/static/img/95338335-7df44880-08bb-11eb-839c-5f9a443ec6bf.png
index eac5c85a..f4644f27 100644
Binary files a/static/img/95338335-7df44880-08bb-11eb-839c-5f9a443ec6bf.png and b/static/img/95338335-7df44880-08bb-11eb-839c-5f9a443ec6bf.png differ
diff --git a/static/img/95346239-476efb80-08c4-11eb-9eb9-a408cd47fd43.png b/static/img/95346239-476efb80-08c4-11eb-9eb9-a408cd47fd43.png
index a213d460..f39915ec 100644
Binary files a/static/img/95346239-476efb80-08c4-11eb-9eb9-a408cd47fd43.png and b/static/img/95346239-476efb80-08c4-11eb-9eb9-a408cd47fd43.png differ
diff --git a/static/img/95346595-b51b2780-08c4-11eb-8d1a-95b5b2c40bac.png b/static/img/95346595-b51b2780-08c4-11eb-8d1a-95b5b2c40bac.png
index e67c47d3..7ff17567 100644
Binary files a/static/img/95346595-b51b2780-08c4-11eb-8d1a-95b5b2c40bac.png and b/static/img/95346595-b51b2780-08c4-11eb-8d1a-95b5b2c40bac.png differ
diff --git a/static/img/95346851-eeec2e00-08c4-11eb-835c-a07e29c7cd08.png b/static/img/95346851-eeec2e00-08c4-11eb-835c-a07e29c7cd08.png
index 250be006..13f5298f 100644
Binary files a/static/img/95346851-eeec2e00-08c4-11eb-835c-a07e29c7cd08.png and b/static/img/95346851-eeec2e00-08c4-11eb-835c-a07e29c7cd08.png differ
diff --git a/static/img/95835836-639ced80-0d47-11eb-8ad3-cbfa8645ae99.jpg b/static/img/95835836-639ced80-0d47-11eb-8ad3-cbfa8645ae99.jpg
index 82007b43..65a17e99 100644
Binary files a/static/img/95835836-639ced80-0d47-11eb-8ad3-cbfa8645ae99.jpg and b/static/img/95835836-639ced80-0d47-11eb-8ad3-cbfa8645ae99.jpg differ
diff --git a/static/img/95836048-a52d9880-0d47-11eb-85e4-4f07d5d2e529.jpeg b/static/img/95836048-a52d9880-0d47-11eb-85e4-4f07d5d2e529.jpeg
index 66259163..089b213b 100644
Binary files a/static/img/95836048-a52d9880-0d47-11eb-85e4-4f07d5d2e529.jpeg and b/static/img/95836048-a52d9880-0d47-11eb-85e4-4f07d5d2e529.jpeg differ
diff --git a/static/img/95836553-3ef54580-0d48-11eb-8110-b28cf5e4087c.jpg b/static/img/95836553-3ef54580-0d48-11eb-8110-b28cf5e4087c.jpg
index 38c96a24..a88b0a34 100644
Binary files a/static/img/95836553-3ef54580-0d48-11eb-8110-b28cf5e4087c.jpg and b/static/img/95836553-3ef54580-0d48-11eb-8110-b28cf5e4087c.jpg differ
diff --git a/static/img/AP658325161480_131.jpg b/static/img/AP658325161480_131.jpg
index 220af73e..615fa932 100644
Binary files a/static/img/AP658325161480_131.jpg and b/static/img/AP658325161480_131.jpg differ
diff --git a/static/img/Ant-Media-Logo-dark.png b/static/img/Ant-Media-Logo-dark.png
index 14024aba..e9a8b88c 100644
Binary files a/static/img/Ant-Media-Logo-dark.png and b/static/img/Ant-Media-Logo-dark.png differ
diff --git a/static/img/Ant-Media-Logo-light.png b/static/img/Ant-Media-Logo-light.png
index 19905b2a..e24d82f5 100644
Binary files a/static/img/Ant-Media-Logo-light.png and b/static/img/Ant-Media-Logo-light.png differ
diff --git a/static/img/AntMedia-CloudFormation-1.png b/static/img/AntMedia-CloudFormation-1.png
index b9af5b51..b3ff0766 100644
Binary files a/static/img/AntMedia-CloudFormation-1.png and b/static/img/AntMedia-CloudFormation-1.png differ
diff --git a/static/img/AntMedia-CloudFormation-10(1).png b/static/img/AntMedia-CloudFormation-10(1).png
index 25af508a..d4adfac6 100644
Binary files a/static/img/AntMedia-CloudFormation-10(1).png and b/static/img/AntMedia-CloudFormation-10(1).png differ
diff --git a/static/img/AntMedia-CloudFormation-2.png b/static/img/AntMedia-CloudFormation-2.png
index a1348e62..cf1a35b6 100644
Binary files a/static/img/AntMedia-CloudFormation-2.png and b/static/img/AntMedia-CloudFormation-2.png differ
diff --git a/static/img/AntMedia-CloudFormation-3.png b/static/img/AntMedia-CloudFormation-3.png
index ffd0517c..e1392da2 100644
Binary files a/static/img/AntMedia-CloudFormation-3.png and b/static/img/AntMedia-CloudFormation-3.png differ
diff --git a/static/img/AntMedia-CloudFormation-4-1.png b/static/img/AntMedia-CloudFormation-4-1.png
index f48c20bc..758cb64e 100644
Binary files a/static/img/AntMedia-CloudFormation-4-1.png and b/static/img/AntMedia-CloudFormation-4-1.png differ
diff --git a/static/img/AntMedia-CloudFormation-4.png b/static/img/AntMedia-CloudFormation-4.png
index 8a4c1903..b4f2bf0e 100644
Binary files a/static/img/AntMedia-CloudFormation-4.png and b/static/img/AntMedia-CloudFormation-4.png differ
diff --git a/static/img/AntMedia-CloudFormation-5.png b/static/img/AntMedia-CloudFormation-5.png
index 2aba4e12..f0345e26 100644
Binary files a/static/img/AntMedia-CloudFormation-5.png and b/static/img/AntMedia-CloudFormation-5.png differ
diff --git a/static/img/AntMedia-CloudFormation-6-1.png b/static/img/AntMedia-CloudFormation-6-1.png
index b736642c..bfba41c9 100644
Binary files a/static/img/AntMedia-CloudFormation-6-1.png and b/static/img/AntMedia-CloudFormation-6-1.png differ
diff --git a/static/img/AntMedia-CloudFormation-6.png b/static/img/AntMedia-CloudFormation-6.png
index 36d3903b..2589344d 100644
Binary files a/static/img/AntMedia-CloudFormation-6.png and b/static/img/AntMedia-CloudFormation-6.png differ
diff --git a/static/img/AntMedia-CloudFormation-7.png b/static/img/AntMedia-CloudFormation-7.png
index d52f92d2..691c9919 100644
Binary files a/static/img/AntMedia-CloudFormation-7.png and b/static/img/AntMedia-CloudFormation-7.png differ
diff --git a/static/img/AntMedia-CloudFormation-8.png b/static/img/AntMedia-CloudFormation-8.png
index 3248a9e4..718389cc 100644
Binary files a/static/img/AntMedia-CloudFormation-8.png and b/static/img/AntMedia-CloudFormation-8.png differ
diff --git a/static/img/AntMedia-CloudFormation-9.png b/static/img/AntMedia-CloudFormation-9.png
index 0b1c5aa1..fc85f46c 100644
Binary files a/static/img/AntMedia-CloudFormation-9.png and b/static/img/AntMedia-CloudFormation-9.png differ
diff --git a/static/img/Atlas3.png b/static/img/Atlas3.png
index 83b631b1..8e934197 100644
Binary files a/static/img/Atlas3.png and b/static/img/Atlas3.png differ
diff --git a/static/img/HLSsegmentedvideodelivery.png b/static/img/HLSsegmentedvideodelivery.png
index 717c74f7..092ba4cf 100644
Binary files a/static/img/HLSsegmentedvideodelivery.png and b/static/img/HLSsegmentedvideodelivery.png differ
diff --git a/static/img/IMG_02A254033728-1(1).jpeg b/static/img/IMG_02A254033728-1(1).jpeg
index bea44ff6..2b0e8ee1 100644
Binary files a/static/img/IMG_02A254033728-1(1).jpeg and b/static/img/IMG_02A254033728-1(1).jpeg differ
diff --git a/static/img/IMG_2600ABC725B1-1.jpeg b/static/img/IMG_2600ABC725B1-1.jpeg
index e5d26266..d23c8c00 100644
Binary files a/static/img/IMG_2600ABC725B1-1.jpeg and b/static/img/IMG_2600ABC725B1-1.jpeg differ
diff --git a/static/img/IMG_61C65FD7D641-1.jpeg b/static/img/IMG_61C65FD7D641-1.jpeg
index 6db6f8d3..fcb69cbc 100644
Binary files a/static/img/IMG_61C65FD7D641-1.jpeg and b/static/img/IMG_61C65FD7D641-1.jpeg differ
diff --git a/static/img/IMG_634E4AB6B820-1.jpeg b/static/img/IMG_634E4AB6B820-1.jpeg
index 54b6819b..80b3b514 100644
Binary files a/static/img/IMG_634E4AB6B820-1.jpeg and b/static/img/IMG_634E4AB6B820-1.jpeg differ
diff --git a/static/img/IMG_7404B1521BFA-1.jpeg b/static/img/IMG_7404B1521BFA-1.jpeg
index 3a26b051..07e28fb1 100644
Binary files a/static/img/IMG_7404B1521BFA-1.jpeg and b/static/img/IMG_7404B1521BFA-1.jpeg differ
diff --git a/static/img/IMG_A2C7D0611FF7-1.jpeg b/static/img/IMG_A2C7D0611FF7-1.jpeg
index 3c2320d0..7c31ab67 100644
Binary files a/static/img/IMG_A2C7D0611FF7-1.jpeg and b/static/img/IMG_A2C7D0611FF7-1.jpeg differ
diff --git a/static/img/IMG_E70F9A26E9DD-1.jpeg b/static/img/IMG_E70F9A26E9DD-1.jpeg
index f2570435..709b29ca 100644
Binary files a/static/img/IMG_E70F9A26E9DD-1.jpeg and b/static/img/IMG_E70F9A26E9DD-1.jpeg differ
diff --git a/static/img/IMG_F1372DF3182B-1(2).jpeg b/static/img/IMG_F1372DF3182B-1(2).jpeg
index 6f426123..8ff939cf 100644
Binary files a/static/img/IMG_F1372DF3182B-1(2).jpeg and b/static/img/IMG_F1372DF3182B-1(2).jpeg differ
diff --git a/static/img/JWT_debugger_sample_for_web_panel_ant_media_server.png b/static/img/JWT_debugger_sample_for_web_panel_ant_media_server.png
index 034b689e..9c9cc47c 100644
Binary files a/static/img/JWT_debugger_sample_for_web_panel_ant_media_server.png and b/static/img/JWT_debugger_sample_for_web_panel_ant_media_server.png differ
diff --git a/static/img/OBS_Configuration.png b/static/img/OBS_Configuration.png
index 2ceefc21..559deda1 100644
Binary files a/static/img/OBS_Configuration.png and b/static/img/OBS_Configuration.png differ
diff --git a/static/img/Screen-Shot-2022-04-20-at-14.48.30-1024x811.png b/static/img/Screen-Shot-2022-04-20-at-14.48.30-1024x811.png
index c45c560f..a581995f 100644
Binary files a/static/img/Screen-Shot-2022-04-20-at-14.48.30-1024x811.png and b/static/img/Screen-Shot-2022-04-20-at-14.48.30-1024x811.png differ
diff --git a/static/img/Screenshot 2023-01-14 at 17.17.40.jpg b/static/img/Screenshot 2023-01-14 at 17.17.40.jpg
index 58f6dc3f..6e1be782 100644
Binary files a/static/img/Screenshot 2023-01-14 at 17.17.40.jpg and b/static/img/Screenshot 2023-01-14 at 17.17.40.jpg differ
diff --git a/static/img/Screenshot from 2022-04-04 16-48-00.png b/static/img/Screenshot from 2022-04-04 16-48-00.png
index c0a3f802..2c110665 100644
Binary files a/static/img/Screenshot from 2022-04-04 16-48-00.png and b/static/img/Screenshot from 2022-04-04 16-48-00.png differ
diff --git a/static/img/Screenshot from 2022-04-04 16-52-10.png b/static/img/Screenshot from 2022-04-04 16-52-10.png
index 1985a37b..88e17a2e 100644
Binary files a/static/img/Screenshot from 2022-04-04 16-52-10.png and b/static/img/Screenshot from 2022-04-04 16-52-10.png differ
diff --git a/static/img/Screenshot from 2022-04-04 16-58-52.png b/static/img/Screenshot from 2022-04-04 16-58-52.png
index 3dd7444b..5c42d6da 100644
Binary files a/static/img/Screenshot from 2022-04-04 16-58-52.png and b/static/img/Screenshot from 2022-04-04 16-58-52.png differ
diff --git a/static/img/Screenshot from 2022-04-04 17-03-51.png b/static/img/Screenshot from 2022-04-04 17-03-51.png
index 0e3f486d..363874d6 100644
Binary files a/static/img/Screenshot from 2022-04-04 17-03-51.png and b/static/img/Screenshot from 2022-04-04 17-03-51.png differ
diff --git a/static/img/Screenshot from 2022-04-04 17-15-43.png b/static/img/Screenshot from 2022-04-04 17-15-43.png
index 5439c45f..9334e61e 100644
Binary files a/static/img/Screenshot from 2022-04-04 17-15-43.png and b/static/img/Screenshot from 2022-04-04 17-15-43.png differ
diff --git a/static/img/Screenshot from 2022-04-04 17-18-06.png b/static/img/Screenshot from 2022-04-04 17-18-06.png
index 0db83ac0..6a386ddf 100644
Binary files a/static/img/Screenshot from 2022-04-04 17-18-06.png and b/static/img/Screenshot from 2022-04-04 17-18-06.png differ
diff --git a/static/img/Screenshot(44).png b/static/img/Screenshot(44).png
index e3516b98..4427ed10 100644
Binary files a/static/img/Screenshot(44).png and b/static/img/Screenshot(44).png differ
diff --git a/static/img/Screenshotfrom2022-04-04 16-19-31.png b/static/img/Screenshotfrom2022-04-04 16-19-31.png
index 8100a35b..e4b52432 100644
Binary files a/static/img/Screenshotfrom2022-04-04 16-19-31.png and b/static/img/Screenshotfrom2022-04-04 16-19-31.png differ
diff --git a/static/img/Simple_Architecture.png b/static/img/Simple_Architecture.png
index 3e4cf39e..bc0fe525 100644
Binary files a/static/img/Simple_Architecture.png and b/static/img/Simple_Architecture.png differ
diff --git a/static/img/Webhook-request1.png b/static/img/Webhook-request1.png
index 2fc9db3b..4ee2ff78 100644
Binary files a/static/img/Webhook-request1.png and b/static/img/Webhook-request1.png differ
diff --git a/static/img/abs.png b/static/img/abs.png
index 93669dbc..96d0f2bb 100644
Binary files a/static/img/abs.png and b/static/img/abs.png differ
diff --git a/static/img/adaptive-streaming/adaptive.png b/static/img/adaptive-streaming/adaptive.png
index 47689b06..8fd9c179 100644
Binary files a/static/img/adaptive-streaming/adaptive.png and b/static/img/adaptive-streaming/adaptive.png differ
diff --git a/static/img/adavanced-usage/using-nvidia-gpu/ams-multi-gpu.png b/static/img/adavanced-usage/using-nvidia-gpu/ams-multi-gpu.png
index cb0376da..44de5f66 100644
Binary files a/static/img/adavanced-usage/using-nvidia-gpu/ams-multi-gpu.png and b/static/img/adavanced-usage/using-nvidia-gpu/ams-multi-gpu.png differ
diff --git a/static/img/adavanced-usage/using-nvidia-gpu/cuda-11.8.png b/static/img/adavanced-usage/using-nvidia-gpu/cuda-11.8.png
index 455c31c2..4dfcf660 100644
Binary files a/static/img/adavanced-usage/using-nvidia-gpu/cuda-11.8.png and b/static/img/adavanced-usage/using-nvidia-gpu/cuda-11.8.png differ
diff --git a/static/img/adavanced-usage/using-nvidia-gpu/gpu-use.png b/static/img/adavanced-usage/using-nvidia-gpu/gpu-use.png
index 7d1aa6bc..874dfc34 100644
Binary files a/static/img/adavanced-usage/using-nvidia-gpu/gpu-use.png and b/static/img/adavanced-usage/using-nvidia-gpu/gpu-use.png differ
diff --git a/static/img/ams-proxy.png b/static/img/ams-proxy.png
index 6316003f..57a4a89b 100644
Binary files a/static/img/ams-proxy.png and b/static/img/ams-proxy.png differ
diff --git a/static/img/android-open-project-path.png b/static/img/android-open-project-path.png
index 52d2d4e6..9aa9d58b 100644
Binary files a/static/img/android-open-project-path.png and b/static/img/android-open-project-path.png differ
diff --git a/static/img/android_after_adding_native_sdk.png b/static/img/android_after_adding_native_sdk.png
index d999dc40..622eb6d8 100644
Binary files a/static/img/android_after_adding_native_sdk.png and b/static/img/android_after_adding_native_sdk.png differ
diff --git a/static/img/android_data_channel.png b/static/img/android_data_channel.png
index 111ceaf3..a953d98a 100644
Binary files a/static/img/android_data_channel.png and b/static/img/android_data_channel.png differ
diff --git a/static/img/ant-media-dashboard-add-rtmp-endpoint.png b/static/img/ant-media-dashboard-add-rtmp-endpoint.png
index 6bbcb9e4..b251954b 100644
Binary files a/static/img/ant-media-dashboard-add-rtmp-endpoint.png and b/static/img/ant-media-dashboard-add-rtmp-endpoint.png differ
diff --git a/static/img/ant-media-dashboard-edit-rtmp-endpoints.png b/static/img/ant-media-dashboard-edit-rtmp-endpoints.png
index fd58ad7b..d45abb43 100644
Binary files a/static/img/ant-media-dashboard-edit-rtmp-endpoints.png and b/static/img/ant-media-dashboard-edit-rtmp-endpoints.png differ
diff --git a/static/img/ant-media-server-iframe-player.png b/static/img/ant-media-server-iframe-player.png
index e4cafc34..e3127417 100644
Binary files a/static/img/ant-media-server-iframe-player.png and b/static/img/ant-media-server-iframe-player.png differ
diff --git a/static/img/ant-media-server-jwt-stream-security-filter-dashboard.png b/static/img/ant-media-server-jwt-stream-security-filter-dashboard.png
index 2930b138..ee945c4c 100644
Binary files a/static/img/ant-media-server-jwt-stream-security-filter-dashboard.png and b/static/img/ant-media-server-jwt-stream-security-filter-dashboard.png differ
diff --git a/static/img/ant-media-server-one-time-token(1).png b/static/img/ant-media-server-one-time-token(1).png
index 96341e43..5f8e50de 100644
Binary files a/static/img/ant-media-server-one-time-token(1).png and b/static/img/ant-media-server-one-time-token(1).png differ
diff --git a/static/img/ant-media-server-one-time-token.png b/static/img/ant-media-server-one-time-token.png
index 96341e43..5f8e50de 100644
Binary files a/static/img/ant-media-server-one-time-token.png and b/static/img/ant-media-server-one-time-token.png differ
diff --git a/static/img/ant-media-server-webhook-configuration.png b/static/img/ant-media-server-webhook-configuration.png
index 736574b6..0c3c3ca3 100644
Binary files a/static/img/ant-media-server-webhook-configuration.png and b/static/img/ant-media-server-webhook-configuration.png differ
diff --git a/static/img/antmedia-cluster.png b/static/img/antmedia-cluster.png
index 8a066640..8854da69 100644
Binary files a/static/img/antmedia-cluster.png and b/static/img/antmedia-cluster.png differ
diff --git a/static/img/antmedia-login.png b/static/img/antmedia-login.png
index 43352eb4..5a96015a 100644
Binary files a/static/img/antmedia-login.png and b/static/img/antmedia-login.png differ
diff --git a/static/img/application-gateway-1.png b/static/img/application-gateway-1.png
index a5adf3df..d9945b70 100644
Binary files a/static/img/application-gateway-1.png and b/static/img/application-gateway-1.png differ
diff --git a/static/img/application-gateway-10.png b/static/img/application-gateway-10.png
index 402ce92e..66000db0 100644
Binary files a/static/img/application-gateway-10.png and b/static/img/application-gateway-10.png differ
diff --git a/static/img/application-gateway-11.png b/static/img/application-gateway-11.png
index ac902b4b..fd7943c5 100644
Binary files a/static/img/application-gateway-11.png and b/static/img/application-gateway-11.png differ
diff --git a/static/img/application-gateway-12.png b/static/img/application-gateway-12.png
index 71df8cbc..e738c8d1 100644
Binary files a/static/img/application-gateway-12.png and b/static/img/application-gateway-12.png differ
diff --git a/static/img/application-gateway-13.png b/static/img/application-gateway-13.png
index 149f2060..1e002434 100644
Binary files a/static/img/application-gateway-13.png and b/static/img/application-gateway-13.png differ
diff --git a/static/img/application-gateway-14.png b/static/img/application-gateway-14.png
index e499e051..2879474d 100644
Binary files a/static/img/application-gateway-14.png and b/static/img/application-gateway-14.png differ
diff --git a/static/img/application-gateway-15.png b/static/img/application-gateway-15.png
index 3af95f88..f7d0f92e 100644
Binary files a/static/img/application-gateway-15.png and b/static/img/application-gateway-15.png differ
diff --git a/static/img/application-gateway-16.png b/static/img/application-gateway-16.png
index 2218aca0..513e08be 100644
Binary files a/static/img/application-gateway-16.png and b/static/img/application-gateway-16.png differ
diff --git a/static/img/application-gateway-17.png b/static/img/application-gateway-17.png
index 8b70d701..dfaf80cd 100644
Binary files a/static/img/application-gateway-17.png and b/static/img/application-gateway-17.png differ
diff --git a/static/img/application-gateway-18.png b/static/img/application-gateway-18.png
index ff3b34c2..92bc1375 100644
Binary files a/static/img/application-gateway-18.png and b/static/img/application-gateway-18.png differ
diff --git a/static/img/application-gateway-19.png b/static/img/application-gateway-19.png
index 244196c1..cc286ff2 100644
Binary files a/static/img/application-gateway-19.png and b/static/img/application-gateway-19.png differ
diff --git a/static/img/application-gateway-2.png b/static/img/application-gateway-2.png
index 7b8e175a..58e78469 100644
Binary files a/static/img/application-gateway-2.png and b/static/img/application-gateway-2.png differ
diff --git a/static/img/application-gateway-20.png b/static/img/application-gateway-20.png
index 725a8de6..90a17c63 100644
Binary files a/static/img/application-gateway-20.png and b/static/img/application-gateway-20.png differ
diff --git a/static/img/application-gateway-3.png b/static/img/application-gateway-3.png
index 6b57d8a2..18773479 100644
Binary files a/static/img/application-gateway-3.png and b/static/img/application-gateway-3.png differ
diff --git a/static/img/application-gateway-5.png b/static/img/application-gateway-5.png
index cfc2c077..bc027d1c 100644
Binary files a/static/img/application-gateway-5.png and b/static/img/application-gateway-5.png differ
diff --git a/static/img/application-gateway-7.png b/static/img/application-gateway-7.png
index ac8b2887..5da2253d 100644
Binary files a/static/img/application-gateway-7.png and b/static/img/application-gateway-7.png differ
diff --git a/static/img/application-gateway-8.png b/static/img/application-gateway-8.png
index 64d8f08b..3162965c 100644
Binary files a/static/img/application-gateway-8.png and b/static/img/application-gateway-8.png differ
diff --git a/static/img/application-gateway-9.png b/static/img/application-gateway-9.png
index 2b7bef84..2802c475 100644
Binary files a/static/img/application-gateway-9.png and b/static/img/application-gateway-9.png differ
diff --git a/static/img/apply_settings_vidiu_pro.png b/static/img/apply_settings_vidiu_pro.png
index 73e0ff5c..c236dfb0 100644
Binary files a/static/img/apply_settings_vidiu_pro.png and b/static/img/apply_settings_vidiu_pro.png differ
diff --git a/static/img/atlas0.png b/static/img/atlas0.png
index 59040b56..ffb3b282 100644
Binary files a/static/img/atlas0.png and b/static/img/atlas0.png differ
diff --git a/static/img/atlas1.png b/static/img/atlas1.png
index 6b945e23..74b3d037 100644
Binary files a/static/img/atlas1.png and b/static/img/atlas1.png differ
diff --git a/static/img/atlas4.png b/static/img/atlas4.png
index 7b4a1fb1..dbbe7b58 100644
Binary files a/static/img/atlas4.png and b/static/img/atlas4.png differ
diff --git a/static/img/atlas6.png b/static/img/atlas6.png
index 1a92aae2..92a65004 100644
Binary files a/static/img/atlas6.png and b/static/img/atlas6.png differ
diff --git a/static/img/aws-asg-1.png b/static/img/aws-asg-1.png
index 608e33a3..9341c7ac 100644
Binary files a/static/img/aws-asg-1.png and b/static/img/aws-asg-1.png differ
diff --git a/static/img/aws-eks/ams-dashboard.png b/static/img/aws-eks/ams-dashboard.png
index 6c71f445..dc75e4ee 100644
Binary files a/static/img/aws-eks/ams-dashboard.png and b/static/img/aws-eks/ams-dashboard.png differ
diff --git a/static/img/aws-eks/aws-eks-1.png b/static/img/aws-eks/aws-eks-1.png
index cf419a6d..7ab082a7 100644
Binary files a/static/img/aws-eks/aws-eks-1.png and b/static/img/aws-eks/aws-eks-1.png differ
diff --git a/static/img/aws-eks/aws-eks-10.png b/static/img/aws-eks/aws-eks-10.png
index e4341757..135605ad 100644
Binary files a/static/img/aws-eks/aws-eks-10.png and b/static/img/aws-eks/aws-eks-10.png differ
diff --git a/static/img/aws-eks/aws-eks-11.png b/static/img/aws-eks/aws-eks-11.png
index b6296b6c..ac4d0f77 100644
Binary files a/static/img/aws-eks/aws-eks-11.png and b/static/img/aws-eks/aws-eks-11.png differ
diff --git a/static/img/aws-eks/aws-eks-12-1.png b/static/img/aws-eks/aws-eks-12-1.png
index c4ab3de5..3177578c 100644
Binary files a/static/img/aws-eks/aws-eks-12-1.png and b/static/img/aws-eks/aws-eks-12-1.png differ
diff --git a/static/img/aws-eks/aws-eks-12-2.png b/static/img/aws-eks/aws-eks-12-2.png
index 1aa8e73d..f717137d 100644
Binary files a/static/img/aws-eks/aws-eks-12-2.png and b/static/img/aws-eks/aws-eks-12-2.png differ
diff --git a/static/img/aws-eks/aws-eks-2.png b/static/img/aws-eks/aws-eks-2.png
index d93c8453..34149832 100644
Binary files a/static/img/aws-eks/aws-eks-2.png and b/static/img/aws-eks/aws-eks-2.png differ
diff --git a/static/img/aws-eks/aws-eks-3-2.png b/static/img/aws-eks/aws-eks-3-2.png
index 7ee6eca3..e2d75438 100644
Binary files a/static/img/aws-eks/aws-eks-3-2.png and b/static/img/aws-eks/aws-eks-3-2.png differ
diff --git a/static/img/aws-eks/aws-eks-3.png b/static/img/aws-eks/aws-eks-3.png
index 3f4c0f9d..71018e5a 100644
Binary files a/static/img/aws-eks/aws-eks-3.png and b/static/img/aws-eks/aws-eks-3.png differ
diff --git a/static/img/aws-eks/aws-eks-4.png b/static/img/aws-eks/aws-eks-4.png
index 23e0a2ef..28ca14d3 100644
Binary files a/static/img/aws-eks/aws-eks-4.png and b/static/img/aws-eks/aws-eks-4.png differ
diff --git a/static/img/aws-eks/aws-eks-5.png b/static/img/aws-eks/aws-eks-5.png
index 3b13a830..7bc3c46a 100644
Binary files a/static/img/aws-eks/aws-eks-5.png and b/static/img/aws-eks/aws-eks-5.png differ
diff --git a/static/img/aws-eks/aws-eks-6.png b/static/img/aws-eks/aws-eks-6.png
index f22cbb37..d03ac2f4 100644
Binary files a/static/img/aws-eks/aws-eks-6.png and b/static/img/aws-eks/aws-eks-6.png differ
diff --git a/static/img/aws-eks/aws-eks-7.png b/static/img/aws-eks/aws-eks-7.png
index fe4f8dc5..0a711ff1 100644
Binary files a/static/img/aws-eks/aws-eks-7.png and b/static/img/aws-eks/aws-eks-7.png differ
diff --git a/static/img/aws-eks/aws-eks-8-1.png b/static/img/aws-eks/aws-eks-8-1.png
index 697f966b..8aa9e801 100644
Binary files a/static/img/aws-eks/aws-eks-8-1.png and b/static/img/aws-eks/aws-eks-8-1.png differ
diff --git a/static/img/aws-eks/aws-eks-8-2.png b/static/img/aws-eks/aws-eks-8-2.png
index dc07fa30..d86f0f1e 100644
Binary files a/static/img/aws-eks/aws-eks-8-2.png and b/static/img/aws-eks/aws-eks-8-2.png differ
diff --git a/static/img/aws-eks/aws-eks-8.png b/static/img/aws-eks/aws-eks-8.png
index e4341757..135605ad 100644
Binary files a/static/img/aws-eks/aws-eks-8.png and b/static/img/aws-eks/aws-eks-8.png differ
diff --git a/static/img/aws-eks/aws-eks-9.png b/static/img/aws-eks/aws-eks-9.png
index 7b609b94..164ca8e6 100644
Binary files a/static/img/aws-eks/aws-eks-9.png and b/static/img/aws-eks/aws-eks-9.png differ
diff --git a/static/img/aws-eks/kibectl-2.png b/static/img/aws-eks/kibectl-2.png
index 0b7bef9a..ee5b5553 100644
Binary files a/static/img/aws-eks/kibectl-2.png and b/static/img/aws-eks/kibectl-2.png differ
diff --git a/static/img/aws-eks/kubectl-1.png b/static/img/aws-eks/kubectl-1.png
index d49b1904..533666c5 100644
Binary files a/static/img/aws-eks/kubectl-1.png and b/static/img/aws-eks/kubectl-1.png differ
diff --git a/static/img/aws-eks/kubectl-2.png b/static/img/aws-eks/kubectl-2.png
index 69cc461e..e810684e 100644
Binary files a/static/img/aws-eks/kubectl-2.png and b/static/img/aws-eks/kubectl-2.png differ
diff --git a/static/img/aws-global-cluster/accelerator-complete.png b/static/img/aws-global-cluster/accelerator-complete.png
index 7be5b354..e519842a 100644
Binary files a/static/img/aws-global-cluster/accelerator-complete.png and b/static/img/aws-global-cluster/accelerator-complete.png differ
diff --git a/static/img/aws-global-cluster/accept-peering.png b/static/img/aws-global-cluster/accept-peering.png
index aff220a7..69d4bd78 100644
Binary files a/static/img/aws-global-cluster/accept-peering.png and b/static/img/aws-global-cluster/accept-peering.png differ
diff --git a/static/img/aws-global-cluster/cluster-nodes.png b/static/img/aws-global-cluster/cluster-nodes.png
index 5a65788d..56bcaac7 100644
Binary files a/static/img/aws-global-cluster/cluster-nodes.png and b/static/img/aws-global-cluster/cluster-nodes.png differ
diff --git a/static/img/aws-global-cluster/endpoint-groups.png b/static/img/aws-global-cluster/endpoint-groups.png
index be1d8111..1f9ce28b 100644
Binary files a/static/img/aws-global-cluster/endpoint-groups.png and b/static/img/aws-global-cluster/endpoint-groups.png differ
diff --git a/static/img/aws-global-cluster/global-accelerator.png b/static/img/aws-global-cluster/global-accelerator.png
index afe23342..9027e2ac 100644
Binary files a/static/img/aws-global-cluster/global-accelerator.png and b/static/img/aws-global-cluster/global-accelerator.png differ
diff --git a/static/img/aws-global-cluster/hong-kong-accelerator.png b/static/img/aws-global-cluster/hong-kong-accelerator.png
index f41d8d67..3b9cac98 100644
Binary files a/static/img/aws-global-cluster/hong-kong-accelerator.png and b/static/img/aws-global-cluster/hong-kong-accelerator.png differ
diff --git a/static/img/aws-global-cluster/hong-kong-launch-template.png b/static/img/aws-global-cluster/hong-kong-launch-template.png
index fc095bbf..ceb04ff3 100644
Binary files a/static/img/aws-global-cluster/hong-kong-launch-template.png and b/static/img/aws-global-cluster/hong-kong-launch-template.png differ
diff --git a/static/img/aws-global-cluster/hong-kong-routing.png b/static/img/aws-global-cluster/hong-kong-routing.png
index 7937c20b..c06be88c 100644
Binary files a/static/img/aws-global-cluster/hong-kong-routing.png and b/static/img/aws-global-cluster/hong-kong-routing.png differ
diff --git a/static/img/aws-global-cluster/mongo-security.png b/static/img/aws-global-cluster/mongo-security.png
index 443b3d6f..1bc6d6a7 100644
Binary files a/static/img/aws-global-cluster/mongo-security.png and b/static/img/aws-global-cluster/mongo-security.png differ
diff --git a/static/img/aws-global-cluster/peering-connection.png b/static/img/aws-global-cluster/peering-connection.png
index 18a699d0..77b69e7f 100644
Binary files a/static/img/aws-global-cluster/peering-connection.png and b/static/img/aws-global-cluster/peering-connection.png differ
diff --git a/static/img/aws-global-cluster/spain-accelerator.png b/static/img/aws-global-cluster/spain-accelerator.png
index a4505a45..3af5cd50 100644
Binary files a/static/img/aws-global-cluster/spain-accelerator.png and b/static/img/aws-global-cluster/spain-accelerator.png differ
diff --git a/static/img/aws-global-cluster/spain-routing.png b/static/img/aws-global-cluster/spain-routing.png
index 6cbe5b3c..9f6079f0 100644
Binary files a/static/img/aws-global-cluster/spain-routing.png and b/static/img/aws-global-cluster/spain-routing.png differ
diff --git a/static/img/aws-global-cluster/tcp-listeners.png b/static/img/aws-global-cluster/tcp-listeners.png
index a877dc56..e87d8533 100644
Binary files a/static/img/aws-global-cluster/tcp-listeners.png and b/static/img/aws-global-cluster/tcp-listeners.png differ
diff --git a/static/img/aws-global-cluster/tcp-listners.png b/static/img/aws-global-cluster/tcp-listners.png
index f21e7330..03d82043 100644
Binary files a/static/img/aws-global-cluster/tcp-listners.png and b/static/img/aws-global-cluster/tcp-listners.png differ
diff --git a/static/img/aws-global-cluster/user-data.png b/static/img/aws-global-cluster/user-data.png
index c5d30ac1..97940ada 100644
Binary files a/static/img/aws-global-cluster/user-data.png and b/static/img/aws-global-cluster/user-data.png differ
diff --git a/static/img/aws-launch-templates-1.png b/static/img/aws-launch-templates-1.png
index 06ac33de..0c21dd2d 100644
Binary files a/static/img/aws-launch-templates-1.png and b/static/img/aws-launch-templates-1.png differ
diff --git a/static/img/aws-launch-templates-2.png b/static/img/aws-launch-templates-2.png
index 0ef598ab..c87186bd 100644
Binary files a/static/img/aws-launch-templates-2.png and b/static/img/aws-launch-templates-2.png differ
diff --git a/static/img/aws-launch-templates-3.png b/static/img/aws-launch-templates-3.png
index 06649926..2f5aa277 100644
Binary files a/static/img/aws-launch-templates-3.png and b/static/img/aws-launch-templates-3.png differ
diff --git a/static/img/aws-launch-templates-4.png b/static/img/aws-launch-templates-4.png
index 88de24cf..14b4ea3d 100644
Binary files a/static/img/aws-launch-templates-4.png and b/static/img/aws-launch-templates-4.png differ
diff --git a/static/img/aws-launch-templates-5.png b/static/img/aws-launch-templates-5.png
index 01381f23..d8a1afc6 100644
Binary files a/static/img/aws-launch-templates-5.png and b/static/img/aws-launch-templates-5.png differ
diff --git a/static/img/aws-rtmp-10.png b/static/img/aws-rtmp-10.png
index 24cdc708..94a8aaa3 100644
Binary files a/static/img/aws-rtmp-10.png and b/static/img/aws-rtmp-10.png differ
diff --git a/static/img/aws-rtmp-11.png b/static/img/aws-rtmp-11.png
index 257b6c49..a69b8845 100644
Binary files a/static/img/aws-rtmp-11.png and b/static/img/aws-rtmp-11.png differ
diff --git a/static/img/aws-rtmp-13.png b/static/img/aws-rtmp-13.png
index 63037661..ece36e69 100644
Binary files a/static/img/aws-rtmp-13.png and b/static/img/aws-rtmp-13.png differ
diff --git a/static/img/aws-rtmp-14.png b/static/img/aws-rtmp-14.png
index 05f91902..a4c4c84d 100644
Binary files a/static/img/aws-rtmp-14.png and b/static/img/aws-rtmp-14.png differ
diff --git a/static/img/aws-rtmp-15.png b/static/img/aws-rtmp-15.png
index 0266e2b3..7fb7c563 100644
Binary files a/static/img/aws-rtmp-15.png and b/static/img/aws-rtmp-15.png differ
diff --git a/static/img/aws-rtmp-16-1.png b/static/img/aws-rtmp-16-1.png
index df5b90fc..a538e732 100644
Binary files a/static/img/aws-rtmp-16-1.png and b/static/img/aws-rtmp-16-1.png differ
diff --git a/static/img/aws-rtmp-2.png b/static/img/aws-rtmp-2.png
index 96b75118..f73bdc7d 100644
Binary files a/static/img/aws-rtmp-2.png and b/static/img/aws-rtmp-2.png differ
diff --git a/static/img/aws-rtmp-3.png b/static/img/aws-rtmp-3.png
index 790b14d9..755a3e20 100644
Binary files a/static/img/aws-rtmp-3.png and b/static/img/aws-rtmp-3.png differ
diff --git a/static/img/aws-rtmp-4.png b/static/img/aws-rtmp-4.png
index 39afc6f1..eacc31d4 100644
Binary files a/static/img/aws-rtmp-4.png and b/static/img/aws-rtmp-4.png differ
diff --git a/static/img/aws-rtmp-5.png b/static/img/aws-rtmp-5.png
index 46d66765..8b3a522d 100644
Binary files a/static/img/aws-rtmp-5.png and b/static/img/aws-rtmp-5.png differ
diff --git a/static/img/aws-rtmp-6.png b/static/img/aws-rtmp-6.png
index f397a269..0db867db 100644
Binary files a/static/img/aws-rtmp-6.png and b/static/img/aws-rtmp-6.png differ
diff --git a/static/img/aws-rtmp-7.png b/static/img/aws-rtmp-7.png
index 0fa28eda..cb09295e 100644
Binary files a/static/img/aws-rtmp-7.png and b/static/img/aws-rtmp-7.png differ
diff --git a/static/img/aws-rtmp-8.png b/static/img/aws-rtmp-8.png
index d4e05182..c8b737b9 100644
Binary files a/static/img/aws-rtmp-8.png and b/static/img/aws-rtmp-8.png differ
diff --git a/static/img/aws-rtmp-9.png b/static/img/aws-rtmp-9.png
index 4c235ce7..31b2a338 100644
Binary files a/static/img/aws-rtmp-9.png and b/static/img/aws-rtmp-9.png differ
diff --git a/static/img/aws-rtmp-url.png b/static/img/aws-rtmp-url.png
index a8b0fc6a..34c0bad9 100644
Binary files a/static/img/aws-rtmp-url.png and b/static/img/aws-rtmp-url.png differ
diff --git a/static/img/aws-rules.png b/static/img/aws-rules.png
index c1507d06..012603a5 100644
Binary files a/static/img/aws-rules.png and b/static/img/aws-rules.png differ
diff --git a/static/img/azure-aks/azure-aks-1.png b/static/img/azure-aks/azure-aks-1.png
index bf77fa1f..11b1822c 100644
Binary files a/static/img/azure-aks/azure-aks-1.png and b/static/img/azure-aks/azure-aks-1.png differ
diff --git a/static/img/azure-aks/azure-aks-2.png b/static/img/azure-aks/azure-aks-2.png
index 777d9a05..e98ab7e4 100644
Binary files a/static/img/azure-aks/azure-aks-2.png and b/static/img/azure-aks/azure-aks-2.png differ
diff --git a/static/img/azure-aks/azure-aks-3-1.png b/static/img/azure-aks/azure-aks-3-1.png
index 11b97382..0290b2ed 100644
Binary files a/static/img/azure-aks/azure-aks-3-1.png and b/static/img/azure-aks/azure-aks-3-1.png differ
diff --git a/static/img/azure-aks/azure-aks-3-2.png b/static/img/azure-aks/azure-aks-3-2.png
index b7ee2bc2..8e6a66f2 100644
Binary files a/static/img/azure-aks/azure-aks-3-2.png and b/static/img/azure-aks/azure-aks-3-2.png differ
diff --git a/static/img/azure-aks/azure-aks-4.png b/static/img/azure-aks/azure-aks-4.png
index 20d689a9..239b9dd5 100644
Binary files a/static/img/azure-aks/azure-aks-4.png and b/static/img/azure-aks/azure-aks-4.png differ
diff --git a/static/img/azure-aks/azure-aks-5-1.png b/static/img/azure-aks/azure-aks-5-1.png
index ab951c18..e8327975 100644
Binary files a/static/img/azure-aks/azure-aks-5-1.png and b/static/img/azure-aks/azure-aks-5-1.png differ
diff --git a/static/img/azure-aks/azure-aks-5-2.png b/static/img/azure-aks/azure-aks-5-2.png
index 2bfa32cb..dc6fc53b 100644
Binary files a/static/img/azure-aks/azure-aks-5-2.png and b/static/img/azure-aks/azure-aks-5-2.png differ
diff --git a/static/img/azure-aks/azure-aks-5.png b/static/img/azure-aks/azure-aks-5.png
index 5aae7844..e8327975 100644
Binary files a/static/img/azure-aks/azure-aks-5.png and b/static/img/azure-aks/azure-aks-5.png differ
diff --git a/static/img/azure-aks/azure-aks-6.png b/static/img/azure-aks/azure-aks-6.png
index c7a66800..f64e7c19 100644
Binary files a/static/img/azure-aks/azure-aks-6.png and b/static/img/azure-aks/azure-aks-6.png differ
diff --git a/static/img/azure-aks/azure-aks-7.png b/static/img/azure-aks/azure-aks-7.png
index 82b3aa8c..62e84cb9 100644
Binary files a/static/img/azure-aks/azure-aks-7.png and b/static/img/azure-aks/azure-aks-7.png differ
diff --git a/static/img/azure-aks/azure-aks-8-1.png b/static/img/azure-aks/azure-aks-8-1.png
index 667ad855..ce9a7fe6 100644
Binary files a/static/img/azure-aks/azure-aks-8-1.png and b/static/img/azure-aks/azure-aks-8-1.png differ
diff --git a/static/img/azure-aks/azure-aks-8-2.png b/static/img/azure-aks/azure-aks-8-2.png
index 5ebeb4a5..5dd4d36d 100644
Binary files a/static/img/azure-aks/azure-aks-8-2.png and b/static/img/azure-aks/azure-aks-8-2.png differ
diff --git a/static/img/azure-aks/azure-aks-8.png b/static/img/azure-aks/azure-aks-8.png
index 667ad855..ce9a7fe6 100644
Binary files a/static/img/azure-aks/azure-aks-8.png and b/static/img/azure-aks/azure-aks-8.png differ
diff --git a/static/img/azure-aks/azure-cli-success.png b/static/img/azure-aks/azure-cli-success.png
index fb9db877..872ffe73 100644
Binary files a/static/img/azure-aks/azure-cli-success.png and b/static/img/azure-aks/azure-cli-success.png differ
diff --git a/static/img/azure-aks/using-azure-cli.png b/static/img/azure-aks/using-azure-cli.png
index 649720f0..4d34fc2c 100644
Binary files a/static/img/azure-aks/using-azure-cli.png and b/static/img/azure-aks/using-azure-cli.png differ
diff --git a/static/img/azure-aks/using-cloud-shell.png b/static/img/azure-aks/using-cloud-shell.png
index 2afce7ab..422bd858 100644
Binary files a/static/img/azure-aks/using-cloud-shell.png and b/static/img/azure-aks/using-cloud-shell.png differ
diff --git a/static/img/azure-rtmp-1.png b/static/img/azure-rtmp-1.png
index 4f2d97fa..4f6fbbc9 100644
Binary files a/static/img/azure-rtmp-1.png and b/static/img/azure-rtmp-1.png differ
diff --git a/static/img/azure-rtmp-2.png b/static/img/azure-rtmp-2.png
index 935dd16e..38032640 100644
Binary files a/static/img/azure-rtmp-2.png and b/static/img/azure-rtmp-2.png differ
diff --git a/static/img/azure-rtmp-3.png b/static/img/azure-rtmp-3.png
index 2ddb0bd2..551536de 100644
Binary files a/static/img/azure-rtmp-3.png and b/static/img/azure-rtmp-3.png differ
diff --git a/static/img/azure-rtmp-4.png b/static/img/azure-rtmp-4.png
index 474ee5bf..ea112155 100644
Binary files a/static/img/azure-rtmp-4.png and b/static/img/azure-rtmp-4.png differ
diff --git a/static/img/azure-rtmp-5.png b/static/img/azure-rtmp-5.png
index ea7280ec..5b61476e 100644
Binary files a/static/img/azure-rtmp-5.png and b/static/img/azure-rtmp-5.png differ
diff --git a/static/img/azure-rtmp-6-1.png b/static/img/azure-rtmp-6-1.png
index a475b1a1..b905c1ba 100644
Binary files a/static/img/azure-rtmp-6-1.png and b/static/img/azure-rtmp-6-1.png differ
diff --git a/static/img/azure-rtmp-6-2.png b/static/img/azure-rtmp-6-2.png
index 96030bb9..0a040e02 100644
Binary files a/static/img/azure-rtmp-6-2.png and b/static/img/azure-rtmp-6-2.png differ
diff --git a/static/img/azure-rtmp-8.png b/static/img/azure-rtmp-8.png
index 1ae47801..d45efb34 100644
Binary files a/static/img/azure-rtmp-8.png and b/static/img/azure-rtmp-8.png differ
diff --git a/static/img/azure-rtmp-9.png b/static/img/azure-rtmp-9.png
index c226f63f..a02f4415 100644
Binary files a/static/img/azure-rtmp-9.png and b/static/img/azure-rtmp-9.png differ
diff --git a/static/img/azure/ams-cluster-in-azure-with-arm-1.png b/static/img/azure/ams-cluster-in-azure-with-arm-1.png
index 638b3452..efe09f0f 100644
Binary files a/static/img/azure/ams-cluster-in-azure-with-arm-1.png and b/static/img/azure/ams-cluster-in-azure-with-arm-1.png differ
diff --git a/static/img/azure/ams-cluster-in-azure-with-arm-2.png b/static/img/azure/ams-cluster-in-azure-with-arm-2.png
index a9f584da..7bddbe68 100644
Binary files a/static/img/azure/ams-cluster-in-azure-with-arm-2.png and b/static/img/azure/ams-cluster-in-azure-with-arm-2.png differ
diff --git a/static/img/azure/ams-cluster-in-azure-with-arm-3.png b/static/img/azure/ams-cluster-in-azure-with-arm-3.png
index 12947948..511fcaf3 100644
Binary files a/static/img/azure/ams-cluster-in-azure-with-arm-3.png and b/static/img/azure/ams-cluster-in-azure-with-arm-3.png differ
diff --git a/static/img/azure/ams-cluster-in-azure-with-arm-4.png b/static/img/azure/ams-cluster-in-azure-with-arm-4.png
index 40a68f3d..2af03425 100644
Binary files a/static/img/azure/ams-cluster-in-azure-with-arm-4.png and b/static/img/azure/ams-cluster-in-azure-with-arm-4.png differ
diff --git a/static/img/azure/ams-cluster-in-azure-with-arm-5-1.png b/static/img/azure/ams-cluster-in-azure-with-arm-5-1.png
index 8df88047..5ebd9543 100644
Binary files a/static/img/azure/ams-cluster-in-azure-with-arm-5-1.png and b/static/img/azure/ams-cluster-in-azure-with-arm-5-1.png differ
diff --git a/static/img/azure/ams-cluster-in-azure-with-arm-5-2.png b/static/img/azure/ams-cluster-in-azure-with-arm-5-2.png
index fa7d6260..f75a73e5 100644
Binary files a/static/img/azure/ams-cluster-in-azure-with-arm-5-2.png and b/static/img/azure/ams-cluster-in-azure-with-arm-5-2.png differ
diff --git a/static/img/buffering.jpg b/static/img/buffering.jpg
index 4496d085..10fb9515 100644
Binary files a/static/img/buffering.jpg and b/static/img/buffering.jpg differ
diff --git a/static/img/camera_mic_usage.png b/static/img/camera_mic_usage.png
index 55822358..5bbdfa3f 100644
Binary files a/static/img/camera_mic_usage.png and b/static/img/camera_mic_usage.png differ
diff --git a/static/img/choose_your_iphone_in_xcode.png b/static/img/choose_your_iphone_in_xcode.png
index c74da82d..411ad86e 100644
Binary files a/static/img/choose_your_iphone_in_xcode.png and b/static/img/choose_your_iphone_in_xcode.png differ
diff --git a/static/img/click_add_items_to_embed.png b/static/img/click_add_items_to_embed.png
index 71513f4f..dbb3ac39 100644
Binary files a/static/img/click_add_items_to_embed.png and b/static/img/click_add_items_to_embed.png differ
diff --git a/static/img/cloudflare/antmedia-cloudflare-1.png b/static/img/cloudflare/antmedia-cloudflare-1.png
index 4b6052bb..7a0b9a8f 100644
Binary files a/static/img/cloudflare/antmedia-cloudflare-1.png and b/static/img/cloudflare/antmedia-cloudflare-1.png differ
diff --git a/static/img/cloudflare/antmedia-cloudflare-2.png b/static/img/cloudflare/antmedia-cloudflare-2.png
index e4289db1..75cb04d6 100644
Binary files a/static/img/cloudflare/antmedia-cloudflare-2.png and b/static/img/cloudflare/antmedia-cloudflare-2.png differ
diff --git a/static/img/cloudflare/antmedia-cloudflare-3.png b/static/img/cloudflare/antmedia-cloudflare-3.png
index d229cdd5..c71ac0ca 100644
Binary files a/static/img/cloudflare/antmedia-cloudflare-3.png and b/static/img/cloudflare/antmedia-cloudflare-3.png differ
diff --git a/static/img/cloudflare/antmedia-cloudflare-4.png b/static/img/cloudflare/antmedia-cloudflare-4.png
index 0b3e7647..84c9920c 100644
Binary files a/static/img/cloudflare/antmedia-cloudflare-4.png and b/static/img/cloudflare/antmedia-cloudflare-4.png differ
diff --git a/static/img/cloudflare/antmedia-cloudflare-5.png b/static/img/cloudflare/antmedia-cloudflare-5.png
index a6839b87..2980a31e 100644
Binary files a/static/img/cloudflare/antmedia-cloudflare-5.png and b/static/img/cloudflare/antmedia-cloudflare-5.png differ
diff --git a/static/img/cloudflare/antmedia-cloudflare.png b/static/img/cloudflare/antmedia-cloudflare.png
index 7e77cf3d..e869e1e7 100644
Binary files a/static/img/cloudflare/antmedia-cloudflare.png and b/static/img/cloudflare/antmedia-cloudflare.png differ
diff --git a/static/img/cloudformation-marketplace-1.png b/static/img/cloudformation-marketplace-1.png
index 1dfc87d5..ab4c0316 100644
Binary files a/static/img/cloudformation-marketplace-1.png and b/static/img/cloudformation-marketplace-1.png differ
diff --git a/static/img/cloudformation-marketplace-2.png b/static/img/cloudformation-marketplace-2.png
index 9ea22289..cdc90f8e 100644
Binary files a/static/img/cloudformation-marketplace-2.png and b/static/img/cloudformation-marketplace-2.png differ
diff --git a/static/img/cloudformation-marketplace-3.png b/static/img/cloudformation-marketplace-3.png
index dd5e01df..b50cf5f3 100644
Binary files a/static/img/cloudformation-marketplace-3.png and b/static/img/cloudformation-marketplace-3.png differ
diff --git a/static/img/clustering-and-scaling/aws-cloudformation/ami-id.png b/static/img/clustering-and-scaling/aws-cloudformation/ami-id.png
index 15f5e318..26828535 100644
Binary files a/static/img/clustering-and-scaling/aws-cloudformation/ami-id.png and b/static/img/clustering-and-scaling/aws-cloudformation/ami-id.png differ
diff --git a/static/img/clustering-and-scaling/aws-cloudformation/ams-image.png b/static/img/clustering-and-scaling/aws-cloudformation/ams-image.png
index 68f1350d..c8f37485 100644
Binary files a/static/img/clustering-and-scaling/aws-cloudformation/ams-image.png and b/static/img/clustering-and-scaling/aws-cloudformation/ams-image.png differ
diff --git a/static/img/clustering-and-scaling/aws-cloudformation/create-aws-ami.png b/static/img/clustering-and-scaling/aws-cloudformation/create-aws-ami.png
index 70f55c05..a34322c9 100644
Binary files a/static/img/clustering-and-scaling/aws-cloudformation/create-aws-ami.png and b/static/img/clustering-and-scaling/aws-cloudformation/create-aws-ami.png differ
diff --git a/static/img/configuration-and-testing/application-settings-dashboard.png b/static/img/configuration-and-testing/application-settings-dashboard.png
index cfed365f..61c04e33 100644
Binary files a/static/img/configuration-and-testing/application-settings-dashboard.png and b/static/img/configuration-and-testing/application-settings-dashboard.png differ
diff --git a/static/img/configuration-and-testing/application-settings-properties.png b/static/img/configuration-and-testing/application-settings-properties.png
index e099eda2..2174fc65 100644
Binary files a/static/img/configuration-and-testing/application-settings-properties.png and b/static/img/configuration-and-testing/application-settings-properties.png differ
diff --git a/static/img/configuration-and-testing/application-settings.png b/static/img/configuration-and-testing/application-settings.png
index 07b30795..3ede605a 100644
Binary files a/static/img/configuration-and-testing/application-settings.png and b/static/img/configuration-and-testing/application-settings.png differ
diff --git a/static/img/configure_broadcasting_settings_vidiu_pro.png b/static/img/configure_broadcasting_settings_vidiu_pro.png
index b6cc81bd..61e75796 100644
Binary files a/static/img/configure_broadcasting_settings_vidiu_pro.png and b/static/img/configure_broadcasting_settings_vidiu_pro.png differ
diff --git a/static/img/configure_vidiu_network_button.png b/static/img/configure_vidiu_network_button.png
index f43f2e9c..57ea9191 100644
Binary files a/static/img/configure_vidiu_network_button.png and b/static/img/configure_vidiu_network_button.png differ
diff --git a/static/img/coturn-2.png b/static/img/coturn-2.png
index 2c38ea58..76250eb2 100644
Binary files a/static/img/coturn-2.png and b/static/img/coturn-2.png differ
diff --git a/static/img/coturn-nslookup.png b/static/img/coturn-nslookup.png
index 4690dcaf..6f9d0fb2 100644
Binary files a/static/img/coturn-nslookup.png and b/static/img/coturn-nslookup.png differ
diff --git a/static/img/coturn-output.png b/static/img/coturn-output.png
index 44df8748..0a411c4b 100644
Binary files a/static/img/coturn-output.png and b/static/img/coturn-output.png differ
diff --git a/static/img/create-resource-1.png b/static/img/create-resource-1.png
index 556f9a2f..00bf6d8d 100644
Binary files a/static/img/create-resource-1.png and b/static/img/create-resource-1.png differ
diff --git a/static/img/create-resource-2.png b/static/img/create-resource-2.png
index 21655220..38faf04c 100644
Binary files a/static/img/create-resource-2.png and b/static/img/create-resource-2.png differ
diff --git a/static/img/create-resource-3.png b/static/img/create-resource-3.png
index bb9e9fb8..a1d0d2ac 100644
Binary files a/static/img/create-resource-3.png and b/static/img/create-resource-3.png differ
diff --git a/static/img/cross.png b/static/img/cross.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/cross.png and b/static/img/cross.png differ
diff --git a/static/img/cross.svg b/static/img/cross.svg
index f9a95c49..3a0e979b 100644
--- a/static/img/cross.svg
+++ b/static/img/cross.svg
@@ -1,14 +1 @@
-
-
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/static/img/dataPathways.png b/static/img/dataPathways.png
index 6ae1ffb2..704a5403 100644
Binary files a/static/img/dataPathways.png and b/static/img/dataPathways.png differ
diff --git a/static/img/developer-guides/plugin-data-flow.png b/static/img/developer-guides/plugin-data-flow.png
index d22e2d1d..18c291e8 100644
Binary files a/static/img/developer-guides/plugin-data-flow.png and b/static/img/developer-guides/plugin-data-flow.png differ
diff --git a/static/img/disable_bitcode.png b/static/img/disable_bitcode.png
index aa3f736f..6a3c9513 100644
Binary files a/static/img/disable_bitcode.png and b/static/img/disable_bitcode.png differ
diff --git a/static/img/docusaurus.png b/static/img/docusaurus.png
index 649a38fa..e6cf4895 100644
Binary files a/static/img/docusaurus.png and b/static/img/docusaurus.png differ
diff --git a/static/img/dynamic-stream-pulling-1.png b/static/img/dynamic-stream-pulling-1.png
index 44400fd4..6914ab24 100644
Binary files a/static/img/dynamic-stream-pulling-1.png and b/static/img/dynamic-stream-pulling-1.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-alb-mapping.png b/static/img/ecs-cluster/ecs-fargate-alb-mapping.png
index c37c1fc2..cc20de19 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-alb-mapping.png and b/static/img/ecs-cluster/ecs-fargate-alb-mapping.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-ams-container-def.png b/static/img/ecs-cluster/ecs-fargate-ams-container-def.png
index 61578ccb..a0e94d93 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-ams-container-def.png and b/static/img/ecs-cluster/ecs-fargate-ams-container-def.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-ams-entry-point.png b/static/img/ecs-cluster/ecs-fargate-ams-entry-point.png
index 3eb3f2d8..72eb62c6 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-ams-entry-point.png and b/static/img/ecs-cluster/ecs-fargate-ams-entry-point.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-ams-node-taskdef.png b/static/img/ecs-cluster/ecs-fargate-ams-node-taskdef.png
index 289fdce5..f59837cd 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-ams-node-taskdef.png and b/static/img/ecs-cluster/ecs-fargate-ams-node-taskdef.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-ams-security-group.png b/static/img/ecs-cluster/ecs-fargate-ams-security-group.png
index eb0c37f6..07666304 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-ams-security-group.png and b/static/img/ecs-cluster/ecs-fargate-ams-security-group.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-autoscale.png b/static/img/ecs-cluster/ecs-fargate-autoscale.png
index cd9ed652..cac8ae3a 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-autoscale.png and b/static/img/ecs-cluster/ecs-fargate-autoscale.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-create-cluster.png b/static/img/ecs-cluster/ecs-fargate-create-cluster.png
index f0f4dac7..2aa06457 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-create-cluster.png and b/static/img/ecs-cluster/ecs-fargate-create-cluster.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-edge-target-group.png b/static/img/ecs-cluster/ecs-fargate-edge-target-group.png
index 125442d8..49fee339 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-edge-target-group.png and b/static/img/ecs-cluster/ecs-fargate-edge-target-group.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-mongo-security-group.png b/static/img/ecs-cluster/ecs-fargate-mongo-security-group.png
index 47774669..c829ba8a 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-mongo-security-group.png and b/static/img/ecs-cluster/ecs-fargate-mongo-security-group.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-mongo-task-size.png b/static/img/ecs-cluster/ecs-fargate-mongo-task-size.png
index e045a004..48644a50 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-mongo-task-size.png and b/static/img/ecs-cluster/ecs-fargate-mongo-task-size.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-mongo-taskdef.png b/static/img/ecs-cluster/ecs-fargate-mongo-taskdef.png
index 446d5f57..6764c75f 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-mongo-taskdef.png and b/static/img/ecs-cluster/ecs-fargate-mongo-taskdef.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-mongo-vpc-sg.png b/static/img/ecs-cluster/ecs-fargate-mongo-vpc-sg.png
index a9039657..f38db94c 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-mongo-vpc-sg.png and b/static/img/ecs-cluster/ecs-fargate-mongo-vpc-sg.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-origin-service.png b/static/img/ecs-cluster/ecs-fargate-origin-service.png
index 4d96a72a..9aa34ee9 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-origin-service.png and b/static/img/ecs-cluster/ecs-fargate-origin-service.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-origin-target-group.png b/static/img/ecs-cluster/ecs-fargate-origin-target-group.png
index 04ea7fdf..fa345bc8 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-origin-target-group.png and b/static/img/ecs-cluster/ecs-fargate-origin-target-group.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-run-mongo-taskdef.png b/static/img/ecs-cluster/ecs-fargate-run-mongo-taskdef.png
index 4b751f27..e1a61ed5 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-run-mongo-taskdef.png and b/static/img/ecs-cluster/ecs-fargate-run-mongo-taskdef.png differ
diff --git a/static/img/ecs-cluster/ecs-fargate-service-alb-configuration.png b/static/img/ecs-cluster/ecs-fargate-service-alb-configuration.png
index 8c412244..c0be3b1f 100644
Binary files a/static/img/ecs-cluster/ecs-fargate-service-alb-configuration.png and b/static/img/ecs-cluster/ecs-fargate-service-alb-configuration.png differ
diff --git a/static/img/ecs-cluster/ecs-fargete-running-mongo-task.png b/static/img/ecs-cluster/ecs-fargete-running-mongo-task.png
index 657554b6..811b7d1d 100644
Binary files a/static/img/ecs-cluster/ecs-fargete-running-mongo-task.png and b/static/img/ecs-cluster/ecs-fargete-running-mongo-task.png differ
diff --git a/static/img/ecs-cluster/ecs-task-execution-role.png b/static/img/ecs-cluster/ecs-task-execution-role.png
index 0f04ab15..a1358685 100644
Binary files a/static/img/ecs-cluster/ecs-task-execution-role.png and b/static/img/ecs-cluster/ecs-task-execution-role.png differ
diff --git a/static/img/ecs-standalone/create-ecs-cluster-1.png b/static/img/ecs-standalone/create-ecs-cluster-1.png
index f59eb9a2..1b19af50 100644
Binary files a/static/img/ecs-standalone/create-ecs-cluster-1.png and b/static/img/ecs-standalone/create-ecs-cluster-1.png differ
diff --git a/static/img/ecs-standalone/create-ecs-cluster-2.png b/static/img/ecs-standalone/create-ecs-cluster-2.png
index d496cae6..ff444c99 100644
Binary files a/static/img/ecs-standalone/create-ecs-cluster-2.png and b/static/img/ecs-standalone/create-ecs-cluster-2.png differ
diff --git a/static/img/ecs-standalone/ecs-task-execution-role.png b/static/img/ecs-standalone/ecs-task-execution-role.png
index 0f04ab15..a1358685 100644
Binary files a/static/img/ecs-standalone/ecs-task-execution-role.png and b/static/img/ecs-standalone/ecs-task-execution-role.png differ
diff --git a/static/img/ecs-standalone/run-task-1.png b/static/img/ecs-standalone/run-task-1.png
index a720a312..7ab41c3a 100644
Binary files a/static/img/ecs-standalone/run-task-1.png and b/static/img/ecs-standalone/run-task-1.png differ
diff --git a/static/img/embedded-player-example.png b/static/img/embedded-player-example.png
index f1ea9e2d..ed065783 100644
Binary files a/static/img/embedded-player-example.png and b/static/img/embedded-player-example.png differ
diff --git a/static/img/enable-preview.png b/static/img/enable-preview.png
index 43ff761c..9965eeb8 100644
Binary files a/static/img/enable-preview.png and b/static/img/enable-preview.png differ
diff --git a/static/img/facebook-live-dashboard.png b/static/img/facebook-live-dashboard.png
index 9a1e11cb..c04e8e8b 100644
Binary files a/static/img/facebook-live-dashboard.png and b/static/img/facebook-live-dashboard.png differ
diff --git a/static/img/frameworks_added.png b/static/img/frameworks_added.png
index a335ea33..63d4c973 100644
Binary files a/static/img/frameworks_added.png and b/static/img/frameworks_added.png differ
diff --git a/static/img/gcp-gke/antmedia-gke-1.png b/static/img/gcp-gke/antmedia-gke-1.png
index 9f09b522..7f9aeb1d 100644
Binary files a/static/img/gcp-gke/antmedia-gke-1.png and b/static/img/gcp-gke/antmedia-gke-1.png differ
diff --git a/static/img/gcp-gke/antmedia-gke-2.png b/static/img/gcp-gke/antmedia-gke-2.png
index afe4acdd..a59037aa 100644
Binary files a/static/img/gcp-gke/antmedia-gke-2.png and b/static/img/gcp-gke/antmedia-gke-2.png differ
diff --git a/static/img/gcp-gke/antmedia-gke-3.png b/static/img/gcp-gke/antmedia-gke-3.png
index bde4f802..5abaa189 100644
Binary files a/static/img/gcp-gke/antmedia-gke-3.png and b/static/img/gcp-gke/antmedia-gke-3.png differ
diff --git a/static/img/gcp-gke/antmedia-gke-4.png b/static/img/gcp-gke/antmedia-gke-4.png
index f58ac379..1c1b350c 100644
Binary files a/static/img/gcp-gke/antmedia-gke-4.png and b/static/img/gcp-gke/antmedia-gke-4.png differ
diff --git a/static/img/gcp-gke/antmedia-gke-5.png b/static/img/gcp-gke/antmedia-gke-5.png
index d951eec0..3e6d5c89 100644
Binary files a/static/img/gcp-gke/antmedia-gke-5.png and b/static/img/gcp-gke/antmedia-gke-5.png differ
diff --git a/static/img/gcp-gke/antmedia-gke-6.png b/static/img/gcp-gke/antmedia-gke-6.png
index 5943c64c..e93411ca 100644
Binary files a/static/img/gcp-gke/antmedia-gke-6.png and b/static/img/gcp-gke/antmedia-gke-6.png differ
diff --git a/static/img/gcp-gke/antmedia-gke-7.png b/static/img/gcp-gke/antmedia-gke-7.png
index 2eb527e7..f42ce3f1 100644
Binary files a/static/img/gcp-gke/antmedia-gke-7.png and b/static/img/gcp-gke/antmedia-gke-7.png differ
diff --git a/static/img/generate-jwt-expire-time.png b/static/img/generate-jwt-expire-time.png
index 99c73606..b138af61 100644
Binary files a/static/img/generate-jwt-expire-time.png and b/static/img/generate-jwt-expire-time.png differ
diff --git a/static/img/generate-jwt-stream-token-with-expiration.png b/static/img/generate-jwt-stream-token-with-expiration.png
index c0f19b5a..2559b132 100644
Binary files a/static/img/generate-jwt-stream-token-with-expiration.png and b/static/img/generate-jwt-stream-token-with-expiration.png differ
diff --git a/static/img/generate-jwt-stream-token.png b/static/img/generate-jwt-stream-token.png
index 02efce27..c0010801 100644
Binary files a/static/img/generate-jwt-stream-token.png and b/static/img/generate-jwt-stream-token.png differ
diff --git a/static/img/generate_jwt_token.png b/static/img/generate_jwt_token.png
index 69aff8dc..87a4efce 100644
Binary files a/static/img/generate_jwt_token.png and b/static/img/generate_jwt_token.png differ
diff --git a/static/img/get-started/user-management/user-management.png b/static/img/get-started/user-management/user-management.png
index 4df62a6b..519995e2 100644
Binary files a/static/img/get-started/user-management/user-management.png and b/static/img/get-started/user-management/user-management.png differ
diff --git a/static/img/getting-started/sample-tools-apps/playing.png b/static/img/getting-started/sample-tools-apps/playing.png
index 40261f8d..7de7009d 100644
Binary files a/static/img/getting-started/sample-tools-apps/playing.png and b/static/img/getting-started/sample-tools-apps/playing.png differ
diff --git a/static/img/getting-started/sample-tools-apps/publishing.png b/static/img/getting-started/sample-tools-apps/publishing.png
index 31413cff..26ced4bd 100644
Binary files a/static/img/getting-started/sample-tools-apps/publishing.png and b/static/img/getting-started/sample-tools-apps/publishing.png differ
diff --git a/static/img/gpu(1).png b/static/img/gpu(1).png
index 4e1f43be..e589f637 100644
Binary files a/static/img/gpu(1).png and b/static/img/gpu(1).png differ
diff --git a/static/img/gpu.png b/static/img/gpu.png
index 02e9d170..88f53f99 100644
Binary files a/static/img/gpu.png and b/static/img/gpu.png differ
diff --git a/static/img/grafana1.png b/static/img/grafana1.png
index 3345aa5b..3a5cb89f 100644
Binary files a/static/img/grafana1.png and b/static/img/grafana1.png differ
diff --git a/static/img/grafana2.png b/static/img/grafana2.png
index 4e8cdaf4..9cb2a3f3 100644
Binary files a/static/img/grafana2.png and b/static/img/grafana2.png differ
diff --git a/static/img/grafana3.png b/static/img/grafana3.png
index 53f06b4d..a14be0f2 100644
Binary files a/static/img/grafana3.png and b/static/img/grafana3.png differ
diff --git a/static/img/grafana3_1.png b/static/img/grafana3_1.png
index aa7113b0..b14d93d6 100644
Binary files a/static/img/grafana3_1.png and b/static/img/grafana3_1.png differ
diff --git a/static/img/grafana4.png b/static/img/grafana4.png
index efbc302a..e1d05648 100644
Binary files a/static/img/grafana4.png and b/static/img/grafana4.png differ
diff --git a/static/img/grafana5.png b/static/img/grafana5.png
index 8b3afd5c..63f107b3 100644
Binary files a/static/img/grafana5.png and b/static/img/grafana5.png differ
diff --git a/static/img/grafana6.png b/static/img/grafana6.png
index d847cb87..31717779 100644
Binary files a/static/img/grafana6.png and b/static/img/grafana6.png differ
diff --git a/static/img/grafana7.png b/static/img/grafana7.png
index e67a5d7b..27647281 100644
Binary files a/static/img/grafana7.png and b/static/img/grafana7.png differ
diff --git a/static/img/grafana_telegram_1.png b/static/img/grafana_telegram_1.png
index 1c03f57a..1349014f 100644
Binary files a/static/img/grafana_telegram_1.png and b/static/img/grafana_telegram_1.png differ
diff --git a/static/img/grafana_telegram_2.png b/static/img/grafana_telegram_2.png
index 4174a670..2ed4473d 100644
Binary files a/static/img/grafana_telegram_2.png and b/static/img/grafana_telegram_2.png differ
diff --git a/static/img/grafana_telegram_3.png b/static/img/grafana_telegram_3.png
index a290d23e..a9d463d5 100644
Binary files a/static/img/grafana_telegram_3.png and b/static/img/grafana_telegram_3.png differ
diff --git a/static/img/grafana_telegram_5.png b/static/img/grafana_telegram_5.png
index afba9492..5e201b0b 100644
Binary files a/static/img/grafana_telegram_5.png and b/static/img/grafana_telegram_5.png differ
diff --git a/static/img/graylog-1.png b/static/img/graylog-1.png
index 1bf9c739..c562d6e9 100644
Binary files a/static/img/graylog-1.png and b/static/img/graylog-1.png differ
diff --git a/static/img/graylog-2.png b/static/img/graylog-2.png
index 54208768..1209226e 100644
Binary files a/static/img/graylog-2.png and b/static/img/graylog-2.png differ
diff --git a/static/img/graylog-3.png b/static/img/graylog-3.png
index 7e248ec0..31e3d588 100644
Binary files a/static/img/graylog-3.png and b/static/img/graylog-3.png differ
diff --git a/static/img/graylog-4.png b/static/img/graylog-4.png
index a947bf1d..c7e46497 100644
Binary files a/static/img/graylog-4.png and b/static/img/graylog-4.png differ
diff --git a/static/img/graylog-5.png b/static/img/graylog-5.png
index a56d1233..b6729e9d 100644
Binary files a/static/img/graylog-5.png and b/static/img/graylog-5.png differ
diff --git a/static/img/haproxy_monitoring.png b/static/img/haproxy_monitoring.png
index 43175f4d..a655c585 100644
Binary files a/static/img/haproxy_monitoring.png and b/static/img/haproxy_monitoring.png differ
diff --git a/static/img/haproxyssltermination.png b/static/img/haproxyssltermination.png
index 875d297b..d6d8b5d7 100644
Binary files a/static/img/haproxyssltermination.png and b/static/img/haproxyssltermination.png differ
diff --git a/static/img/helm.svg b/static/img/helm.svg
index 1e2db8a2..2ade67c4 100644
--- a/static/img/helm.svg
+++ b/static/img/helm.svg
@@ -1,28 +1 @@
-
-
+
\ No newline at end of file
diff --git a/static/img/hls_datetime.png b/static/img/hls_datetime.png
index 18a2aa0d..214d4f25 100644
Binary files a/static/img/hls_datetime.png and b/static/img/hls_datetime.png differ
diff --git a/static/img/image(10).png b/static/img/image(10).png
index c47d16e2..408bcfe7 100644
Binary files a/static/img/image(10).png and b/static/img/image(10).png differ
diff --git a/static/img/image(11).png b/static/img/image(11).png
index 0025f666..35724b38 100644
Binary files a/static/img/image(11).png and b/static/img/image(11).png differ
diff --git a/static/img/image(12).png b/static/img/image(12).png
index 4563bd9c..8d09d202 100644
Binary files a/static/img/image(12).png and b/static/img/image(12).png differ
diff --git a/static/img/image(13).png b/static/img/image(13).png
index 1d51d0d7..4f81f9c5 100644
Binary files a/static/img/image(13).png and b/static/img/image(13).png differ
diff --git a/static/img/image(14).png b/static/img/image(14).png
index c879e6de..c8f3ea95 100644
Binary files a/static/img/image(14).png and b/static/img/image(14).png differ
diff --git a/static/img/image(15).png b/static/img/image(15).png
index ff09e9cc..9f670c02 100644
Binary files a/static/img/image(15).png and b/static/img/image(15).png differ
diff --git a/static/img/image(16).png b/static/img/image(16).png
index 0541fa53..3279215a 100644
Binary files a/static/img/image(16).png and b/static/img/image(16).png differ
diff --git a/static/img/image(17).png b/static/img/image(17).png
index c5da6f85..bb0624a6 100644
Binary files a/static/img/image(17).png and b/static/img/image(17).png differ
diff --git a/static/img/image(18).png b/static/img/image(18).png
index 38207dbe..befbb331 100644
Binary files a/static/img/image(18).png and b/static/img/image(18).png differ
diff --git a/static/img/image(19).png b/static/img/image(19).png
index 6124bc5c..ce5f2676 100644
Binary files a/static/img/image(19).png and b/static/img/image(19).png differ
diff --git a/static/img/image(2).png b/static/img/image(2).png
index 0a0bd0a3..1740af79 100644
Binary files a/static/img/image(2).png and b/static/img/image(2).png differ
diff --git a/static/img/image(20).png b/static/img/image(20).png
index f089af84..95857a57 100644
Binary files a/static/img/image(20).png and b/static/img/image(20).png differ
diff --git a/static/img/image(21).png b/static/img/image(21).png
index b6eb7664..1a62fd11 100644
Binary files a/static/img/image(21).png and b/static/img/image(21).png differ
diff --git a/static/img/image(22).png b/static/img/image(22).png
index 4592be10..9dce59b0 100644
Binary files a/static/img/image(22).png and b/static/img/image(22).png differ
diff --git a/static/img/image(23).png b/static/img/image(23).png
index d47aad4f..c24cbbb7 100644
Binary files a/static/img/image(23).png and b/static/img/image(23).png differ
diff --git a/static/img/image(24).png b/static/img/image(24).png
index c447d43d..fe11e67a 100644
Binary files a/static/img/image(24).png and b/static/img/image(24).png differ
diff --git a/static/img/image(25).png b/static/img/image(25).png
index c80b79cc..dfdc48fb 100644
Binary files a/static/img/image(25).png and b/static/img/image(25).png differ
diff --git a/static/img/image(27).png b/static/img/image(27).png
index 6558b979..7f90fdff 100644
Binary files a/static/img/image(27).png and b/static/img/image(27).png differ
diff --git a/static/img/image(28).png b/static/img/image(28).png
index 17ad5a81..43214b40 100644
Binary files a/static/img/image(28).png and b/static/img/image(28).png differ
diff --git a/static/img/image(29).png b/static/img/image(29).png
index 9bce0b3d..01b28a62 100644
Binary files a/static/img/image(29).png and b/static/img/image(29).png differ
diff --git a/static/img/image(3).png b/static/img/image(3).png
index d17faa50..92d16ed6 100644
Binary files a/static/img/image(3).png and b/static/img/image(3).png differ
diff --git a/static/img/image(30).png b/static/img/image(30).png
index 9101cb2d..60bcc738 100644
Binary files a/static/img/image(30).png and b/static/img/image(30).png differ
diff --git a/static/img/image(31).png b/static/img/image(31).png
index 03009273..d6a77c4e 100644
Binary files a/static/img/image(31).png and b/static/img/image(31).png differ
diff --git a/static/img/image(32).png b/static/img/image(32).png
index 38916315..38c1f605 100644
Binary files a/static/img/image(32).png and b/static/img/image(32).png differ
diff --git a/static/img/image(33).png b/static/img/image(33).png
index 8b0c7324..6ff4b585 100644
Binary files a/static/img/image(33).png and b/static/img/image(33).png differ
diff --git a/static/img/image(34).png b/static/img/image(34).png
index daf58645..10f21b12 100644
Binary files a/static/img/image(34).png and b/static/img/image(34).png differ
diff --git a/static/img/image(35).png b/static/img/image(35).png
index 273e743b..4d0ba32d 100644
Binary files a/static/img/image(35).png and b/static/img/image(35).png differ
diff --git a/static/img/image(36).png b/static/img/image(36).png
index c6cd7926..97424a67 100644
Binary files a/static/img/image(36).png and b/static/img/image(36).png differ
diff --git a/static/img/image(37).png b/static/img/image(37).png
index 02c70db8..5395fbe4 100644
Binary files a/static/img/image(37).png and b/static/img/image(37).png differ
diff --git a/static/img/image(38).png b/static/img/image(38).png
index 5eeb783f..f6ac20e1 100644
Binary files a/static/img/image(38).png and b/static/img/image(38).png differ
diff --git a/static/img/image(39).png b/static/img/image(39).png
index f679b754..3620973e 100644
Binary files a/static/img/image(39).png and b/static/img/image(39).png differ
diff --git a/static/img/image(4).png b/static/img/image(4).png
index 2a98a695..3b8a2942 100644
Binary files a/static/img/image(4).png and b/static/img/image(4).png differ
diff --git a/static/img/image(40).png b/static/img/image(40).png
index 5f581b99..aab3c729 100644
Binary files a/static/img/image(40).png and b/static/img/image(40).png differ
diff --git a/static/img/image(41).png b/static/img/image(41).png
index 3b214cd7..a3c8652b 100644
Binary files a/static/img/image(41).png and b/static/img/image(41).png differ
diff --git a/static/img/image(42).png b/static/img/image(42).png
index c27a473d..89cc7ffc 100644
Binary files a/static/img/image(42).png and b/static/img/image(42).png differ
diff --git a/static/img/image(43).png b/static/img/image(43).png
index 40693a86..d9c4d890 100644
Binary files a/static/img/image(43).png and b/static/img/image(43).png differ
diff --git a/static/img/image(44).png b/static/img/image(44).png
index e1d5b6ba..cf6bf76d 100644
Binary files a/static/img/image(44).png and b/static/img/image(44).png differ
diff --git a/static/img/image(45).png b/static/img/image(45).png
index 48c44670..88abac42 100644
Binary files a/static/img/image(45).png and b/static/img/image(45).png differ
diff --git a/static/img/image(46).png b/static/img/image(46).png
index 6f3fd53a..2a0ec1da 100644
Binary files a/static/img/image(46).png and b/static/img/image(46).png differ
diff --git a/static/img/image(47).png b/static/img/image(47).png
index 17419579..e1da83b2 100644
Binary files a/static/img/image(47).png and b/static/img/image(47).png differ
diff --git a/static/img/image(48).png b/static/img/image(48).png
index af41c2d3..a91cae86 100644
Binary files a/static/img/image(48).png and b/static/img/image(48).png differ
diff --git a/static/img/image(49).png b/static/img/image(49).png
index b645efce..92e7e9e9 100644
Binary files a/static/img/image(49).png and b/static/img/image(49).png differ
diff --git a/static/img/image(5).png b/static/img/image(5).png
index 82341c2c..a0ddc86b 100644
Binary files a/static/img/image(5).png and b/static/img/image(5).png differ
diff --git a/static/img/image(50).png b/static/img/image(50).png
index ead29759..af9d6316 100644
Binary files a/static/img/image(50).png and b/static/img/image(50).png differ
diff --git a/static/img/image(51).png b/static/img/image(51).png
index 96dc4d0c..7512a29a 100644
Binary files a/static/img/image(51).png and b/static/img/image(51).png differ
diff --git a/static/img/image(52).png b/static/img/image(52).png
index c55adc2a..64ee3c1e 100644
Binary files a/static/img/image(52).png and b/static/img/image(52).png differ
diff --git a/static/img/image(53).png b/static/img/image(53).png
index d4d9e7ed..969074af 100644
Binary files a/static/img/image(53).png and b/static/img/image(53).png differ
diff --git a/static/img/image(54).png b/static/img/image(54).png
index 4d892e10..b4a4cc71 100644
Binary files a/static/img/image(54).png and b/static/img/image(54).png differ
diff --git a/static/img/image(55).png b/static/img/image(55).png
index bd7cc9a2..8fca8ab4 100644
Binary files a/static/img/image(55).png and b/static/img/image(55).png differ
diff --git a/static/img/image(56).png b/static/img/image(56).png
index ff86439f..ebb793db 100644
Binary files a/static/img/image(56).png and b/static/img/image(56).png differ
diff --git a/static/img/image(57).png b/static/img/image(57).png
index 158b02e7..9851f6b0 100644
Binary files a/static/img/image(57).png and b/static/img/image(57).png differ
diff --git a/static/img/image(58).png b/static/img/image(58).png
index 27f70f77..f761e38c 100644
Binary files a/static/img/image(58).png and b/static/img/image(58).png differ
diff --git a/static/img/image(59).png b/static/img/image(59).png
index 55d61550..62ebf81d 100644
Binary files a/static/img/image(59).png and b/static/img/image(59).png differ
diff --git a/static/img/image(6).png b/static/img/image(6).png
index 426ad32e..d861c14a 100644
Binary files a/static/img/image(6).png and b/static/img/image(6).png differ
diff --git a/static/img/image(60).png b/static/img/image(60).png
index 5615e46e..1f627d37 100644
Binary files a/static/img/image(60).png and b/static/img/image(60).png differ
diff --git a/static/img/image(61).png b/static/img/image(61).png
index edb12344..6928d45f 100644
Binary files a/static/img/image(61).png and b/static/img/image(61).png differ
diff --git a/static/img/image(62).png b/static/img/image(62).png
index f9a6f163..19d33512 100644
Binary files a/static/img/image(62).png and b/static/img/image(62).png differ
diff --git a/static/img/image(63).png b/static/img/image(63).png
index cf419a6d..7ab082a7 100644
Binary files a/static/img/image(63).png and b/static/img/image(63).png differ
diff --git a/static/img/image(64).png b/static/img/image(64).png
index 62e7f695..4d262343 100644
Binary files a/static/img/image(64).png and b/static/img/image(64).png differ
diff --git a/static/img/image(65).png b/static/img/image(65).png
index 288a80e1..0fcb5743 100644
Binary files a/static/img/image(65).png and b/static/img/image(65).png differ
diff --git a/static/img/image(66).png b/static/img/image(66).png
index 7ee6eca3..e2d75438 100644
Binary files a/static/img/image(66).png and b/static/img/image(66).png differ
diff --git a/static/img/image(67).png b/static/img/image(67).png
index 5ef62648..4654b66a 100644
Binary files a/static/img/image(67).png and b/static/img/image(67).png differ
diff --git a/static/img/image(68).png b/static/img/image(68).png
index f220edb0..0f1e87a2 100644
Binary files a/static/img/image(68).png and b/static/img/image(68).png differ
diff --git a/static/img/image(69).png b/static/img/image(69).png
index 697f966b..8aa9e801 100644
Binary files a/static/img/image(69).png and b/static/img/image(69).png differ
diff --git a/static/img/image(7).png b/static/img/image(7).png
index d3ad54e8..68229f5e 100644
Binary files a/static/img/image(7).png and b/static/img/image(7).png differ
diff --git a/static/img/image(70).png b/static/img/image(70).png
index dc07fa30..d86f0f1e 100644
Binary files a/static/img/image(70).png and b/static/img/image(70).png differ
diff --git a/static/img/image(71).png b/static/img/image(71).png
index 7b609b94..164ca8e6 100644
Binary files a/static/img/image(71).png and b/static/img/image(71).png differ
diff --git a/static/img/image(72).png b/static/img/image(72).png
index e4341757..135605ad 100644
Binary files a/static/img/image(72).png and b/static/img/image(72).png differ
diff --git a/static/img/image(73).png b/static/img/image(73).png
index b6296b6c..ac4d0f77 100644
Binary files a/static/img/image(73).png and b/static/img/image(73).png differ
diff --git a/static/img/image(74).png b/static/img/image(74).png
index 87b043dd..73beb2af 100644
Binary files a/static/img/image(74).png and b/static/img/image(74).png differ
diff --git a/static/img/image(75).png b/static/img/image(75).png
index 5fc76f73..c1c2b9f9 100644
Binary files a/static/img/image(75).png and b/static/img/image(75).png differ
diff --git a/static/img/image(76).png b/static/img/image(76).png
index 69cc461e..e810684e 100644
Binary files a/static/img/image(76).png and b/static/img/image(76).png differ
diff --git a/static/img/image(77).png b/static/img/image(77).png
index 6c71f445..dc75e4ee 100644
Binary files a/static/img/image(77).png and b/static/img/image(77).png differ
diff --git a/static/img/image(8).png b/static/img/image(8).png
index aef18b4a..202baec6 100644
Binary files a/static/img/image(8).png and b/static/img/image(8).png differ
diff --git a/static/img/image(83).png b/static/img/image(83).png
index 33bfe79c..0aac0a16 100644
Binary files a/static/img/image(83).png and b/static/img/image(83).png differ
diff --git a/static/img/image(84).png b/static/img/image(84).png
index b6c0676b..1dcf5a51 100644
Binary files a/static/img/image(84).png and b/static/img/image(84).png differ
diff --git a/static/img/image(85).png b/static/img/image(85).png
index d7c5e7f4..574bcf06 100644
Binary files a/static/img/image(85).png and b/static/img/image(85).png differ
diff --git a/static/img/image(9).png b/static/img/image(9).png
index 56ee74ef..26df36e0 100644
Binary files a/static/img/image(9).png and b/static/img/image(9).png differ
diff --git a/static/img/image-1645080183111.png b/static/img/image-1645080183111.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645080183111.png and b/static/img/image-1645080183111.png differ
diff --git a/static/img/image-1645080183153.png b/static/img/image-1645080183153.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183153.png and b/static/img/image-1645080183153.png differ
diff --git a/static/img/image-1645080183184.png b/static/img/image-1645080183184.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645080183184.png and b/static/img/image-1645080183184.png differ
diff --git a/static/img/image-1645080183214.png b/static/img/image-1645080183214.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183214.png and b/static/img/image-1645080183214.png differ
diff --git a/static/img/image-1645080183253.png b/static/img/image-1645080183253.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645080183253.png and b/static/img/image-1645080183253.png differ
diff --git a/static/img/image-1645080183281.png b/static/img/image-1645080183281.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183281.png and b/static/img/image-1645080183281.png differ
diff --git a/static/img/image-1645080183309.png b/static/img/image-1645080183309.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645080183309.png and b/static/img/image-1645080183309.png differ
diff --git a/static/img/image-1645080183336.png b/static/img/image-1645080183336.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183336.png and b/static/img/image-1645080183336.png differ
diff --git a/static/img/image-1645080183367.png b/static/img/image-1645080183367.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645080183367.png and b/static/img/image-1645080183367.png differ
diff --git a/static/img/image-1645080183394.png b/static/img/image-1645080183394.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183394.png and b/static/img/image-1645080183394.png differ
diff --git a/static/img/image-1645080183422.png b/static/img/image-1645080183422.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645080183422.png and b/static/img/image-1645080183422.png differ
diff --git a/static/img/image-1645080183450.png b/static/img/image-1645080183450.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183450.png and b/static/img/image-1645080183450.png differ
diff --git a/static/img/image-1645080183477.png b/static/img/image-1645080183477.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645080183477.png and b/static/img/image-1645080183477.png differ
diff --git a/static/img/image-1645080183503.png b/static/img/image-1645080183503.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183503.png and b/static/img/image-1645080183503.png differ
diff --git a/static/img/image-1645080183530.png b/static/img/image-1645080183530.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645080183530.png and b/static/img/image-1645080183530.png differ
diff --git a/static/img/image-1645080183556.png b/static/img/image-1645080183556.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183556.png and b/static/img/image-1645080183556.png differ
diff --git a/static/img/image-1645080183614.png b/static/img/image-1645080183614.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183614.png and b/static/img/image-1645080183614.png differ
diff --git a/static/img/image-1645080183643.png b/static/img/image-1645080183643.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645080183643.png and b/static/img/image-1645080183643.png differ
diff --git a/static/img/image-1645080183669.png b/static/img/image-1645080183669.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183669.png and b/static/img/image-1645080183669.png differ
diff --git a/static/img/image-1645080183696.png b/static/img/image-1645080183696.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645080183696.png and b/static/img/image-1645080183696.png differ
diff --git a/static/img/image-1645080183723.png b/static/img/image-1645080183723.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183723.png and b/static/img/image-1645080183723.png differ
diff --git a/static/img/image-1645080183749.png b/static/img/image-1645080183749.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183749.png and b/static/img/image-1645080183749.png differ
diff --git a/static/img/image-1645080183776.png b/static/img/image-1645080183776.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183776.png and b/static/img/image-1645080183776.png differ
diff --git a/static/img/image-1645080183810.png b/static/img/image-1645080183810.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183810.png and b/static/img/image-1645080183810.png differ
diff --git a/static/img/image-1645080183840.png b/static/img/image-1645080183840.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183840.png and b/static/img/image-1645080183840.png differ
diff --git a/static/img/image-1645080183867.png b/static/img/image-1645080183867.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183867.png and b/static/img/image-1645080183867.png differ
diff --git a/static/img/image-1645080183896.png b/static/img/image-1645080183896.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183896.png and b/static/img/image-1645080183896.png differ
diff --git a/static/img/image-1645080183929.png b/static/img/image-1645080183929.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183929.png and b/static/img/image-1645080183929.png differ
diff --git a/static/img/image-1645080183955.png b/static/img/image-1645080183955.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183955.png and b/static/img/image-1645080183955.png differ
diff --git a/static/img/image-1645080183982.png b/static/img/image-1645080183982.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080183982.png and b/static/img/image-1645080183982.png differ
diff --git a/static/img/image-1645080184008.png b/static/img/image-1645080184008.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080184008.png and b/static/img/image-1645080184008.png differ
diff --git a/static/img/image-1645080184035.png b/static/img/image-1645080184035.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080184035.png and b/static/img/image-1645080184035.png differ
diff --git a/static/img/image-1645080184061.png b/static/img/image-1645080184061.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080184061.png and b/static/img/image-1645080184061.png differ
diff --git a/static/img/image-1645080184087.png b/static/img/image-1645080184087.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080184087.png and b/static/img/image-1645080184087.png differ
diff --git a/static/img/image-1645080184114.png b/static/img/image-1645080184114.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080184114.png and b/static/img/image-1645080184114.png differ
diff --git a/static/img/image-1645080184140.png b/static/img/image-1645080184140.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080184140.png and b/static/img/image-1645080184140.png differ
diff --git a/static/img/image-1645080184170.png b/static/img/image-1645080184170.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080184170.png and b/static/img/image-1645080184170.png differ
diff --git a/static/img/image-1645080184197.png b/static/img/image-1645080184197.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080184197.png and b/static/img/image-1645080184197.png differ
diff --git a/static/img/image-1645080184223.png b/static/img/image-1645080184223.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645080184223.png and b/static/img/image-1645080184223.png differ
diff --git a/static/img/image-1645088850464.png b/static/img/image-1645088850464.png
index 0951b257..224d04bd 100644
Binary files a/static/img/image-1645088850464.png and b/static/img/image-1645088850464.png differ
diff --git a/static/img/image-1645088966529.png b/static/img/image-1645088966529.png
index c2461b95..0982a789 100644
Binary files a/static/img/image-1645088966529.png and b/static/img/image-1645088966529.png differ
diff --git a/static/img/image-1645105628540.png b/static/img/image-1645105628540.png
index b3fc3ebb..21a5b680 100644
Binary files a/static/img/image-1645105628540.png and b/static/img/image-1645105628540.png differ
diff --git a/static/img/image-1645111368769.png b/static/img/image-1645111368769.png
index 91296437..7ebc0427 100644
Binary files a/static/img/image-1645111368769.png and b/static/img/image-1645111368769.png differ
diff --git a/static/img/image-1645113575789.png b/static/img/image-1645113575789.png
index 7e97e4e2..d8ffae96 100644
Binary files a/static/img/image-1645113575789.png and b/static/img/image-1645113575789.png differ
diff --git a/static/img/image-1645113728234.png b/static/img/image-1645113728234.png
index 75671ab2..f5de10b2 100644
Binary files a/static/img/image-1645113728234.png and b/static/img/image-1645113728234.png differ
diff --git a/static/img/image-1645113777763.png b/static/img/image-1645113777763.png
index 72e9e5a8..711a9352 100644
Binary files a/static/img/image-1645113777763.png and b/static/img/image-1645113777763.png differ
diff --git a/static/img/image-1645118331005.png b/static/img/image-1645118331005.png
index 4147a3ef..fdcefe90 100644
Binary files a/static/img/image-1645118331005.png and b/static/img/image-1645118331005.png differ
diff --git a/static/img/image-1645168998733.png b/static/img/image-1645168998733.png
index 0f49944e..208facba 100644
Binary files a/static/img/image-1645168998733.png and b/static/img/image-1645168998733.png differ
diff --git a/static/img/image-1645178806898.png b/static/img/image-1645178806898.png
index bae87b53..66c49185 100644
Binary files a/static/img/image-1645178806898.png and b/static/img/image-1645178806898.png differ
diff --git a/static/img/image-1645178854491.png b/static/img/image-1645178854491.png
index e9c660c6..4319abd8 100644
Binary files a/static/img/image-1645178854491.png and b/static/img/image-1645178854491.png differ
diff --git a/static/img/image-1645190541856.png b/static/img/image-1645190541856.png
index ec946209..3a0e3689 100644
Binary files a/static/img/image-1645190541856.png and b/static/img/image-1645190541856.png differ
diff --git a/static/img/image-1645191373332.png b/static/img/image-1645191373332.png
index 673b17d8..8fb6832f 100644
Binary files a/static/img/image-1645191373332.png and b/static/img/image-1645191373332.png differ
diff --git a/static/img/image-1645191401746.png b/static/img/image-1645191401746.png
index bdafb101..56bd8c27 100644
Binary files a/static/img/image-1645191401746.png and b/static/img/image-1645191401746.png differ
diff --git a/static/img/image-1645195915640.png b/static/img/image-1645195915640.png
index f8913af6..ac66c878 100644
Binary files a/static/img/image-1645195915640.png and b/static/img/image-1645195915640.png differ
diff --git a/static/img/image-1645437714786.png b/static/img/image-1645437714786.png
index e54e1cb4..e995ae84 100644
Binary files a/static/img/image-1645437714786.png and b/static/img/image-1645437714786.png differ
diff --git a/static/img/image-1645442735337.png b/static/img/image-1645442735337.png
index c4e02049..bc36cb9a 100644
Binary files a/static/img/image-1645442735337.png and b/static/img/image-1645442735337.png differ
diff --git a/static/img/image-1645442770087.png b/static/img/image-1645442770087.png
index 786d9008..79c87008 100644
Binary files a/static/img/image-1645442770087.png and b/static/img/image-1645442770087.png differ
diff --git a/static/img/image-1645442842621.png b/static/img/image-1645442842621.png
index e26960f7..b07525a1 100644
Binary files a/static/img/image-1645442842621.png and b/static/img/image-1645442842621.png differ
diff --git a/static/img/image-1645442879397.png b/static/img/image-1645442879397.png
index 56a67564..0621858f 100644
Binary files a/static/img/image-1645442879397.png and b/static/img/image-1645442879397.png differ
diff --git a/static/img/image-1645445267761.png b/static/img/image-1645445267761.png
index d326c594..c734d3b5 100644
Binary files a/static/img/image-1645445267761.png and b/static/img/image-1645445267761.png differ
diff --git a/static/img/image-1645445342702.png b/static/img/image-1645445342702.png
index 44256486..ac07bd01 100644
Binary files a/static/img/image-1645445342702.png and b/static/img/image-1645445342702.png differ
diff --git a/static/img/image-1645445405563.png b/static/img/image-1645445405563.png
index 0de03e9a..c5505f1e 100644
Binary files a/static/img/image-1645445405563.png and b/static/img/image-1645445405563.png differ
diff --git a/static/img/image-1645445480526.png b/static/img/image-1645445480526.png
index a9b03664..cd0981ee 100644
Binary files a/static/img/image-1645445480526.png and b/static/img/image-1645445480526.png differ
diff --git a/static/img/image-1645445619577.png b/static/img/image-1645445619577.png
index 458626e2..b0e530ea 100644
Binary files a/static/img/image-1645445619577.png and b/static/img/image-1645445619577.png differ
diff --git a/static/img/image-1645447048346.png b/static/img/image-1645447048346.png
index 4bd38745..3ce3f67b 100644
Binary files a/static/img/image-1645447048346.png and b/static/img/image-1645447048346.png differ
diff --git a/static/img/image-1645523240043.png b/static/img/image-1645523240043.png
index 8cab6ec9..4886fd82 100644
Binary files a/static/img/image-1645523240043.png and b/static/img/image-1645523240043.png differ
diff --git a/static/img/image-1645523879129.png b/static/img/image-1645523879129.png
index 5d2e0585..1b2690c5 100644
Binary files a/static/img/image-1645523879129.png and b/static/img/image-1645523879129.png differ
diff --git a/static/img/image-1645523922843.png b/static/img/image-1645523922843.png
index 8bd234ed..7975708c 100644
Binary files a/static/img/image-1645523922843.png and b/static/img/image-1645523922843.png differ
diff --git a/static/img/image-1645620577123.png b/static/img/image-1645620577123.png
index 74426696..4577c8a7 100644
Binary files a/static/img/image-1645620577123.png and b/static/img/image-1645620577123.png differ
diff --git a/static/img/image-1645620846989.png b/static/img/image-1645620846989.png
index b4f5b7a0..c7239dc5 100644
Binary files a/static/img/image-1645620846989.png and b/static/img/image-1645620846989.png differ
diff --git a/static/img/image-1645621014333.png b/static/img/image-1645621014333.png
index 8ea571b4..4954acbb 100644
Binary files a/static/img/image-1645621014333.png and b/static/img/image-1645621014333.png differ
diff --git a/static/img/image-1645636228782.png b/static/img/image-1645636228782.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645636228782.png and b/static/img/image-1645636228782.png differ
diff --git a/static/img/image-1645636228815.png b/static/img/image-1645636228815.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636228815.png and b/static/img/image-1645636228815.png differ
diff --git a/static/img/image-1645636228861.png b/static/img/image-1645636228861.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645636228861.png and b/static/img/image-1645636228861.png differ
diff --git a/static/img/image-1645636228890.png b/static/img/image-1645636228890.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636228890.png and b/static/img/image-1645636228890.png differ
diff --git a/static/img/image-1645636228920.png b/static/img/image-1645636228920.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645636228920.png and b/static/img/image-1645636228920.png differ
diff --git a/static/img/image-1645636228949.png b/static/img/image-1645636228949.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636228949.png and b/static/img/image-1645636228949.png differ
diff --git a/static/img/image-1645636228980.png b/static/img/image-1645636228980.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645636228980.png and b/static/img/image-1645636228980.png differ
diff --git a/static/img/image-1645636229011.png b/static/img/image-1645636229011.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229011.png and b/static/img/image-1645636229011.png differ
diff --git a/static/img/image-1645636229047.png b/static/img/image-1645636229047.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645636229047.png and b/static/img/image-1645636229047.png differ
diff --git a/static/img/image-1645636229078.png b/static/img/image-1645636229078.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229078.png and b/static/img/image-1645636229078.png differ
diff --git a/static/img/image-1645636229109.png b/static/img/image-1645636229109.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645636229109.png and b/static/img/image-1645636229109.png differ
diff --git a/static/img/image-1645636229140.png b/static/img/image-1645636229140.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229140.png and b/static/img/image-1645636229140.png differ
diff --git a/static/img/image-1645636229171.png b/static/img/image-1645636229171.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645636229171.png and b/static/img/image-1645636229171.png differ
diff --git a/static/img/image-1645636229201.png b/static/img/image-1645636229201.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229201.png and b/static/img/image-1645636229201.png differ
diff --git a/static/img/image-1645636229231.png b/static/img/image-1645636229231.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645636229231.png and b/static/img/image-1645636229231.png differ
diff --git a/static/img/image-1645636229261.png b/static/img/image-1645636229261.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229261.png and b/static/img/image-1645636229261.png differ
diff --git a/static/img/image-1645636229291.png b/static/img/image-1645636229291.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229291.png and b/static/img/image-1645636229291.png differ
diff --git a/static/img/image-1645636229321.png b/static/img/image-1645636229321.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229321.png and b/static/img/image-1645636229321.png differ
diff --git a/static/img/image-1645636229349.png b/static/img/image-1645636229349.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645636229349.png and b/static/img/image-1645636229349.png differ
diff --git a/static/img/image-1645636229378.png b/static/img/image-1645636229378.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229378.png and b/static/img/image-1645636229378.png differ
diff --git a/static/img/image-1645636229407.png b/static/img/image-1645636229407.png
index 50623f49..3427ca9d 100644
Binary files a/static/img/image-1645636229407.png and b/static/img/image-1645636229407.png differ
diff --git a/static/img/image-1645636229435.png b/static/img/image-1645636229435.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229435.png and b/static/img/image-1645636229435.png differ
diff --git a/static/img/image-1645636229465.png b/static/img/image-1645636229465.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229465.png and b/static/img/image-1645636229465.png differ
diff --git a/static/img/image-1645636229493.png b/static/img/image-1645636229493.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229493.png and b/static/img/image-1645636229493.png differ
diff --git a/static/img/image-1645636229522.png b/static/img/image-1645636229522.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229522.png and b/static/img/image-1645636229522.png differ
diff --git a/static/img/image-1645636229550.png b/static/img/image-1645636229550.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229550.png and b/static/img/image-1645636229550.png differ
diff --git a/static/img/image-1645636229578.png b/static/img/image-1645636229578.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229578.png and b/static/img/image-1645636229578.png differ
diff --git a/static/img/image-1645636229610.png b/static/img/image-1645636229610.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229610.png and b/static/img/image-1645636229610.png differ
diff --git a/static/img/image-1645636229640.png b/static/img/image-1645636229640.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229640.png and b/static/img/image-1645636229640.png differ
diff --git a/static/img/image-1645636229670.png b/static/img/image-1645636229670.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229670.png and b/static/img/image-1645636229670.png differ
diff --git a/static/img/image-1645636229698.png b/static/img/image-1645636229698.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229698.png and b/static/img/image-1645636229698.png differ
diff --git a/static/img/image-1645636229728.png b/static/img/image-1645636229728.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229728.png and b/static/img/image-1645636229728.png differ
diff --git a/static/img/image-1645636229768.png b/static/img/image-1645636229768.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229768.png and b/static/img/image-1645636229768.png differ
diff --git a/static/img/image-1645636229802.png b/static/img/image-1645636229802.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229802.png and b/static/img/image-1645636229802.png differ
diff --git a/static/img/image-1645636229836.png b/static/img/image-1645636229836.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229836.png and b/static/img/image-1645636229836.png differ
diff --git a/static/img/image-1645636229867.png b/static/img/image-1645636229867.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229867.png and b/static/img/image-1645636229867.png differ
diff --git a/static/img/image-1645636229907.png b/static/img/image-1645636229907.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229907.png and b/static/img/image-1645636229907.png differ
diff --git a/static/img/image-1645636229939.png b/static/img/image-1645636229939.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229939.png and b/static/img/image-1645636229939.png differ
diff --git a/static/img/image-1645636229970.png b/static/img/image-1645636229970.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229970.png and b/static/img/image-1645636229970.png differ
diff --git a/static/img/image-1645636229998.png b/static/img/image-1645636229998.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/image-1645636229998.png and b/static/img/image-1645636229998.png differ
diff --git a/static/img/image-1648408340505.png b/static/img/image-1648408340505.png
index f51f3dad..7b7f1c5f 100644
Binary files a/static/img/image-1648408340505.png and b/static/img/image-1648408340505.png differ
diff --git a/static/img/image-1648408390850.png b/static/img/image-1648408390850.png
index 5ea247dd..3a94b8cc 100644
Binary files a/static/img/image-1648408390850.png and b/static/img/image-1648408390850.png differ
diff --git a/static/img/image-1648408489675.png b/static/img/image-1648408489675.png
index f10eef81..5bbb8756 100644
Binary files a/static/img/image-1648408489675.png and b/static/img/image-1648408489675.png differ
diff --git a/static/img/image-1648408511839.png b/static/img/image-1648408511839.png
index e78c5567..67ed79b0 100644
Binary files a/static/img/image-1648408511839.png and b/static/img/image-1648408511839.png differ
diff --git a/static/img/image-1648408532875.png b/static/img/image-1648408532875.png
index ec731bd1..ec4695dd 100644
Binary files a/static/img/image-1648408532875.png and b/static/img/image-1648408532875.png differ
diff --git a/static/img/image-1648408556782.png b/static/img/image-1648408556782.png
index e33235e7..c25c0105 100644
Binary files a/static/img/image-1648408556782.png and b/static/img/image-1648408556782.png differ
diff --git a/static/img/image-1648408574196.png b/static/img/image-1648408574196.png
index 7fd0df72..1f0fb61a 100644
Binary files a/static/img/image-1648408574196.png and b/static/img/image-1648408574196.png differ
diff --git a/static/img/image-1648408591135.png b/static/img/image-1648408591135.png
index 2779f5af..fbf3bf5c 100644
Binary files a/static/img/image-1648408591135.png and b/static/img/image-1648408591135.png differ
diff --git a/static/img/image-1648408610018.png b/static/img/image-1648408610018.png
index ecadcfbb..0219ef96 100644
Binary files a/static/img/image-1648408610018.png and b/static/img/image-1648408610018.png differ
diff --git a/static/img/image-1648408625725.png b/static/img/image-1648408625725.png
index f617fcb8..5f82c277 100644
Binary files a/static/img/image-1648408625725.png and b/static/img/image-1648408625725.png differ
diff --git a/static/img/image-1648581984499.png b/static/img/image-1648581984499.png
index 8f375f2e..d8460910 100644
Binary files a/static/img/image-1648581984499.png and b/static/img/image-1648581984499.png differ
diff --git a/static/img/image-1648753338859.png b/static/img/image-1648753338859.png
index a4f404f2..57097ebd 100644
Binary files a/static/img/image-1648753338859.png and b/static/img/image-1648753338859.png differ
diff --git a/static/img/image-1648753377587.png b/static/img/image-1648753377587.png
index 84dfaa39..d65573b8 100644
Binary files a/static/img/image-1648753377587.png and b/static/img/image-1648753377587.png differ
diff --git a/static/img/image-1648753399871.png b/static/img/image-1648753399871.png
index c4117543..5684c780 100644
Binary files a/static/img/image-1648753399871.png and b/static/img/image-1648753399871.png differ
diff --git a/static/img/image-1648754379709.png b/static/img/image-1648754379709.png
index 9fecbce2..bc0fe525 100644
Binary files a/static/img/image-1648754379709.png and b/static/img/image-1648754379709.png differ
diff --git a/static/img/image-1654599250441.png b/static/img/image-1654599250441.png
index 09a7a14c..51615692 100644
Binary files a/static/img/image-1654599250441.png and b/static/img/image-1654599250441.png differ
diff --git a/static/img/image-1654599372613.png b/static/img/image-1654599372613.png
index 62c4d45b..de8efa84 100644
Binary files a/static/img/image-1654599372613.png and b/static/img/image-1654599372613.png differ
diff --git a/static/img/image-1654599731503.png b/static/img/image-1654599731503.png
index 3e81dc27..0e0a1729 100644
Binary files a/static/img/image-1654599731503.png and b/static/img/image-1654599731503.png differ
diff --git a/static/img/image-1654600749349.png b/static/img/image-1654600749349.png
index 571684d6..97fdf5f9 100644
Binary files a/static/img/image-1654600749349.png and b/static/img/image-1654600749349.png differ
diff --git a/static/img/image-1654601111460.png b/static/img/image-1654601111460.png
index dfa18992..f85796b5 100644
Binary files a/static/img/image-1654601111460.png and b/static/img/image-1654601111460.png differ
diff --git a/static/img/image-1654601140029.png b/static/img/image-1654601140029.png
index 05fd4306..e0127ada 100644
Binary files a/static/img/image-1654601140029.png and b/static/img/image-1654601140029.png differ
diff --git a/static/img/image-1654687508699.png b/static/img/image-1654687508699.png
index 4a70ac9a..ddb5fceb 100644
Binary files a/static/img/image-1654687508699.png and b/static/img/image-1654687508699.png differ
diff --git a/static/img/image-1654687625473.png b/static/img/image-1654687625473.png
index 5a049d06..5e9120dd 100644
Binary files a/static/img/image-1654687625473.png and b/static/img/image-1654687625473.png differ
diff --git a/static/img/image-1654687706637.png b/static/img/image-1654687706637.png
index c4f42af6..ad3a288a 100644
Binary files a/static/img/image-1654687706637.png and b/static/img/image-1654687706637.png differ
diff --git a/static/img/image-1654688010762.png b/static/img/image-1654688010762.png
index aa4c369f..385366b3 100644
Binary files a/static/img/image-1654688010762.png and b/static/img/image-1654688010762.png differ
diff --git a/static/img/image-1654688079112.png b/static/img/image-1654688079112.png
index 7c25ea8e..9ea85a3b 100644
Binary files a/static/img/image-1654688079112.png and b/static/img/image-1654688079112.png differ
diff --git a/static/img/image-1655196972089.png b/static/img/image-1655196972089.png
index 1310a04f..b1df985d 100644
Binary files a/static/img/image-1655196972089.png and b/static/img/image-1655196972089.png differ
diff --git a/static/img/image-1655197140679.png b/static/img/image-1655197140679.png
index a5b3aac4..cf3f6e10 100644
Binary files a/static/img/image-1655197140679.png and b/static/img/image-1655197140679.png differ
diff --git a/static/img/image-1655197421323.png b/static/img/image-1655197421323.png
index 7de7a077..837deb1a 100644
Binary files a/static/img/image-1655197421323.png and b/static/img/image-1655197421323.png differ
diff --git a/static/img/image-1656673042845.png b/static/img/image-1656673042845.png
index 22c18126..4b63ea1c 100644
Binary files a/static/img/image-1656673042845.png and b/static/img/image-1656673042845.png differ
diff --git a/static/img/image-1656673300268.png b/static/img/image-1656673300268.png
index 514184f0..e4f81a3b 100644
Binary files a/static/img/image-1656673300268.png and b/static/img/image-1656673300268.png differ
diff --git a/static/img/image-1665067750280.png b/static/img/image-1665067750280.png
index 62a3e51c..5facb163 100644
Binary files a/static/img/image-1665067750280.png and b/static/img/image-1665067750280.png differ
diff --git a/static/img/image-1665067824644.png b/static/img/image-1665067824644.png
index a6667ba8..2432ad9e 100644
Binary files a/static/img/image-1665067824644.png and b/static/img/image-1665067824644.png differ
diff --git a/static/img/image-1665067873135.png b/static/img/image-1665067873135.png
index e6ab1575..93f22dbe 100644
Binary files a/static/img/image-1665067873135.png and b/static/img/image-1665067873135.png differ
diff --git a/static/img/image-1665067947615.png b/static/img/image-1665067947615.png
index 11c3cb6d..9aa68ac5 100644
Binary files a/static/img/image-1665067947615.png and b/static/img/image-1665067947615.png differ
diff --git a/static/img/image-1665068031722.png b/static/img/image-1665068031722.png
index 07565c6d..93724677 100644
Binary files a/static/img/image-1665068031722.png and b/static/img/image-1665068031722.png differ
diff --git a/static/img/image-1671624507845.png b/static/img/image-1671624507845.png
index 33b0cb50..39d66e7b 100644
Binary files a/static/img/image-1671624507845.png and b/static/img/image-1671624507845.png differ
diff --git a/static/img/image-284429.png b/static/img/image-284429.png
index e1d5b6ba..cf6bf76d 100644
Binary files a/static/img/image-284429.png and b/static/img/image-284429.png differ
diff --git a/static/img/image-284529.png b/static/img/image-284529.png
index 48c44670..88abac42 100644
Binary files a/static/img/image-284529.png and b/static/img/image-284529.png differ
diff --git a/static/img/image-284629.png b/static/img/image-284629.png
index 6f3fd53a..2a0ec1da 100644
Binary files a/static/img/image-284629.png and b/static/img/image-284629.png differ
diff --git a/static/img/image-284729.png b/static/img/image-284729.png
index 17419579..e1da83b2 100644
Binary files a/static/img/image-284729.png and b/static/img/image-284729.png differ
diff --git a/static/img/image-284829.png b/static/img/image-284829.png
index af41c2d3..a91cae86 100644
Binary files a/static/img/image-284829.png and b/static/img/image-284829.png differ
diff --git a/static/img/image-284929.png b/static/img/image-284929.png
index b645efce..92e7e9e9 100644
Binary files a/static/img/image-284929.png and b/static/img/image-284929.png differ
diff --git a/static/img/image-285029.png b/static/img/image-285029.png
index ead29759..af9d6316 100644
Binary files a/static/img/image-285029.png and b/static/img/image-285029.png differ
diff --git a/static/img/image-285129.png b/static/img/image-285129.png
index 96dc4d0c..7512a29a 100644
Binary files a/static/img/image-285129.png and b/static/img/image-285129.png differ
diff --git a/static/img/image-285229.png b/static/img/image-285229.png
index c55adc2a..64ee3c1e 100644
Binary files a/static/img/image-285229.png and b/static/img/image-285229.png differ
diff --git a/static/img/image-285329.png b/static/img/image-285329.png
index d4d9e7ed..969074af 100644
Binary files a/static/img/image-285329.png and b/static/img/image-285329.png differ
diff --git a/static/img/image-285429.png b/static/img/image-285429.png
index 4d892e10..b4a4cc71 100644
Binary files a/static/img/image-285429.png and b/static/img/image-285429.png differ
diff --git a/static/img/image-285529.png b/static/img/image-285529.png
index bd7cc9a2..8fca8ab4 100644
Binary files a/static/img/image-285529.png and b/static/img/image-285529.png differ
diff --git a/static/img/image-285629.png b/static/img/image-285629.png
index ff86439f..ebb793db 100644
Binary files a/static/img/image-285629.png and b/static/img/image-285629.png differ
diff --git a/static/img/image-285729.png b/static/img/image-285729.png
index 158b02e7..9851f6b0 100644
Binary files a/static/img/image-285729.png and b/static/img/image-285729.png differ
diff --git a/static/img/image-285829.png b/static/img/image-285829.png
index 27f70f77..f761e38c 100644
Binary files a/static/img/image-285829.png and b/static/img/image-285829.png differ
diff --git a/static/img/image-285929.png b/static/img/image-285929.png
index 55d61550..62ebf81d 100644
Binary files a/static/img/image-285929.png and b/static/img/image-285929.png differ
diff --git a/static/img/image-286029.png b/static/img/image-286029.png
index 5615e46e..1f627d37 100644
Binary files a/static/img/image-286029.png and b/static/img/image-286029.png differ
diff --git a/static/img/image-286129.png b/static/img/image-286129.png
index edb12344..6928d45f 100644
Binary files a/static/img/image-286129.png and b/static/img/image-286129.png differ
diff --git a/static/img/image-286229.png b/static/img/image-286229.png
index f9a6f163..19d33512 100644
Binary files a/static/img/image-286229.png and b/static/img/image-286229.png differ
diff --git a/static/img/image1.png b/static/img/image1.png
index 72cb86e2..2dfb6675 100644
Binary files a/static/img/image1.png and b/static/img/image1.png differ
diff --git a/static/img/image11.png b/static/img/image11.png
index fe304760..4fb351b2 100644
Binary files a/static/img/image11.png and b/static/img/image11.png differ
diff --git a/static/img/image2.png b/static/img/image2.png
index cc6343e3..93383d43 100644
Binary files a/static/img/image2.png and b/static/img/image2.png differ
diff --git a/static/img/image4.png b/static/img/image4.png
index 2954c499..62420e50 100644
Binary files a/static/img/image4.png and b/static/img/image4.png differ
diff --git a/static/img/image6.png b/static/img/image6.png
index 0934b34a..05691c4c 100644
Binary files a/static/img/image6.png and b/static/img/image6.png differ
diff --git a/static/img/image7.png b/static/img/image7.png
index 6b77005f..603e0db4 100644
Binary files a/static/img/image7.png and b/static/img/image7.png differ
diff --git a/static/img/image8.png b/static/img/image8.png
index b648013c..c2fe272a 100644
Binary files a/static/img/image8.png and b/static/img/image8.png differ
diff --git a/static/img/ios-SDK/UI-view.png b/static/img/ios-SDK/UI-view.png
index dd49e00c..4821940d 100644
Binary files a/static/img/ios-SDK/UI-view.png and b/static/img/ios-SDK/UI-view.png differ
diff --git a/static/img/ios-SDK/add-package.png b/static/img/ios-SDK/add-package.png
index 465bb795..acda3b9f 100644
Binary files a/static/img/ios-SDK/add-package.png and b/static/img/ios-SDK/add-package.png differ
diff --git a/static/img/ios-SDK/add-repo.png b/static/img/ios-SDK/add-repo.png
index 85b3fd46..62bb2e5c 100644
Binary files a/static/img/ios-SDK/add-repo.png and b/static/img/ios-SDK/add-repo.png differ
diff --git a/static/img/ios-SDK/choose-app.png b/static/img/ios-SDK/choose-app.png
index 0a68d973..00f813da 100644
Binary files a/static/img/ios-SDK/choose-app.png and b/static/img/ios-SDK/choose-app.png differ
diff --git a/static/img/ios-SDK/info-list.png b/static/img/ios-SDK/info-list.png
index cb3036cc..3ff23677 100644
Binary files a/static/img/ios-SDK/info-list.png and b/static/img/ios-SDK/info-list.png differ
diff --git a/static/img/ios-SDK/ios-package.png b/static/img/ios-SDK/ios-package.png
index c57573c0..5050e5d5 100644
Binary files a/static/img/ios-SDK/ios-package.png and b/static/img/ios-SDK/ios-package.png differ
diff --git a/static/img/ios-SDK/mobile-premissions.png b/static/img/ios-SDK/mobile-premissions.png
index 4a440700..b696c6f8 100644
Binary files a/static/img/ios-SDK/mobile-premissions.png and b/static/img/ios-SDK/mobile-premissions.png differ
diff --git a/static/img/ios-SDK/naming-app.png b/static/img/ios-SDK/naming-app.png
index a8dd1402..67b251be 100644
Binary files a/static/img/ios-SDK/naming-app.png and b/static/img/ios-SDK/naming-app.png differ
diff --git a/static/img/ios-SDK/play-ios.png b/static/img/ios-SDK/play-ios.png
index 09aeb441..8ea288a2 100644
Binary files a/static/img/ios-SDK/play-ios.png and b/static/img/ios-SDK/play-ios.png differ
diff --git a/static/img/ios-SDK/play.png b/static/img/ios-SDK/play.png
index 654ae0df..427ef64e 100644
Binary files a/static/img/ios-SDK/play.png and b/static/img/ios-SDK/play.png differ
diff --git a/static/img/ios-SDK/playing.png b/static/img/ios-SDK/playing.png
index d532fdde..6f27ac92 100644
Binary files a/static/img/ios-SDK/playing.png and b/static/img/ios-SDK/playing.png differ
diff --git a/static/img/ios-SDK/privacy.png b/static/img/ios-SDK/privacy.png
index 60220665..c6bcf091 100644
Binary files a/static/img/ios-SDK/privacy.png and b/static/img/ios-SDK/privacy.png differ
diff --git a/static/img/ios-SDK/publish.png b/static/img/ios-SDK/publish.png
index e63d0863..ee43f435 100644
Binary files a/static/img/ios-SDK/publish.png and b/static/img/ios-SDK/publish.png differ
diff --git a/static/img/ios-SDK/repo-added.png b/static/img/ios-SDK/repo-added.png
index 4ff06f11..ed6d4a3c 100644
Binary files a/static/img/ios-SDK/repo-added.png and b/static/img/ios-SDK/repo-added.png differ
diff --git a/static/img/ios-SDK/success.png b/static/img/ios-SDK/success.png
index 1413dbd6..47a22b19 100644
Binary files a/static/img/ios-SDK/success.png and b/static/img/ios-SDK/success.png differ
diff --git a/static/img/ios-SDK/ui-kit.png b/static/img/ios-SDK/ui-kit.png
index d3407a50..f78b1672 100644
Binary files a/static/img/ios-SDK/ui-kit.png and b/static/img/ios-SDK/ui-kit.png differ
diff --git a/static/img/ios-SDK/view-controller.png b/static/img/ios-SDK/view-controller.png
index b16b8d57..213ff6ec 100644
Binary files a/static/img/ios-SDK/view-controller.png and b/static/img/ios-SDK/view-controller.png differ
diff --git a/static/img/ios-SDK/view-final.png b/static/img/ios-SDK/view-final.png
index 83862889..2ac1fbd0 100644
Binary files a/static/img/ios-SDK/view-final.png and b/static/img/ios-SDK/view-final.png differ
diff --git a/static/img/ios-SDK/view-play.png b/static/img/ios-SDK/view-play.png
index 1a30a20a..53026e4a 100644
Binary files a/static/img/ios-SDK/view-play.png and b/static/img/ios-SDK/view-play.png differ
diff --git a/static/img/ios-SDK/view-size.png b/static/img/ios-SDK/view-size.png
index 222b164b..5a7973ca 100644
Binary files a/static/img/ios-SDK/view-size.png and b/static/img/ios-SDK/view-size.png differ
diff --git a/static/img/ios-SDK/xcode.png b/static/img/ios-SDK/xcode.png
index ec4b00a1..98a3ff67 100644
Binary files a/static/img/ios-SDK/xcode.png and b/static/img/ios-SDK/xcode.png differ
diff --git a/static/img/ios-screen-share/Untitled 22.png b/static/img/ios-screen-share/Untitled 22.png
index c56aa797..2099eef4 100644
Binary files a/static/img/ios-screen-share/Untitled 22.png and b/static/img/ios-screen-share/Untitled 22.png differ
diff --git a/static/img/ios-screen-share/ios-be01.png b/static/img/ios-screen-share/ios-be01.png
index 44c4ba1d..baf21eeb 100644
Binary files a/static/img/ios-screen-share/ios-be01.png and b/static/img/ios-screen-share/ios-be01.png differ
diff --git a/static/img/ios-screen-share/ios-be02.png b/static/img/ios-screen-share/ios-be02.png
index 9f54be2b..9aa8389c 100644
Binary files a/static/img/ios-screen-share/ios-be02.png and b/static/img/ios-screen-share/ios-be02.png differ
diff --git a/static/img/ios-screen-share/ios-be03.png b/static/img/ios-screen-share/ios-be03.png
index ac23d2ee..11ab5d58 100644
Binary files a/static/img/ios-screen-share/ios-be03.png and b/static/img/ios-screen-share/ios-be03.png differ
diff --git a/static/img/ios-screen-share/ios-be04.png b/static/img/ios-screen-share/ios-be04.png
index a9319953..ff532c6a 100644
Binary files a/static/img/ios-screen-share/ios-be04.png and b/static/img/ios-screen-share/ios-be04.png differ
diff --git a/static/img/ios-screen-share/ios-be05.png b/static/img/ios-screen-share/ios-be05.png
index 7b6fa89b..6866e5f9 100644
Binary files a/static/img/ios-screen-share/ios-be05.png and b/static/img/ios-screen-share/ios-be05.png differ
diff --git a/static/img/ios-screen-share/ios-be06.png b/static/img/ios-screen-share/ios-be06.png
index 9dcb93d9..d03a177d 100644
Binary files a/static/img/ios-screen-share/ios-be06.png and b/static/img/ios-screen-share/ios-be06.png differ
diff --git a/static/img/ios-screen-share/ios-be07.png b/static/img/ios-screen-share/ios-be07.png
index 5f6976fc..0473c490 100644
Binary files a/static/img/ios-screen-share/ios-be07.png and b/static/img/ios-screen-share/ios-be07.png differ
diff --git a/static/img/ios-screen-share/ios-be08.png b/static/img/ios-screen-share/ios-be08.png
index ad1280b7..862796e6 100644
Binary files a/static/img/ios-screen-share/ios-be08.png and b/static/img/ios-screen-share/ios-be08.png differ
diff --git a/static/img/ios-screen-share/ios-be09.png b/static/img/ios-screen-share/ios-be09.png
index 3ebb4a53..f5cd9449 100644
Binary files a/static/img/ios-screen-share/ios-be09.png and b/static/img/ios-screen-share/ios-be09.png differ
diff --git a/static/img/ios-screen-share/ios-be10.png b/static/img/ios-screen-share/ios-be10.png
index 8cde7426..903376f6 100644
Binary files a/static/img/ios-screen-share/ios-be10.png and b/static/img/ios-screen-share/ios-be10.png differ
diff --git a/static/img/ios-screen-share/ios-be11.png b/static/img/ios-screen-share/ios-be11.png
index 2f3510ea..69ec8b08 100644
Binary files a/static/img/ios-screen-share/ios-be11.png and b/static/img/ios-screen-share/ios-be11.png differ
diff --git a/static/img/ios-screen-share/ios-be12.png b/static/img/ios-screen-share/ios-be12.png
index 067030c4..55cd2147 100644
Binary files a/static/img/ios-screen-share/ios-be12.png and b/static/img/ios-screen-share/ios-be12.png differ
diff --git a/static/img/ios-screen-share/ios-be13.png b/static/img/ios-screen-share/ios-be13.png
index 1c82c57d..bf90dbc4 100644
Binary files a/static/img/ios-screen-share/ios-be13.png and b/static/img/ios-screen-share/ios-be13.png differ
diff --git a/static/img/ios-screen-share/ios-be14.png b/static/img/ios-screen-share/ios-be14.png
index 96522055..58757eef 100644
Binary files a/static/img/ios-screen-share/ios-be14.png and b/static/img/ios-screen-share/ios-be14.png differ
diff --git a/static/img/ios-screen-share/ios-be15.png b/static/img/ios-screen-share/ios-be15.png
index 25d2bcc5..97931164 100644
Binary files a/static/img/ios-screen-share/ios-be15.png and b/static/img/ios-screen-share/ios-be15.png differ
diff --git a/static/img/ios-screen-share/ios-be16.png b/static/img/ios-screen-share/ios-be16.png
index 2a281677..c4d29742 100644
Binary files a/static/img/ios-screen-share/ios-be16.png and b/static/img/ios-screen-share/ios-be16.png differ
diff --git a/static/img/ios-screen-share/ios-be17.png b/static/img/ios-screen-share/ios-be17.png
index 18eeeda0..50e71634 100644
Binary files a/static/img/ios-screen-share/ios-be17.png and b/static/img/ios-screen-share/ios-be17.png differ
diff --git a/static/img/ios-screen-share/ios-be18.png b/static/img/ios-screen-share/ios-be18.png
index 6a362415..f6055889 100644
Binary files a/static/img/ios-screen-share/ios-be18.png and b/static/img/ios-screen-share/ios-be18.png differ
diff --git a/static/img/ios-screen-share/ios-be19.png b/static/img/ios-screen-share/ios-be19.png
index 157c73da..7c3cfa9d 100644
Binary files a/static/img/ios-screen-share/ios-be19.png and b/static/img/ios-screen-share/ios-be19.png differ
diff --git a/static/img/ios-screen-share/ios-be20.png b/static/img/ios-screen-share/ios-be20.png
index de339f5d..188f9884 100644
Binary files a/static/img/ios-screen-share/ios-be20.png and b/static/img/ios-screen-share/ios-be20.png differ
diff --git a/static/img/ios-screen-share/ios-be21.png b/static/img/ios-screen-share/ios-be21.png
index ec3d79bf..1e522248 100644
Binary files a/static/img/ios-screen-share/ios-be21.png and b/static/img/ios-screen-share/ios-be21.png differ
diff --git a/static/img/ios-screen-share/ios-be22.png b/static/img/ios-screen-share/ios-be22.png
index 11ccd2e3..bad4d62a 100644
Binary files a/static/img/ios-screen-share/ios-be22.png and b/static/img/ios-screen-share/ios-be22.png differ
diff --git a/static/img/ios-screen-share/ios-be23.png b/static/img/ios-screen-share/ios-be23.png
index aefc8331..2c501bb1 100644
Binary files a/static/img/ios-screen-share/ios-be23.png and b/static/img/ios-screen-share/ios-be23.png differ
diff --git a/static/img/ios-screen-share/ios-be24.png b/static/img/ios-screen-share/ios-be24.png
index 759b059c..3bc19519 100644
Binary files a/static/img/ios-screen-share/ios-be24.png and b/static/img/ios-screen-share/ios-be24.png differ
diff --git a/static/img/ios-screen-share/ios-be25.png b/static/img/ios-screen-share/ios-be25.png
index d2abebd3..3ba4e213 100644
Binary files a/static/img/ios-screen-share/ios-be25.png and b/static/img/ios-screen-share/ios-be25.png differ
diff --git a/static/img/ios_10.png b/static/img/ios_10.png
index 66f761ae..39b89d08 100644
Binary files a/static/img/ios_10.png and b/static/img/ios_10.png differ
diff --git a/static/img/iosmediacaptureresolutions(1).png b/static/img/iosmediacaptureresolutions(1).png
index 05869126..5b6a7931 100644
Binary files a/static/img/iosmediacaptureresolutions(1).png and b/static/img/iosmediacaptureresolutions(1).png differ
diff --git a/static/img/iosmediacaptureresolutions.png b/static/img/iosmediacaptureresolutions.png
index 43a94a45..b7149fa7 100644
Binary files a/static/img/iosmediacaptureresolutions.png and b/static/img/iosmediacaptureresolutions.png differ
diff --git a/static/img/ip-filter(1).gif b/static/img/ip-filter(1).gif
index d1b5b0ff..761c0c04 100644
Binary files a/static/img/ip-filter(1).gif and b/static/img/ip-filter(1).gif differ
diff --git a/static/img/ipfiltering.png b/static/img/ipfiltering.png
index 0fd75198..0b945402 100644
Binary files a/static/img/ipfiltering.png and b/static/img/ipfiltering.png differ
diff --git a/static/img/jwt-filter-enable.png b/static/img/jwt-filter-enable.png
index cf4c8611..72fcdcdb 100644
Binary files a/static/img/jwt-filter-enable.png and b/static/img/jwt-filter-enable.png differ
diff --git a/static/img/kubernetes-autoscaler-turn(2).png b/static/img/kubernetes-autoscaler-turn(2).png
index f9578a90..810d9e9b 100644
Binary files a/static/img/kubernetes-autoscaler-turn(2).png and b/static/img/kubernetes-autoscaler-turn(2).png differ
diff --git a/static/img/kubernetes/ams-do-marketpace-1.png b/static/img/kubernetes/ams-do-marketpace-1.png
index a0bd7f13..b56d79cb 100644
Binary files a/static/img/kubernetes/ams-do-marketpace-1.png and b/static/img/kubernetes/ams-do-marketpace-1.png differ
diff --git a/static/img/kubernetes/ams-do-marketpace-2.png b/static/img/kubernetes/ams-do-marketpace-2.png
index 31fae2e3..d1dcd277 100644
Binary files a/static/img/kubernetes/ams-do-marketpace-2.png and b/static/img/kubernetes/ams-do-marketpace-2.png differ
diff --git a/static/img/kubernetes/ams-do-marketpace-3.png b/static/img/kubernetes/ams-do-marketpace-3.png
index 0262e52d..29f145d1 100644
Binary files a/static/img/kubernetes/ams-do-marketpace-3.png and b/static/img/kubernetes/ams-do-marketpace-3.png differ
diff --git a/static/img/kubernetes/ams-do-marketpace-4-1.png b/static/img/kubernetes/ams-do-marketpace-4-1.png
index 1abac388..d8be3f46 100644
Binary files a/static/img/kubernetes/ams-do-marketpace-4-1.png and b/static/img/kubernetes/ams-do-marketpace-4-1.png differ
diff --git a/static/img/kubernetes/ams-do-marketpace-4-2.png b/static/img/kubernetes/ams-do-marketpace-4-2.png
index c9fd40e6..da1557b5 100644
Binary files a/static/img/kubernetes/ams-do-marketpace-4-2.png and b/static/img/kubernetes/ams-do-marketpace-4-2.png differ
diff --git a/static/img/logo.svg b/static/img/logo.svg
index f504e539..3f5b50e2 100644
--- a/static/img/logo.svg
+++ b/static/img/logo.svg
@@ -1,88 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/static/img/mediapull-add-external-stream-postman.png b/static/img/mediapull-add-external-stream-postman.png
index b0a49e3c..da19db3a 100644
Binary files a/static/img/mediapull-add-external-stream-postman.png and b/static/img/mediapull-add-external-stream-postman.png differ
diff --git a/static/img/mediapull-broadcasts.png b/static/img/mediapull-broadcasts.png
index 41f7833b..1c0404bf 100644
Binary files a/static/img/mediapull-broadcasts.png and b/static/img/mediapull-broadcasts.png differ
diff --git a/static/img/mediapull-external-stream-added.png b/static/img/mediapull-external-stream-added.png
index 2c53e58c..d9d48202 100644
Binary files a/static/img/mediapull-external-stream-added.png and b/static/img/mediapull-external-stream-added.png differ
diff --git a/static/img/mediapull-external-stream-broadcasting.png b/static/img/mediapull-external-stream-broadcasting.png
index a2e35fe5..001c4c61 100644
Binary files a/static/img/mediapull-external-stream-broadcasting.png and b/static/img/mediapull-external-stream-broadcasting.png differ
diff --git a/static/img/mediapull-external-stream.png b/static/img/mediapull-external-stream.png
index 850c5c87..8bc08551 100644
Binary files a/static/img/mediapull-external-stream.png and b/static/img/mediapull-external-stream.png differ
diff --git a/static/img/mediapull-join-room.png b/static/img/mediapull-join-room.png
index 44c4df68..ffe789c3 100644
Binary files a/static/img/mediapull-join-room.png and b/static/img/mediapull-join-room.png differ
diff --git a/static/img/mediapull-remove-external-stream-postman.png b/static/img/mediapull-remove-external-stream-postman.png
index 4a9e1175..b5f10a29 100644
Binary files a/static/img/mediapull-remove-external-stream-postman.png and b/static/img/mediapull-remove-external-stream-postman.png differ
diff --git a/static/img/mongodb-1.png b/static/img/mongodb-1.png
index 06cf4fa1..422030f0 100644
Binary files a/static/img/mongodb-1.png and b/static/img/mongodb-1.png differ
diff --git a/static/img/mongodb-2.png b/static/img/mongodb-2.png
index a8f7b50f..ce57b9f1 100644
Binary files a/static/img/mongodb-2.png and b/static/img/mongodb-2.png differ
diff --git a/static/img/mongodb-3.png b/static/img/mongodb-3.png
index fc043abc..acc86064 100644
Binary files a/static/img/mongodb-3.png and b/static/img/mongodb-3.png differ
diff --git a/static/img/mongodb-4.png b/static/img/mongodb-4.png
index 984cb964..1507a835 100644
Binary files a/static/img/mongodb-4.png and b/static/img/mongodb-4.png differ
diff --git a/static/img/mongodb-6.png b/static/img/mongodb-6.png
index e9af68d5..0921c8ab 100644
Binary files a/static/img/mongodb-6.png and b/static/img/mongodb-6.png differ
diff --git a/static/img/mongodb-7.png b/static/img/mongodb-7.png
index 141381d5..eada8a6a 100644
Binary files a/static/img/mongodb-7.png and b/static/img/mongodb-7.png differ
diff --git a/static/img/mongodb-8.png b/static/img/mongodb-8.png
index 42f2f608..874a1e6b 100644
Binary files a/static/img/mongodb-8.png and b/static/img/mongodb-8.png differ
diff --git a/static/img/mongodb-9.png b/static/img/mongodb-9.png
index 64584837..4822a749 100644
Binary files a/static/img/mongodb-9.png and b/static/img/mongodb-9.png differ
diff --git a/static/img/mongodb.png b/static/img/mongodb.png
index 1ea1bdfb..825682c6 100644
Binary files a/static/img/mongodb.png and b/static/img/mongodb.png differ
diff --git a/static/img/multilevelcluster.png b/static/img/multilevelcluster.png
index 832070d5..e1742d0f 100644
Binary files a/static/img/multilevelcluster.png and b/static/img/multilevelcluster.png differ
diff --git a/static/img/multitrack-player-1(1).png b/static/img/multitrack-player-1(1).png
index 822b6c1d..95a852aa 100644
Binary files a/static/img/multitrack-player-1(1).png and b/static/img/multitrack-player-1(1).png differ
diff --git a/static/img/multitrack-streams.png b/static/img/multitrack-streams.png
index bda24e60..b4e57421 100644
Binary files a/static/img/multitrack-streams.png and b/static/img/multitrack-streams.png differ
diff --git a/static/img/new_application_form.png b/static/img/new_application_form.png
index b3e78ad3..3fa62115 100644
Binary files a/static/img/new_application_form.png and b/static/img/new_application_form.png differ
diff --git a/static/img/nextjs1.png b/static/img/nextjs1.png
index c1b95919..7d3cfc5a 100644
Binary files a/static/img/nextjs1.png and b/static/img/nextjs1.png differ
diff --git a/static/img/obs-broadcast-health.png b/static/img/obs-broadcast-health.png
index 6b6f8d25..bf747fb8 100644
Binary files a/static/img/obs-broadcast-health.png and b/static/img/obs-broadcast-health.png differ
diff --git a/static/img/obs-encoding-overloaded.png b/static/img/obs-encoding-overloaded.png
index 1cd1ef14..89490169 100644
Binary files a/static/img/obs-encoding-overloaded.png and b/static/img/obs-encoding-overloaded.png differ
diff --git a/static/img/obs-rtmp-image/OBS-Output.png b/static/img/obs-rtmp-image/OBS-Output.png
index cfbf9d70..6b56c190 100644
Binary files a/static/img/obs-rtmp-image/OBS-Output.png and b/static/img/obs-rtmp-image/OBS-Output.png differ
diff --git a/static/img/obs-rtmp-image/OBS-Start-Stream.png b/static/img/obs-rtmp-image/OBS-Start-Stream.png
index a97c88da..70ca1a77 100644
Binary files a/static/img/obs-rtmp-image/OBS-Start-Stream.png and b/static/img/obs-rtmp-image/OBS-Start-Stream.png differ
diff --git a/static/img/obs-rtmp-image/OBS-Status.png b/static/img/obs-rtmp-image/OBS-Status.png
index 60a817c2..c7749d7c 100644
Binary files a/static/img/obs-rtmp-image/OBS-Status.png and b/static/img/obs-rtmp-image/OBS-Status.png differ
diff --git a/static/img/obs-rtmp-image/OBS-Stream-Token.png b/static/img/obs-rtmp-image/OBS-Stream-Token.png
index 6f245458..f547e44b 100644
Binary files a/static/img/obs-rtmp-image/OBS-Stream-Token.png and b/static/img/obs-rtmp-image/OBS-Stream-Token.png differ
diff --git a/static/img/obs-rtmp-image/OBS-Stream.png b/static/img/obs-rtmp-image/OBS-Stream.png
index c3c614a3..f2f2ed1c 100644
Binary files a/static/img/obs-rtmp-image/OBS-Stream.png and b/static/img/obs-rtmp-image/OBS-Stream.png differ
diff --git a/static/img/obs-rtmp-image/OBS-Warning.png b/static/img/obs-rtmp-image/OBS-Warning.png
index f4444cce..461c8a9d 100644
Binary files a/static/img/obs-rtmp-image/OBS-Warning.png and b/static/img/obs-rtmp-image/OBS-Warning.png differ
diff --git a/static/img/obs-stream-settings.png b/static/img/obs-stream-settings.png
index a9ed164b..bc877f58 100644
Binary files a/static/img/obs-stream-settings.png and b/static/img/obs-stream-settings.png differ
diff --git a/static/img/obs_screenshot.jpg b/static/img/obs_screenshot.jpg
index d7c7da8e..66b843bb 100644
Binary files a/static/img/obs_screenshot.jpg and b/static/img/obs_screenshot.jpg differ
diff --git a/static/img/open_workspace_xcode.png b/static/img/open_workspace_xcode.png
index 2dc26db9..4e51acf9 100644
Binary files a/static/img/open_workspace_xcode.png and b/static/img/open_workspace_xcode.png differ
diff --git a/static/img/origin_edge (1).png b/static/img/origin_edge (1).png
index 56f4dbf1..47457831 100644
Binary files a/static/img/origin_edge (1).png and b/static/img/origin_edge (1).png differ
diff --git a/static/img/origin_edge.png b/static/img/origin_edge.png
index 56f4dbf1..47457831 100644
Binary files a/static/img/origin_edge.png and b/static/img/origin_edge.png differ
diff --git a/static/img/periscope-profile-producer.png b/static/img/periscope-profile-producer.png
index 8264dde4..0bca53ff 100644
Binary files a/static/img/periscope-profile-producer.png and b/static/img/periscope-profile-producer.png differ
diff --git a/static/img/periscope-stream-url-stream-key.png b/static/img/periscope-stream-url-stream-key.png
index 84acd1ae..5fb58f8f 100644
Binary files a/static/img/periscope-stream-url-stream-key.png and b/static/img/periscope-stream-url-stream-key.png differ
diff --git a/static/img/playing-live-streams/dash-playing/dash-enabled.png b/static/img/playing-live-streams/dash-playing/dash-enabled.png
index 109f8d02..2a25db4d 100644
Binary files a/static/img/playing-live-streams/dash-playing/dash-enabled.png and b/static/img/playing-live-streams/dash-playing/dash-enabled.png differ
diff --git a/static/img/playing-live-streams/embedded-web-player/embedded-player.png b/static/img/playing-live-streams/embedded-web-player/embedded-player.png
index 069634d0..85ae001c 100644
Binary files a/static/img/playing-live-streams/embedded-web-player/embedded-player.png and b/static/img/playing-live-streams/embedded-web-player/embedded-player.png differ
diff --git a/static/img/playing-live-streams/embedded-web-player/iframe-code.png b/static/img/playing-live-streams/embedded-web-player/iframe-code.png
index 874cbe50..c5c5216b 100644
Binary files a/static/img/playing-live-streams/embedded-web-player/iframe-code.png and b/static/img/playing-live-streams/embedded-web-player/iframe-code.png differ
diff --git a/static/img/playing-live-streams/hls-playing/enabling-id3.png b/static/img/playing-live-streams/hls-playing/enabling-id3.png
index 16bad17a..fa85cbb1 100644
Binary files a/static/img/playing-live-streams/hls-playing/enabling-id3.png and b/static/img/playing-live-streams/hls-playing/enabling-id3.png differ
diff --git a/static/img/playing-live-streams/hls-playing/hls-enabled.png b/static/img/playing-live-streams/hls-playing/hls-enabled.png
index 8d7fd0df..63ba6592 100644
Binary files a/static/img/playing-live-streams/hls-playing/hls-enabled.png and b/static/img/playing-live-streams/hls-playing/hls-enabled.png differ
diff --git a/static/img/playing-live-streams/hls-playing/hls-player.png b/static/img/playing-live-streams/hls-playing/hls-player.png
index b0e48a55..8209db8d 100644
Binary files a/static/img/playing-live-streams/hls-playing/hls-player.png and b/static/img/playing-live-streams/hls-playing/hls-player.png differ
diff --git a/static/img/playing-live-streams/hls-playing/hls-started.png b/static/img/playing-live-streams/hls-playing/hls-started.png
index 2f75908f..c1c29d64 100644
Binary files a/static/img/playing-live-streams/hls-playing/hls-started.png and b/static/img/playing-live-streams/hls-playing/hls-started.png differ
diff --git a/static/img/playing-live-streams/webrtc-playing/play-started.png b/static/img/playing-live-streams/webrtc-playing/play-started.png
index 7edbf20e..1cb5096f 100644
Binary files a/static/img/playing-live-streams/webrtc-playing/play-started.png and b/static/img/playing-live-streams/webrtc-playing/play-started.png differ
diff --git a/static/img/playing-live-streams/webrtc-playing/webrtc-player.png b/static/img/playing-live-streams/webrtc-playing/webrtc-player.png
index 7c040835..b46c3ca3 100644
Binary files a/static/img/playing-live-streams/webrtc-playing/webrtc-player.png and b/static/img/playing-live-streams/webrtc-playing/webrtc-player.png differ
diff --git a/static/img/preview_1.png b/static/img/preview_1.png
index d432e450..762f8fe6 100644
Binary files a/static/img/preview_1.png and b/static/img/preview_1.png differ
diff --git a/static/img/preview_2.png b/static/img/preview_2.png
index d02b12f1..b0751712 100644
Binary files a/static/img/preview_2.png and b/static/img/preview_2.png differ
diff --git a/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Add.png b/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Add.png
index 7635c153..be6ccf40 100644
Binary files a/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Add.png and b/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Add.png differ
diff --git a/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Play.png b/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Play.png
index 9e7dada8..72feccc0 100644
Binary files a/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Play.png and b/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Play.png differ
diff --git a/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Recording.png b/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Recording.png
index 5d195422..61f3635f 100644
Binary files a/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Recording.png and b/static/img/publish-live-stream/IP-Camera-and-External-Sources/IP-Camera-Recording.png differ
diff --git a/static/img/publish-live-stream/IP-Camera-and-External-Sources/Stream-Source.png b/static/img/publish-live-stream/IP-Camera-and-External-Sources/Stream-Source.png
index cfd7e5cc..89f6f6de 100644
Binary files a/static/img/publish-live-stream/IP-Camera-and-External-Sources/Stream-Source.png and b/static/img/publish-live-stream/IP-Camera-and-External-Sources/Stream-Source.png differ
diff --git a/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-options.png b/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-options.png
index 5b6f6f93..882de71c 100644
Binary files a/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-options.png and b/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-options.png differ
diff --git a/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-page.png b/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-page.png
index 101b364a..9e71be1a 100644
Binary files a/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-page.png and b/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-page.png differ
diff --git a/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-publish.png b/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-publish.png
index 1cb8c7e9..4cde6f24 100644
Binary files a/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-publish.png and b/static/img/publish-live-stream/WebRTC/WebRTC-publishing/WebRTC-publish.png differ
diff --git a/static/img/publish-live-stream/XSplit/XSplit-Custom-RTMP.png b/static/img/publish-live-stream/XSplit/XSplit-Custom-RTMP.png
index 61eda884..c4f63f14 100644
Binary files a/static/img/publish-live-stream/XSplit/XSplit-Custom-RTMP.png and b/static/img/publish-live-stream/XSplit/XSplit-Custom-RTMP.png differ
diff --git a/static/img/publish-live-stream/XSplit/XSplit-settings.png b/static/img/publish-live-stream/XSplit/XSplit-settings.png
index 131ea67f..cd15e255 100644
Binary files a/static/img/publish-live-stream/XSplit/XSplit-settings.png and b/static/img/publish-live-stream/XSplit/XSplit-settings.png differ
diff --git a/static/img/publish-live-stream/playlist/advanced-settings.png b/static/img/publish-live-stream/playlist/advanced-settings.png
index 139306a4..8344f97c 100644
Binary files a/static/img/publish-live-stream/playlist/advanced-settings.png and b/static/img/publish-live-stream/playlist/advanced-settings.png differ
diff --git a/static/img/publish-live-stream/playlist/create-playlist.png b/static/img/publish-live-stream/playlist/create-playlist.png
index b69ae564..6865018e 100644
Binary files a/static/img/publish-live-stream/playlist/create-playlist.png and b/static/img/publish-live-stream/playlist/create-playlist.png differ
diff --git a/static/img/publish-live-stream/playlist/hls-flags.png b/static/img/publish-live-stream/playlist/hls-flags.png
index 13822aba..d0e62874 100644
Binary files a/static/img/publish-live-stream/playlist/hls-flags.png and b/static/img/publish-live-stream/playlist/hls-flags.png differ
diff --git a/static/img/publish-live-stream/playlist/hls-settings.png b/static/img/publish-live-stream/playlist/hls-settings.png
index 51c4d732..34655609 100644
Binary files a/static/img/publish-live-stream/playlist/hls-settings.png and b/static/img/publish-live-stream/playlist/hls-settings.png differ
diff --git a/static/img/publish-live-stream/playlist/items.png b/static/img/publish-live-stream/playlist/items.png
index bccab0e8..be75446f 100644
Binary files a/static/img/publish-live-stream/playlist/items.png and b/static/img/publish-live-stream/playlist/items.png differ
diff --git a/static/img/publish-live-stream/playlist/playing-playlist.png b/static/img/publish-live-stream/playlist/playing-playlist.png
index 1cfb9d05..00e400ef 100644
Binary files a/static/img/publish-live-stream/playlist/playing-playlist.png and b/static/img/publish-live-stream/playlist/playing-playlist.png differ
diff --git a/static/img/publish-live-stream/playlist/playlist-creation.png b/static/img/publish-live-stream/playlist/playlist-creation.png
index c9298e6c..16f9b0f4 100644
Binary files a/static/img/publish-live-stream/playlist/playlist-creation.png and b/static/img/publish-live-stream/playlist/playlist-creation.png differ
diff --git a/static/img/publish-live-stream/playlist/playlist-items.png b/static/img/publish-live-stream/playlist/playlist-items.png
index c042eb34..c8c3bd8e 100644
Binary files a/static/img/publish-live-stream/playlist/playlist-items.png and b/static/img/publish-live-stream/playlist/playlist-items.png differ
diff --git a/static/img/publish-live-stream/playlist/playlist-panel.png b/static/img/publish-live-stream/playlist/playlist-panel.png
index 9216369c..0420fbfc 100644
Binary files a/static/img/publish-live-stream/playlist/playlist-panel.png and b/static/img/publish-live-stream/playlist/playlist-panel.png differ
diff --git a/static/img/publish-live-stream/playlist/playlist-running.png b/static/img/publish-live-stream/playlist/playlist-running.png
index 3c594ab3..ba2b05ca 100644
Binary files a/static/img/publish-live-stream/playlist/playlist-running.png and b/static/img/publish-live-stream/playlist/playlist-running.png differ
diff --git a/static/img/publish-live-stream/playlist/playlist-start.png b/static/img/publish-live-stream/playlist/playlist-start.png
index 28d9cee3..953b5d8d 100644
Binary files a/static/img/publish-live-stream/playlist/playlist-start.png and b/static/img/publish-live-stream/playlist/playlist-start.png differ
diff --git a/static/img/publish-live-stream/playlist/playlist.png b/static/img/publish-live-stream/playlist/playlist.png
index eaa0a813..520a4718 100644
Binary files a/static/img/publish-live-stream/playlist/playlist.png and b/static/img/publish-live-stream/playlist/playlist.png differ
diff --git a/static/img/publish-live-stream/playlist/rest-api.png b/static/img/publish-live-stream/playlist/rest-api.png
index 4630c24c..a36d82f5 100644
Binary files a/static/img/publish-live-stream/playlist/rest-api.png and b/static/img/publish-live-stream/playlist/rest-api.png differ
diff --git a/static/img/publish-live-stream/playlist/running-playlist.png b/static/img/publish-live-stream/playlist/running-playlist.png
index 4e8723bb..c97a8c0a 100644
Binary files a/static/img/publish-live-stream/playlist/running-playlist.png and b/static/img/publish-live-stream/playlist/running-playlist.png differ
diff --git a/static/img/publish-live-stream/playlist/settings.png b/static/img/publish-live-stream/playlist/settings.png
index 63ddfe17..113e68e8 100644
Binary files a/static/img/publish-live-stream/playlist/settings.png and b/static/img/publish-live-stream/playlist/settings.png differ
diff --git a/static/img/publish-live-stream/playlist/start-playlist.png b/static/img/publish-live-stream/playlist/start-playlist.png
index ab237e26..3fc29229 100644
Binary files a/static/img/publish-live-stream/playlist/start-playlist.png and b/static/img/publish-live-stream/playlist/start-playlist.png differ
diff --git a/static/img/publish-live-stream/playlist/vod-section.png b/static/img/publish-live-stream/playlist/vod-section.png
index b737e282..621a10dc 100644
Binary files a/static/img/publish-live-stream/playlist/vod-section.png and b/static/img/publish-live-stream/playlist/vod-section.png differ
diff --git a/static/img/publish-live-stream/playlist/vod-upload.png b/static/img/publish-live-stream/playlist/vod-upload.png
index 48adf783..761d06af 100644
Binary files a/static/img/publish-live-stream/playlist/vod-upload.png and b/static/img/publish-live-stream/playlist/vod-upload.png differ
diff --git a/static/img/publish-live-stream/playlist/vod-url.png b/static/img/publish-live-stream/playlist/vod-url.png
index 41765f8f..14f6caed 100644
Binary files a/static/img/publish-live-stream/playlist/vod-url.png and b/static/img/publish-live-stream/playlist/vod-url.png differ
diff --git a/static/img/publish-live-stream/playlist/webpanel.png b/static/img/publish-live-stream/playlist/webpanel.png
index 458b941b..545265e8 100644
Binary files a/static/img/publish-live-stream/playlist/webpanel.png and b/static/img/publish-live-stream/playlist/webpanel.png differ
diff --git a/static/img/publish-live-stream/simulcasting/add-endpoint.png b/static/img/publish-live-stream/simulcasting/add-endpoint.png
index f43ee98f..f8f24c6b 100644
Binary files a/static/img/publish-live-stream/simulcasting/add-endpoint.png and b/static/img/publish-live-stream/simulcasting/add-endpoint.png differ
diff --git a/static/img/publish-live-stream/simulcasting/add-fb-endpoint.png b/static/img/publish-live-stream/simulcasting/add-fb-endpoint.png
index 2f8a2f67..5148e256 100644
Binary files a/static/img/publish-live-stream/simulcasting/add-fb-endpoint.png and b/static/img/publish-live-stream/simulcasting/add-fb-endpoint.png differ
diff --git a/static/img/publish-live-stream/simulcasting/add-periscope-endpoint.png b/static/img/publish-live-stream/simulcasting/add-periscope-endpoint.png
index 08f794dc..9f034ab1 100644
Binary files a/static/img/publish-live-stream/simulcasting/add-periscope-endpoint.png and b/static/img/publish-live-stream/simulcasting/add-periscope-endpoint.png differ
diff --git a/static/img/publish-live-stream/simulcasting/add-youtube-endpoint.png b/static/img/publish-live-stream/simulcasting/add-youtube-endpoint.png
index cb130e33..eb86920e 100644
Binary files a/static/img/publish-live-stream/simulcasting/add-youtube-endpoint.png and b/static/img/publish-live-stream/simulcasting/add-youtube-endpoint.png differ
diff --git a/static/img/publish-live-stream/simulcasting/edit-endpoint.png b/static/img/publish-live-stream/simulcasting/edit-endpoint.png
index b8fc602b..cc52af22 100644
Binary files a/static/img/publish-live-stream/simulcasting/edit-endpoint.png and b/static/img/publish-live-stream/simulcasting/edit-endpoint.png differ
diff --git a/static/img/publish-live-stream/simulcasting/go-live.png b/static/img/publish-live-stream/simulcasting/go-live.png
index a3949293..32c7d158 100644
Binary files a/static/img/publish-live-stream/simulcasting/go-live.png and b/static/img/publish-live-stream/simulcasting/go-live.png differ
diff --git a/static/img/publish-live-stream/simulcasting/live-video.png b/static/img/publish-live-stream/simulcasting/live-video.png
index 9dbeda39..389c5d15 100644
Binary files a/static/img/publish-live-stream/simulcasting/live-video.png and b/static/img/publish-live-stream/simulcasting/live-video.png differ
diff --git a/static/img/publish-live-stream/simulcasting/server-url.png b/static/img/publish-live-stream/simulcasting/server-url.png
index 91f011ea..188add70 100644
Binary files a/static/img/publish-live-stream/simulcasting/server-url.png and b/static/img/publish-live-stream/simulcasting/server-url.png differ
diff --git a/static/img/publish-live-stream/simulcasting/stream-key.png b/static/img/publish-live-stream/simulcasting/stream-key.png
index b5234ea1..1747a6d1 100644
Binary files a/static/img/publish-live-stream/simulcasting/stream-key.png and b/static/img/publish-live-stream/simulcasting/stream-key.png differ
diff --git a/static/img/publish-live-stream/simulcasting/streaming-software.png b/static/img/publish-live-stream/simulcasting/streaming-software.png
index 112d60f3..47fa1531 100644
Binary files a/static/img/publish-live-stream/simulcasting/streaming-software.png and b/static/img/publish-live-stream/simulcasting/streaming-software.png differ
diff --git a/static/img/publish-live-stream/simulcasting/twitch-account.png b/static/img/publish-live-stream/simulcasting/twitch-account.png
index 12dc1b35..af933fce 100644
Binary files a/static/img/publish-live-stream/simulcasting/twitch-account.png and b/static/img/publish-live-stream/simulcasting/twitch-account.png differ
diff --git a/static/img/publish-live-stream/simulcasting/twitch-endpoint.png b/static/img/publish-live-stream/simulcasting/twitch-endpoint.png
index a07de1f1..78bc5f1c 100644
Binary files a/static/img/publish-live-stream/simulcasting/twitch-endpoint.png and b/static/img/publish-live-stream/simulcasting/twitch-endpoint.png differ
diff --git a/static/img/publish-live-stream/simulcasting/twitch-ingest.png b/static/img/publish-live-stream/simulcasting/twitch-ingest.png
index dbff6333..4a0d7503 100644
Binary files a/static/img/publish-live-stream/simulcasting/twitch-ingest.png and b/static/img/publish-live-stream/simulcasting/twitch-ingest.png differ
diff --git a/static/img/publish-live-stream/simulcasting/twitch-live.png b/static/img/publish-live-stream/simulcasting/twitch-live.png
index 8fe4e59e..06319f69 100644
Binary files a/static/img/publish-live-stream/simulcasting/twitch-live.png and b/static/img/publish-live-stream/simulcasting/twitch-live.png differ
diff --git a/static/img/publish-live-stream/srt/add-media.png b/static/img/publish-live-stream/srt/add-media.png
index dc96ccb8..a19ecdf4 100644
Binary files a/static/img/publish-live-stream/srt/add-media.png and b/static/img/publish-live-stream/srt/add-media.png differ
diff --git a/static/img/publish-live-stream/srt/add-scene.png b/static/img/publish-live-stream/srt/add-scene.png
index b2298033..6b82cc14 100644
Binary files a/static/img/publish-live-stream/srt/add-scene.png and b/static/img/publish-live-stream/srt/add-scene.png differ
diff --git a/static/img/publish-live-stream/srt/destination-srt.png b/static/img/publish-live-stream/srt/destination-srt.png
index 6f725dc6..454b5dbb 100644
Binary files a/static/img/publish-live-stream/srt/destination-srt.png and b/static/img/publish-live-stream/srt/destination-srt.png differ
diff --git a/static/img/publish-live-stream/srt/encoding-settings.png b/static/img/publish-live-stream/srt/encoding-settings.png
index 9e888d47..efa4d15b 100644
Binary files a/static/img/publish-live-stream/srt/encoding-settings.png and b/static/img/publish-live-stream/srt/encoding-settings.png differ
diff --git a/static/img/publish-live-stream/srt/output-settings.png b/static/img/publish-live-stream/srt/output-settings.png
index 9f76ca58..ace78aca 100644
Binary files a/static/img/publish-live-stream/srt/output-settings.png and b/static/img/publish-live-stream/srt/output-settings.png differ
diff --git a/static/img/publish-live-stream/srt/select-source.png b/static/img/publish-live-stream/srt/select-source.png
index 63bd9b00..736bbdb8 100644
Binary files a/static/img/publish-live-stream/srt/select-source.png and b/static/img/publish-live-stream/srt/select-source.png differ
diff --git a/static/img/publish-live-stream/srt/server-url.png b/static/img/publish-live-stream/srt/server-url.png
index 2ce5a82d..7dc55730 100644
Binary files a/static/img/publish-live-stream/srt/server-url.png and b/static/img/publish-live-stream/srt/server-url.png differ
diff --git a/static/img/publish-live-stream/srt/settings.png b/static/img/publish-live-stream/srt/settings.png
index 6a4679de..025862b8 100644
Binary files a/static/img/publish-live-stream/srt/settings.png and b/static/img/publish-live-stream/srt/settings.png differ
diff --git a/static/img/publish-live-stream/srt/srt-obs.png b/static/img/publish-live-stream/srt/srt-obs.png
index ecf209b0..161815e2 100644
Binary files a/static/img/publish-live-stream/srt/srt-obs.png and b/static/img/publish-live-stream/srt/srt-obs.png differ
diff --git a/static/img/publish-live-stream/srt/srt-stream.png b/static/img/publish-live-stream/srt/srt-stream.png
index 9fbecf2d..a7584910 100644
Binary files a/static/img/publish-live-stream/srt/srt-stream.png and b/static/img/publish-live-stream/srt/srt-stream.png differ
diff --git a/static/img/publish-live-stream/srt/start-stop.png b/static/img/publish-live-stream/srt/start-stop.png
index f4b3e655..4cfc0f10 100644
Binary files a/static/img/publish-live-stream/srt/start-stop.png and b/static/img/publish-live-stream/srt/start-stop.png differ
diff --git a/static/img/publish-live-stream/wirecast/Publish-Url.png b/static/img/publish-live-stream/wirecast/Publish-Url.png
index b44c8518..80ee5a55 100644
Binary files a/static/img/publish-live-stream/wirecast/Publish-Url.png and b/static/img/publish-live-stream/wirecast/Publish-Url.png differ
diff --git a/static/img/publish-live-stream/wirecast/Wirecast-dashboard.png b/static/img/publish-live-stream/wirecast/Wirecast-dashboard.png
index abfbcc5c..b1510509 100644
Binary files a/static/img/publish-live-stream/wirecast/Wirecast-dashboard.png and b/static/img/publish-live-stream/wirecast/Wirecast-dashboard.png differ
diff --git a/static/img/quick-start/create-first-account.png b/static/img/quick-start/create-first-account.png
index 1f5b22c4..543f3fed 100644
Binary files a/static/img/quick-start/create-first-account.png and b/static/img/quick-start/create-first-account.png differ
diff --git a/static/img/quick-start/deepar-sample.png b/static/img/quick-start/deepar-sample.png
index 77888c5c..151c49f8 100644
Binary files a/static/img/quick-start/deepar-sample.png and b/static/img/quick-start/deepar-sample.png differ
diff --git a/static/img/quick-start/play-stream.png b/static/img/quick-start/play-stream.png
index a6793877..821dbbf0 100644
Binary files a/static/img/quick-start/play-stream.png and b/static/img/quick-start/play-stream.png differ
diff --git a/static/img/quick-start/publish-stream.png b/static/img/quick-start/publish-stream.png
index e012b91e..f602d674 100644
Binary files a/static/img/quick-start/publish-stream.png and b/static/img/quick-start/publish-stream.png differ
diff --git a/static/img/quick_sync_bios_configuration.jpeg b/static/img/quick_sync_bios_configuration.jpeg
index b73b2a4e..ecf64f75 100644
Binary files a/static/img/quick_sync_bios_configuration.jpeg and b/static/img/quick_sync_bios_configuration.jpeg differ
diff --git a/static/img/re-stream-add-ip-camera-1.png b/static/img/re-stream-add-ip-camera-1.png
index 17434512..09e9a6c3 100644
Binary files a/static/img/re-stream-add-ip-camera-1.png and b/static/img/re-stream-add-ip-camera-1.png differ
diff --git a/static/img/recording-live-streams/recording-live-streams/date-and-time.png b/static/img/recording-live-streams/recording-live-streams/date-and-time.png
index 6d786541..a7626a86 100644
Binary files a/static/img/recording-live-streams/recording-live-streams/date-and-time.png and b/static/img/recording-live-streams/recording-live-streams/date-and-time.png differ
diff --git a/static/img/recording-live-streams/s3-integration/minio-bucket-integration/ams-settings.png b/static/img/recording-live-streams/s3-integration/minio-bucket-integration/ams-settings.png
index 8bb66dc4..307e59b7 100644
Binary files a/static/img/recording-live-streams/s3-integration/minio-bucket-integration/ams-settings.png and b/static/img/recording-live-streams/s3-integration/minio-bucket-integration/ams-settings.png differ
diff --git a/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-access-key.png b/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-access-key.png
index 879931d6..4d057989 100644
Binary files a/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-access-key.png and b/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-access-key.png differ
diff --git a/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-bucket-objects.png b/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-bucket-objects.png
index 8092aa74..8aae7471 100644
Binary files a/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-bucket-objects.png and b/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-bucket-objects.png differ
diff --git a/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-bucket.png b/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-bucket.png
index 435da11f..f02652ef 100644
Binary files a/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-bucket.png and b/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-bucket.png differ
diff --git a/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-region.png b/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-region.png
index 0b04dc6b..4597c406 100644
Binary files a/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-region.png and b/static/img/recording-live-streams/s3-integration/minio-bucket-integration/minio-region.png differ
diff --git a/static/img/reliable_webhook_app_settings.png b/static/img/reliable_webhook_app_settings.png
index 2e92fedc..bcd71244 100644
Binary files a/static/img/reliable_webhook_app_settings.png and b/static/img/reliable_webhook_app_settings.png differ
diff --git a/static/img/rest-api/generate-jwt-expire-time.png b/static/img/rest-api/generate-jwt-expire-time.png
index 682169da..5068bd8e 100644
Binary files a/static/img/rest-api/generate-jwt-expire-time.png and b/static/img/rest-api/generate-jwt-expire-time.png differ
diff --git a/static/img/rest-api/rest-api-ip-filter.png b/static/img/rest-api/rest-api-ip-filter.png
index fcc38da3..d0f4cc4c 100644
Binary files a/static/img/rest-api/rest-api-ip-filter.png and b/static/img/rest-api/rest-api-ip-filter.png differ
diff --git a/static/img/rest-api/rest-api-ip-filtering-demo.gif b/static/img/rest-api/rest-api-ip-filtering-demo.gif
index ee3dabe5..79fcbfeb 100644
Binary files a/static/img/rest-api/rest-api-ip-filtering-demo.gif and b/static/img/rest-api/rest-api-ip-filtering-demo.gif differ
diff --git a/static/img/rest.png b/static/img/rest.png
index 238ce48a..7eb4f6d2 100644
Binary files a/static/img/rest.png and b/static/img/rest.png differ
diff --git a/static/img/restream-add-streamsource.png b/static/img/restream-add-streamsource.png
index 1e54ca69..50d28156 100644
Binary files a/static/img/restream-add-streamsource.png and b/static/img/restream-add-streamsource.png differ
diff --git a/static/img/restream-ip-camera.png b/static/img/restream-ip-camera.png
index 4f55814c..4fb9a72a 100644
Binary files a/static/img/restream-ip-camera.png and b/static/img/restream-ip-camera.png differ
diff --git a/static/img/sample(1).png b/static/img/sample(1).png
index 4bb0e97c..c5d8f8aa 100644
Binary files a/static/img/sample(1).png and b/static/img/sample(1).png differ
diff --git a/static/img/sdk-diagram.png b/static/img/sdk-diagram.png
index 1579765d..c515f2a6 100644
Binary files a/static/img/sdk-diagram.png and b/static/img/sdk-diagram.png differ
diff --git a/static/img/sdk-integration/android-sdk/android-new-project-page.png b/static/img/sdk-integration/android-sdk/android-new-project-page.png
index 7f15f885..416c877b 100644
Binary files a/static/img/sdk-integration/android-sdk/android-new-project-page.png and b/static/img/sdk-integration/android-sdk/android-new-project-page.png differ
diff --git a/static/img/sdk-integration/android-sdk/android-project-naming-screen.png b/static/img/sdk-integration/android-sdk/android-project-naming-screen.png
index b178d9d1..a9677fb4 100644
Binary files a/static/img/sdk-integration/android-sdk/android-project-naming-screen.png and b/static/img/sdk-integration/android-sdk/android-project-naming-screen.png differ
diff --git a/static/img/sdk-integration/android-sdk/build.gradle.png b/static/img/sdk-integration/android-sdk/build.gradle.png
index e252bc40..2d24d5f8 100644
Binary files a/static/img/sdk-integration/android-sdk/build.gradle.png and b/static/img/sdk-integration/android-sdk/build.gradle.png differ
diff --git a/static/img/sdk-integration/android-sdk/layout.png b/static/img/sdk-integration/android-sdk/layout.png
index f760ca1a..ea55181c 100644
Binary files a/static/img/sdk-integration/android-sdk/layout.png and b/static/img/sdk-integration/android-sdk/layout.png differ
diff --git a/static/img/sdk-integration/android-sdk/settings.gradle.png b/static/img/sdk-integration/android-sdk/settings.gradle.png
index 5d50942f..4febcb03 100644
Binary files a/static/img/sdk-integration/android-sdk/settings.gradle.png and b/static/img/sdk-integration/android-sdk/settings.gradle.png differ
diff --git a/static/img/sdk-integration/android-sdk/webrtc-android-play-application-test-1.png b/static/img/sdk-integration/android-sdk/webrtc-android-play-application-test-1.png
index 572886ce..9b06d415 100644
Binary files a/static/img/sdk-integration/android-sdk/webrtc-android-play-application-test-1.png and b/static/img/sdk-integration/android-sdk/webrtc-android-play-application-test-1.png differ
diff --git a/static/img/sdk-integration/android-sdk/webrtc-android-play-application.png b/static/img/sdk-integration/android-sdk/webrtc-android-play-application.png
index 484f9fbd..e8292bda 100644
Binary files a/static/img/sdk-integration/android-sdk/webrtc-android-play-application.png and b/static/img/sdk-integration/android-sdk/webrtc-android-play-application.png differ
diff --git a/static/img/sdk-integration/android-sdk/webrtc-android-publish-application-test-1.png b/static/img/sdk-integration/android-sdk/webrtc-android-publish-application-test-1.png
index 06e717cb..f6069db8 100644
Binary files a/static/img/sdk-integration/android-sdk/webrtc-android-publish-application-test-1.png and b/static/img/sdk-integration/android-sdk/webrtc-android-publish-application-test-1.png differ
diff --git a/static/img/sdk-integration/android-sdk/webrtc-android-publish-application.png b/static/img/sdk-integration/android-sdk/webrtc-android-publish-application.png
index 4a8ac50b..f0122deb 100644
Binary files a/static/img/sdk-integration/android-sdk/webrtc-android-publish-application.png and b/static/img/sdk-integration/android-sdk/webrtc-android-publish-application.png differ
diff --git a/static/img/sdk-integration/android-sdk/webrtc-android-streaming-application-structure.png b/static/img/sdk-integration/android-sdk/webrtc-android-streaming-application-structure.png
index edd728b2..405301cb 100644
Binary files a/static/img/sdk-integration/android-sdk/webrtc-android-streaming-application-structure.png and b/static/img/sdk-integration/android-sdk/webrtc-android-streaming-application-structure.png differ
diff --git a/static/img/sdk-integration/flutter-sdk/comapile-and-run-sample.png b/static/img/sdk-integration/flutter-sdk/comapile-and-run-sample.png
index 88f2d4d6..cb45bf78 100644
Binary files a/static/img/sdk-integration/flutter-sdk/comapile-and-run-sample.png and b/static/img/sdk-integration/flutter-sdk/comapile-and-run-sample.png differ
diff --git a/static/img/sdk-integration/flutter-sdk/dart-package-settings.png b/static/img/sdk-integration/flutter-sdk/dart-package-settings.png
index dc0fd6f5..a5d99182 100644
Binary files a/static/img/sdk-integration/flutter-sdk/dart-package-settings.png and b/static/img/sdk-integration/flutter-sdk/dart-package-settings.png differ
diff --git a/static/img/sdk-integration/flutter-sdk/device-and-sample-list.png b/static/img/sdk-integration/flutter-sdk/device-and-sample-list.png
index cccc2f3c..ece64095 100644
Binary files a/static/img/sdk-integration/flutter-sdk/device-and-sample-list.png and b/static/img/sdk-integration/flutter-sdk/device-and-sample-list.png differ
diff --git a/static/img/server_address.png b/static/img/server_address.png
index 03fa943e..831ca984 100644
Binary files a/static/img/server_address.png and b/static/img/server_address.png differ
diff --git a/static/img/set_server_ip.png b/static/img/set_server_ip.png
index 8a90e86a..c0d14dee 100644
Binary files a/static/img/set_server_ip.png and b/static/img/set_server_ip.png differ
diff --git a/static/img/set_vidiu_pro_wifi_connectivity.png b/static/img/set_vidiu_pro_wifi_connectivity.png
index 00a03177..b69eda56 100644
Binary files a/static/img/set_vidiu_pro_wifi_connectivity.png and b/static/img/set_vidiu_pro_wifi_connectivity.png differ
diff --git a/static/img/setmode.png b/static/img/setmode.png
index 3009bd37..ab8b850b 100644
Binary files a/static/img/setmode.png and b/static/img/setmode.png differ
diff --git a/static/img/setup_new_1.png b/static/img/setup_new_1.png
index d9afed27..8ba94e13 100644
Binary files a/static/img/setup_new_1.png and b/static/img/setup_new_1.png differ
diff --git a/static/img/setup_new_2.png b/static/img/setup_new_2.png
index 2456b6be..0e258e46 100644
Binary files a/static/img/setup_new_2.png and b/static/img/setup_new_2.png differ
diff --git a/static/img/ssl-webpanel/enabling-ssl.png b/static/img/ssl-webpanel/enabling-ssl.png
index 6ab63ddd..2846f7ef 100644
Binary files a/static/img/ssl-webpanel/enabling-ssl.png and b/static/img/ssl-webpanel/enabling-ssl.png differ
diff --git a/static/img/ssl-webpanel/ssl-options.png b/static/img/ssl-webpanel/ssl-options.png
index 5a1a7812..72b047bc 100644
Binary files a/static/img/ssl-webpanel/ssl-options.png and b/static/img/ssl-webpanel/ssl-options.png differ
diff --git a/static/img/ssl-webpanel/ssl-settings.png b/static/img/ssl-webpanel/ssl-settings.png
index 4543576e..e3bca5a6 100644
Binary files a/static/img/ssl-webpanel/ssl-settings.png and b/static/img/ssl-webpanel/ssl-settings.png differ
diff --git a/static/img/ssl-webpanel/ssl-status.png b/static/img/ssl-webpanel/ssl-status.png
index e040564a..3894e425 100644
Binary files a/static/img/ssl-webpanel/ssl-status.png and b/static/img/ssl-webpanel/ssl-status.png differ
diff --git a/static/img/stream-security/create-broadcast.png b/static/img/stream-security/create-broadcast.png
index 97d9d57f..f2e07ecb 100644
Binary files a/static/img/stream-security/create-broadcast.png and b/static/img/stream-security/create-broadcast.png differ
diff --git a/static/img/stream-security/hash-invalid.png b/static/img/stream-security/hash-invalid.png
index 8fd8d5fd..d9cc55af 100644
Binary files a/static/img/stream-security/hash-invalid.png and b/static/img/stream-security/hash-invalid.png differ
diff --git a/static/img/stream-security/hash-play.png b/static/img/stream-security/hash-play.png
index 23482ced..6c126a79 100644
Binary files a/static/img/stream-security/hash-play.png and b/static/img/stream-security/hash-play.png differ
diff --git a/static/img/stream-security/hash-publish.png b/static/img/stream-security/hash-publish.png
index 54d7ccba..398a32d6 100644
Binary files a/static/img/stream-security/hash-publish.png and b/static/img/stream-security/hash-publish.png differ
diff --git a/static/img/stream-security/subscriber_block_block_play_postman.png b/static/img/stream-security/subscriber_block_block_play_postman.png
index 49b270f6..47cfcec7 100644
Binary files a/static/img/stream-security/subscriber_block_block_play_postman.png and b/static/img/stream-security/subscriber_block_block_play_postman.png differ
diff --git a/static/img/stream-security/subscriber_block_block_publish_postman.png b/static/img/stream-security/subscriber_block_block_publish_postman.png
index 79c15a5d..53613b00 100644
Binary files a/static/img/stream-security/subscriber_block_block_publish_postman.png and b/static/img/stream-security/subscriber_block_block_publish_postman.png differ
diff --git a/static/img/stream-security/subscriber_block_enable_play_totp.png b/static/img/stream-security/subscriber_block_enable_play_totp.png
index 9a4732ba..08a8bfc6 100644
Binary files a/static/img/stream-security/subscriber_block_enable_play_totp.png and b/static/img/stream-security/subscriber_block_enable_play_totp.png differ
diff --git a/static/img/stream-security/subscriber_block_enable_publish_totp.png b/static/img/stream-security/subscriber_block_enable_publish_totp.png
index fb9a1d89..d7c225af 100644
Binary files a/static/img/stream-security/subscriber_block_enable_publish_totp.png and b/static/img/stream-security/subscriber_block_enable_publish_totp.png differ
diff --git a/static/img/stream-security/subscriber_block_obs_publish.png b/static/img/stream-security/subscriber_block_obs_publish.png
index 7d28a342..f7422ae4 100644
Binary files a/static/img/stream-security/subscriber_block_obs_publish.png and b/static/img/stream-security/subscriber_block_obs_publish.png differ
diff --git a/static/img/stream-security/subscriber_block_play_totp_postman.png b/static/img/stream-security/subscriber_block_play_totp_postman.png
index ae5696fb..ec0c584d 100644
Binary files a/static/img/stream-security/subscriber_block_play_totp_postman.png and b/static/img/stream-security/subscriber_block_play_totp_postman.png differ
diff --git a/static/img/stream-security/subscriber_block_publish_totp_postman.png b/static/img/stream-security/subscriber_block_publish_totp_postman.png
index 2fb832ce..4dc9932a 100644
Binary files a/static/img/stream-security/subscriber_block_publish_totp_postman.png and b/static/img/stream-security/subscriber_block_publish_totp_postman.png differ
diff --git a/static/img/stream-security/totp-enable.png b/static/img/stream-security/totp-enable.png
index 606fea03..aebb876c 100644
Binary files a/static/img/stream-security/totp-enable.png and b/static/img/stream-security/totp-enable.png differ
diff --git a/static/img/streamId.png b/static/img/streamId.png
index 85d38338..ed1e6c84 100644
Binary files a/static/img/streamId.png and b/static/img/streamId.png differ
diff --git a/static/img/tap_play_button.png b/static/img/tap_play_button.png
index 8b640dee..b5da5302 100644
Binary files a/static/img/tap_play_button.png and b/static/img/tap_play_button.png differ
diff --git a/static/img/tap_publish_button.png b/static/img/tap_publish_button.png
index 8d8c0cd5..6e0c020d 100644
Binary files a/static/img/tap_publish_button.png and b/static/img/tap_publish_button.png differ
diff --git a/static/img/tick.png b/static/img/tick.png
index 4cc00dd9..aa69e5de 100644
Binary files a/static/img/tick.png and b/static/img/tick.png differ
diff --git a/static/img/tune_for_ultra_low_latency.png b/static/img/tune_for_ultra_low_latency.png
index 022abe06..aa5619d6 100644
Binary files a/static/img/tune_for_ultra_low_latency.png and b/static/img/tune_for_ultra_low_latency.png differ
diff --git a/static/img/turn1.png b/static/img/turn1.png
index 44fb52cc..1cadb329 100644
Binary files a/static/img/turn1.png and b/static/img/turn1.png differ
diff --git a/static/img/turn_dns_round_robin.png b/static/img/turn_dns_round_robin.png
index e1ffc4b3..1e8c01e6 100644
Binary files a/static/img/turn_dns_round_robin.png and b/static/img/turn_dns_round_robin.png differ
diff --git a/static/img/undraw_docusaurus_mountain.svg b/static/img/undraw_docusaurus_mountain.svg
index af961c49..4844dd17 100644
--- a/static/img/undraw_docusaurus_mountain.svg
+++ b/static/img/undraw_docusaurus_mountain.svg
@@ -1,171 +1 @@
-
+
\ No newline at end of file
diff --git a/static/img/undraw_docusaurus_react.svg b/static/img/undraw_docusaurus_react.svg
index 94b5cf08..e0502bc3 100644
--- a/static/img/undraw_docusaurus_react.svg
+++ b/static/img/undraw_docusaurus_react.svg
@@ -1,170 +1 @@
-
+
\ No newline at end of file
diff --git a/static/img/undraw_docusaurus_tree.svg b/static/img/undraw_docusaurus_tree.svg
index d9161d33..e772aa1b 100644
--- a/static/img/undraw_docusaurus_tree.svg
+++ b/static/img/undraw_docusaurus_tree.svg
@@ -1,40 +1 @@
-
+
\ No newline at end of file
diff --git a/static/img/use_jwt_token_with_postman.png b/static/img/use_jwt_token_with_postman.png
index 218ffb67..bb0996d6 100644
Binary files a/static/img/use_jwt_token_with_postman.png and b/static/img/use_jwt_token_with_postman.png differ
diff --git a/static/img/vidiu_pro_console.png b/static/img/vidiu_pro_console.png
index 89402da5..d8651eed 100644
Binary files a/static/img/vidiu_pro_console.png and b/static/img/vidiu_pro_console.png differ
diff --git a/static/img/virtual-machine-1.png b/static/img/virtual-machine-1.png
index 3752d03d..b8e4fc5a 100644
Binary files a/static/img/virtual-machine-1.png and b/static/img/virtual-machine-1.png differ
diff --git a/static/img/virtual-machine-10.png b/static/img/virtual-machine-10.png
index 119d17ed..296aaf5d 100644
Binary files a/static/img/virtual-machine-10.png and b/static/img/virtual-machine-10.png differ
diff --git a/static/img/virtual-machine-2.png b/static/img/virtual-machine-2.png
index 90003b1d..3ee2dcbb 100644
Binary files a/static/img/virtual-machine-2.png and b/static/img/virtual-machine-2.png differ
diff --git a/static/img/virtual-machine-3.png b/static/img/virtual-machine-3.png
index 9a7edf5a..d6e21036 100644
Binary files a/static/img/virtual-machine-3.png and b/static/img/virtual-machine-3.png differ
diff --git a/static/img/virtual-machine-3_1.png b/static/img/virtual-machine-3_1.png
index 13abed35..7d28007c 100644
Binary files a/static/img/virtual-machine-3_1.png and b/static/img/virtual-machine-3_1.png differ
diff --git a/static/img/virtual-machine-4.png b/static/img/virtual-machine-4.png
index 851d040d..90cd83be 100644
Binary files a/static/img/virtual-machine-4.png and b/static/img/virtual-machine-4.png differ
diff --git a/static/img/virtual-machine-6.png b/static/img/virtual-machine-6.png
index 118db309..a81c4d72 100644
Binary files a/static/img/virtual-machine-6.png and b/static/img/virtual-machine-6.png differ
diff --git a/static/img/virtual-machine-7.png b/static/img/virtual-machine-7.png
index 70fc9b6a..d4fa28d0 100644
Binary files a/static/img/virtual-machine-7.png and b/static/img/virtual-machine-7.png differ
diff --git a/static/img/virtual-machine-8.png b/static/img/virtual-machine-8.png
index 1eb28133..6f3ae1da 100644
Binary files a/static/img/virtual-machine-8.png and b/static/img/virtual-machine-8.png differ
diff --git a/static/img/virtual-machine-9.png b/static/img/virtual-machine-9.png
index 8c5e401d..3b173923 100644
Binary files a/static/img/virtual-machine-9.png and b/static/img/virtual-machine-9.png differ
diff --git a/static/img/virtual-network-1.png b/static/img/virtual-network-1.png
index 94449b32..4516ce39 100644
Binary files a/static/img/virtual-network-1.png and b/static/img/virtual-network-1.png differ
diff --git a/static/img/virtual-network-2.png b/static/img/virtual-network-2.png
index 319e10b3..6cd22284 100644
Binary files a/static/img/virtual-network-2.png and b/static/img/virtual-network-2.png differ
diff --git a/static/img/virtual-network-3.png b/static/img/virtual-network-3.png
index ae6a2897..959a489b 100644
Binary files a/static/img/virtual-network-3.png and b/static/img/virtual-network-3.png differ
diff --git a/static/img/virtual-network-4.png b/static/img/virtual-network-4.png
index 4a712098..779c56af 100644
Binary files a/static/img/virtual-network-4.png and b/static/img/virtual-network-4.png differ
diff --git a/static/img/virtual-network-5.png b/static/img/virtual-network-5.png
index eeb3a562..6a6eaee5 100644
Binary files a/static/img/virtual-network-5.png and b/static/img/virtual-network-5.png differ
diff --git a/static/img/virtual-network-6.png b/static/img/virtual-network-6.png
index db795bae..a2bfd363 100644
Binary files a/static/img/virtual-network-6.png and b/static/img/virtual-network-6.png differ
diff --git a/static/img/vmix-output-settings.JPG b/static/img/vmix-output-settings.JPG
index 6e6d3bb0..e84b415c 100644
Binary files a/static/img/vmix-output-settings.JPG and b/static/img/vmix-output-settings.JPG differ
diff --git a/static/img/vmix-settings.JPG b/static/img/vmix-settings.JPG
index 8a083917..f55971ee 100644
Binary files a/static/img/vmix-settings.JPG and b/static/img/vmix-settings.JPG differ
diff --git a/static/img/vod-hls-webrtc-1.png b/static/img/vod-hls-webrtc-1.png
index 35dbdcdc..88883470 100644
Binary files a/static/img/vod-hls-webrtc-1.png and b/static/img/vod-hls-webrtc-1.png differ
diff --git a/static/img/vod-hls-webrtc-2.png b/static/img/vod-hls-webrtc-2.png
index 8f8df806..6e41255c 100644
Binary files a/static/img/vod-hls-webrtc-2.png and b/static/img/vod-hls-webrtc-2.png differ
diff --git a/static/img/vod-hls-webrtc-3.png b/static/img/vod-hls-webrtc-3.png
index 50bfefd2..9b6cf3fe 100644
Binary files a/static/img/vod-hls-webrtc-3.png and b/static/img/vod-hls-webrtc-3.png differ
diff --git a/static/img/vod-hls-webrtc-4.png b/static/img/vod-hls-webrtc-4.png
index a4e1271e..456bcc97 100644
Binary files a/static/img/vod-hls-webrtc-4.png and b/static/img/vod-hls-webrtc-4.png differ
diff --git a/static/img/vod-hls-webrtc-5.png b/static/img/vod-hls-webrtc-5.png
index ca961f7a..d9da8a1a 100644
Binary files a/static/img/vod-hls-webrtc-5.png and b/static/img/vod-hls-webrtc-5.png differ
diff --git a/static/img/wavelength-cf1.png b/static/img/wavelength-cf1.png
index af9048d5..1fda667e 100644
Binary files a/static/img/wavelength-cf1.png and b/static/img/wavelength-cf1.png differ
diff --git a/static/img/wavelength-cf2.png b/static/img/wavelength-cf2.png
index 6d08f7d1..5f163860 100644
Binary files a/static/img/wavelength-cf2.png and b/static/img/wavelength-cf2.png differ
diff --git a/static/img/wavelength-cf3.png b/static/img/wavelength-cf3.png
index fd8a5303..fab11ac2 100644
Binary files a/static/img/wavelength-cf3.png and b/static/img/wavelength-cf3.png differ
diff --git a/static/img/wavelength-cf4.png b/static/img/wavelength-cf4.png
index b831167a..e9612c63 100644
Binary files a/static/img/wavelength-cf4.png and b/static/img/wavelength-cf4.png differ
diff --git a/static/img/wavelength-cf5-1.png b/static/img/wavelength-cf5-1.png
index 83ffafa8..8fcf3e63 100644
Binary files a/static/img/wavelength-cf5-1.png and b/static/img/wavelength-cf5-1.png differ
diff --git a/static/img/wavelength-cf5-2.png b/static/img/wavelength-cf5-2.png
index ba183bbf..d95cce25 100644
Binary files a/static/img/wavelength-cf5-2.png and b/static/img/wavelength-cf5-2.png differ
diff --git a/static/img/wavelength-cf6.png b/static/img/wavelength-cf6.png
index 071b83c3..e346737d 100644
Binary files a/static/img/wavelength-cf6.png and b/static/img/wavelength-cf6.png differ
diff --git a/static/img/wavelength-cf7.png b/static/img/wavelength-cf7.png
index fbc6bf7d..a47afcae 100644
Binary files a/static/img/wavelength-cf7.png and b/static/img/wavelength-cf7.png differ
diff --git a/static/img/wavelength-eip1.png b/static/img/wavelength-eip1.png
index 5a838478..f85819bf 100644
Binary files a/static/img/wavelength-eip1.png and b/static/img/wavelength-eip1.png differ
diff --git a/static/img/wavelength-eip2.png b/static/img/wavelength-eip2.png
index 8c53f11c..9035cb21 100644
Binary files a/static/img/wavelength-eip2.png and b/static/img/wavelength-eip2.png differ
diff --git a/static/img/wavelength-eip3.png b/static/img/wavelength-eip3.png
index 5c62126f..6bff7bf4 100644
Binary files a/static/img/wavelength-eip3.png and b/static/img/wavelength-eip3.png differ
diff --git a/static/img/wavelength-standalone-1.png b/static/img/wavelength-standalone-1.png
index 5d0653f5..12c4a308 100644
Binary files a/static/img/wavelength-standalone-1.png and b/static/img/wavelength-standalone-1.png differ
diff --git a/static/img/wavelength-standalone-2.png b/static/img/wavelength-standalone-2.png
index 6c253238..b8eaddeb 100644
Binary files a/static/img/wavelength-standalone-2.png and b/static/img/wavelength-standalone-2.png differ
diff --git a/static/img/wavelength-standalone-3.png b/static/img/wavelength-standalone-3.png
index 50963055..16c3f6c8 100644
Binary files a/static/img/wavelength-standalone-3.png and b/static/img/wavelength-standalone-3.png differ
diff --git a/static/img/wavelength-standalone-4-1.png b/static/img/wavelength-standalone-4-1.png
index 35ba64b8..bd34ecd1 100644
Binary files a/static/img/wavelength-standalone-4-1.png and b/static/img/wavelength-standalone-4-1.png differ
diff --git a/static/img/wavelength-standalone-4-2.png b/static/img/wavelength-standalone-4-2.png
index ba183bbf..d95cce25 100644
Binary files a/static/img/wavelength-standalone-4-2.png and b/static/img/wavelength-standalone-4-2.png differ
diff --git a/static/img/wavelength-standalone-5.png b/static/img/wavelength-standalone-5.png
index 4c0d3e76..7010faf4 100644
Binary files a/static/img/wavelength-standalone-5.png and b/static/img/wavelength-standalone-5.png differ
diff --git a/static/img/wavelength-standalone-6.png b/static/img/wavelength-standalone-6.png
index 6b5cf4cb..33121464 100644
Binary files a/static/img/wavelength-standalone-6.png and b/static/img/wavelength-standalone-6.png differ
diff --git a/static/img/webrtc-playing-2.png b/static/img/webrtc-playing-2.png
index 0e7e17a1..6481da0a 100644
Binary files a/static/img/webrtc-playing-2.png and b/static/img/webrtc-playing-2.png differ
diff --git a/static/img/webrtc-playing-options.png b/static/img/webrtc-playing-options.png
index d3d83d8e..0aea7db4 100644
Binary files a/static/img/webrtc-playing-options.png and b/static/img/webrtc-playing-options.png differ
diff --git a/static/img/webrtc-playing.png b/static/img/webrtc-playing.png
index 1f2b2680..ab9caac8 100644
Binary files a/static/img/webrtc-playing.png and b/static/img/webrtc-playing.png differ
diff --git a/static/img/webrtc-publish-options.png b/static/img/webrtc-publish-options.png
index 7daba6f1..9f49a6bc 100644
Binary files a/static/img/webrtc-publish-options.png and b/static/img/webrtc-publish-options.png differ
diff --git a/static/img/webrtc-publishing-2.png b/static/img/webrtc-publishing-2.png
index 3c2c6322..3e11892d 100644
Binary files a/static/img/webrtc-publishing-2.png and b/static/img/webrtc-publishing-2.png differ
diff --git a/static/img/webrtc-publishing.png b/static/img/webrtc-publishing.png
index 3c9e9f95..44c24cba 100644
Binary files a/static/img/webrtc-publishing.png and b/static/img/webrtc-publishing.png differ
diff --git a/static/img/what_is_rest_api-768x309.png b/static/img/what_is_rest_api-768x309.png
index ecfd9ff8..05a8f59f 100644
Binary files a/static/img/what_is_rest_api-768x309.png and b/static/img/what_is_rest_api-768x309.png differ
diff --git a/static/img/wirecast-encoding-settings.png b/static/img/wirecast-encoding-settings.png
index 51616013..70333b27 100644
Binary files a/static/img/wirecast-encoding-settings.png and b/static/img/wirecast-encoding-settings.png differ
diff --git a/static/img/write_ant_media_server_url_to_vidiu_pro.png b/static/img/write_ant_media_server_url_to_vidiu_pro.png
index 596e49ff..a8856201 100644
Binary files a/static/img/write_ant_media_server_url_to_vidiu_pro.png and b/static/img/write_ant_media_server_url_to_vidiu_pro.png differ
diff --git a/static/img/youtube-studio-stream-url-stream-key.png b/static/img/youtube-studio-stream-url-stream-key.png
index 987da6d6..20b829bf 100644
Binary files a/static/img/youtube-studio-stream-url-stream-key.png and b/static/img/youtube-studio-stream-url-stream-key.png differ
diff --git a/static/img/youtube-studio.png b/static/img/youtube-studio.png
index 8e78cd20..088a5bdd 100644
Binary files a/static/img/youtube-studio.png and b/static/img/youtube-studio.png differ