It looks like you pasted some error messages and browser text into the code block. Do not worry—this does not affect your website.

The "Quota Exceeded" message is just Google telling you that you requested indexing too many times today (which we discussed in the previous step).

Here is the **fully updated `sitemap.xml`** code. I have added the **4 new tools** (Background Remover, Watermark, EXIF Remover, Base64) so all your pages are included.

### Updated `sitemap.xml`

**Instructions:** Replace your existing `sitemap.xml` file with this code.

```xml
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   
   <!-- Homepage -->
   <url>
      <loc>https://imagetoolkit.site/</loc>
      <priority>1.0</priority>
   </url>

   <!-- Main Tool Pages -->
   <url>
      <loc>https://imagetoolkit.site/compressor.html</loc>
      <priority>0.90</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/resizer.html</loc>
      <priority>0.90</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/converter.html</loc>
      <priority>0.90</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/cropper.html</loc>
      <priority>0.90</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/rotator.html</loc>
      <priority>0.90</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/filters.html</loc>
      <priority>0.90</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/image-to-pdf.html</loc>
      <priority>0.90</priority>
   </url>

   <!-- New Tools -->
   <url>
      <loc>https://imagetoolkit.site/background-remover.html</loc>
      <priority>0.90</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/watermark.html</loc>
      <priority>0.90</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/exif-remover.html</loc>
      <priority>0.90</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/image-to-base64.html</loc>
      <priority>0.90</priority>
   </url>

   <!-- Legal & Info Pages -->
   <url>
      <loc>https://imagetoolkit.site/about.html</loc>
      <priority>0.70</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/contact.html</loc>
      <priority>0.70</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/privacy.html</loc>
      <priority>0.60</priority>
   </url>
   <url>
      <loc>https://imagetoolkit.site/terms.html</loc>
      <priority>0.60</priority>
   </url>
</urlset>
```