{"id":241,"date":"2023-01-28T17:53:21","date_gmt":"2023-01-28T22:53:21","guid":{"rendered":"https:\/\/jdmdev.wpengine.com\/?page_id=241"},"modified":"2025-07-31T13:49:47","modified_gmt":"2025-07-31T17:49:47","slug":"scan","status":"publish","type":"page","link":"https:\/\/joindeleteme.com\/scan\/","title":{"rendered":"Scan"},"content":{"rendered":"<div><script>\n    let autocomplete;\nlet progressUpdateTimer = null;\nlet zoomTimerId = null;<\/p>\n<p>function initAutocomplete() {\n    const locationInput = document.getElementById('free-scan-location');\n    if (locationInput) {\n        autocomplete = new google.maps.places.Autocomplete(locationInput, {\n            types: ['(cities)'],\n            fields: ['formatted_address'],\n            componentRestrictions: { country: 'us' }\n        });\n    } else {\n        console.error(\"Could not find location input element with ID 'free-scan-location' for Autocomplete.\");\n    }\n}<\/p>\n<p>document.addEventListener('DOMContentLoaded', () => {\n    const API_BASE_URL = 'https:\/\/vxp.joindeleteme.com\/bff\/api\/v2';\n    const POST_SCAN_ENDPOINT = `${API_BASE_URL}\/free-scan`;\n    const GET_SCAN_ENDPOINT = (scanId) => `${API_BASE_URL}\/free-scan\/${scanId}`;\n    const POLLING_INTERVAL_MS = 5000;\n    const POLLING_TIMEOUT_MS = 600000;\n    const INITIAL_DELAY_MS = 90000;<\/p>\n<p>    const form = document.getElementById('free-scan-form');\n    const prescanContainer = document.getElementById('prescan');\n    const scanresultsContainer = document.getElementById('scanresults');\n    const formInputs = form ? form.querySelectorAll('.form-control') : [];\n    const submitButton = document.getElementById('start-scan-submit');\n    const ageInput = document.getElementById('free-scan-age');<\/p>\n<p>    let progressContainer = null;\n    let progressBar = null;\n    let percentageSpan = null;\n    let statusText = null;\n    let lastSubmittedData = null;<\/p>\n<p>    const resultItem1 = document.getElementById('scan-result-item-1');\n    const resultItem2 = document.getElementById('scan-result-item-2');\n    const resultItem3 = document.getElementById('scan-result-item-3');\n    const resultItem4 = document.getElementById('scan-result-item-4');\n    const resultItem5 = document.getElementById('scan-result-item-5');\n    const resultItem6 = document.getElementById('scan-result-item-6');<\/p>\n<p>    let currentScanId = null;\n    let pollingTimer = null;\n    let pollingStartTime = null;<\/p>\n<p>    const disableFormInputs = () => {\n        formInputs.forEach(input => input.disabled = true);\n    };<\/p>\n<p>    const enableFormInputs = () => {\n        formInputs.forEach(input => input.disabled = false);\n    };<\/p>\n<p>    const initialProgressBoost = () => {\n        return new Promise(resolve => {\n            const boostTarget = 20;\n            const boostDuration = 8000; \/\/ Animate over 8 seconds for a smooth blend\n            const stepTime = 25;\n            let currentPercentage = 0;\n            const boostTimer = setInterval(() => {\n                const increment = (boostTarget \/ boostDuration) * stepTime;\n                currentPercentage += increment;\n                if (currentPercentage >= boostTarget) {\n                    clearInterval(boostTimer);\n                    updateProgressBar(boostTarget);\n                    resolve();\n                } else {\n                    updateProgressBar(currentPercentage);\n                }\n            }, stepTime);\n        });\n    };<\/p>\n<p>const showLoadingUI = () => {\n    \/\/ This part, which creates the progress bar elements if they don't exist, is unchanged.\n    if (!progressContainer) {\n        progressContainer = document.createElement('div');\n        progressContainer.className = 'progress-container';\n        progressBar = document.createElement('div');\n        progressBar.className = 'progress-bar';\n        percentageSpan = document.createElement('span');\n        percentageSpan.className = 'progress-percentage';\n        statusText = document.createElement('div');\n        statusText.className = 'scan-status-text';\n        progressContainer.appendChild(progressBar);\n        progressContainer.appendChild(percentageSpan);\n    }<\/p>\n<p>    \/\/ --- Start of Changed Logic ---\n    \/\/ Find whichever button is currently in the DOM to be replaced.\n    const currentButton = document.getElementById('start-scan-submit') || document.getElementById('retry-scan-submit');<\/p>\n<p>    if (currentButton && currentButton.parentNode) {\n        \/\/ Replace the found button (original or retry) with the progress container.\n        currentButton.parentNode.replaceChild(progressContainer, currentButton);\n        if (!statusText.parentNode) {\n            progressContainer.parentNode.insertBefore(statusText, progressContainer.nextSibling);\n        }\n    }<\/p>\n<p>    \/\/ Reset the progress bar to its initial state for the new scan.\n    updateProgressBar(0);\n    updateStatusText('Scanning data brokers now...');\n};<\/p>\n<p>    const retryScan = () => {\n        if (lastSubmittedData) {\n            initiateScanAndPoll(lastSubmittedData);\n        } else {\n            console.error(\"No data available to retry scan. Reloading.\");\n            location.reload();\n        }\n    };<\/p>\n<p>    const showResultsButton = (buttonText = 'Get Scan Results') => {\n        if (progressContainer && progressContainer.parentNode) {\n            const intermediateButton = document.createElement('button');\n            if (buttonText === 'Retry Scan') {\n                intermediateButton.id = 'retry-scan-submit';\n            } else if (buttonText === 'View Scan Results') {\n                intermediateButton.id = 'view-results-button';\n            }\n            intermediateButton.type = 'button';\n            intermediateButton.className = submitButton ? submitButton.className : 'button button-alt';\n            intermediateButton.textContent = buttonText;\n            intermediateButton.addEventListener('click', () => {\n                if (intermediateButton.textContent === 'Retry Scan') {\n                    retryScan();\n                } else {\n                    showScanResultsUI();\n                }\n            });\n            progressContainer.parentNode.replaceChild(intermediateButton, progressContainer);\n            if (buttonText !== 'Retry Scan' && statusText && statusText.parentNode) {\n                statusText.parentNode.removeChild(statusText);\n            }\n        }\n    };<\/p>\n<p>    const updateStatusText = (message) => {\n        if (statusText) statusText.textContent = message;\n    };<\/p>\n<p>    const updateProgressBar = (percentage) => {\n        if (progressBar && percentageSpan) {\n            const clampedPercentage = Math.max(0, Math.min(100, percentage));\n            progressBar.style.width = clampedPercentage + '%';\n            percentageSpan.textContent = Math.round(clampedPercentage) + '%';\n        }\n    };<\/p>\n<p>    const collectFormData = () => {\n        return {\n            email: document.getElementById('free-scan-email')?.value || '',\n            firstName: document.getElementById('free-scan-first-name')?.value || '',\n            lastName: document.getElementById('free-scan-last-name')?.value || '',\n            location: document.getElementById('free-scan-location')?.value || '',\n            age: document.getElementById('free-scan-age')?.value || ''\n        };\n    };<\/p>\n<p>    const clearAllTimers = () => {\n        clearTimeout(pollingTimer);\n        clearInterval(progressUpdateTimer);\n        clearInterval(zoomTimerId);\n        pollingTimer = progressUpdateTimer = zoomTimerId = null;\n    };<\/p>\n<p>    const handleError = (userMessage = 'An unexpected error occurred.', consoleMessage = 'An unexpected error occurred.', error = null) => {\n        clearAllTimers();\n        console.error('Scan Error:', consoleMessage, error);\n        updateStatusText(`Error: ${userMessage}. Please verify your details and try again`);\n        showResultsButton('Retry Scan');\n        enableFormInputs();\n    };<\/p>\n<p>    const initiateScanAndPoll = async (formData) => {\n        showLoadingUI();\n        disableFormInputs();\n        updateStatusText('Initiating scan...');\n        currentScanId = null;\n        clearAllTimers();\n        await initialProgressBoost();\n        try {\n            const postResponse = await fetch(POST_SCAN_ENDPOINT, {\n                method: 'POST',\n                headers: { 'Content-Type': 'application\/json' },\n                body: JSON.stringify(formData)\n            });\n            if (!postResponse.ok) throw new Error(`Server responded with status ${postResponse.status}`);\n            const postResult = await postResponse.json();\n            currentScanId = postResult.scanId;\n            if (!currentScanId) throw new Error('Scan ID not received from the server.');<\/p>\n<p>            pollingStartTime = performance.now();\n            updateStatusText('Scanning in progress... This usually takes about 5 minutes.');<\/p>\n<p>            progressUpdateTimer = setInterval(() => {\n                if (!pollingStartTime) return;\n                const elapsedTime = performance.now() - pollingStartTime;\n                const progressPercentage = 20 + Math.min(Math.floor((elapsedTime \/ POLLING_TIMEOUT_MS) * 75), 75);\n                updateProgressBar(progressPercentage);\n            }, 500);<\/p>\n<p>            pollingTimer = setTimeout(() => {\n                clearInterval(progressUpdateTimer);\n                progressUpdateTimer = null;\n                pollScanStatus(currentScanId);\n            }, INITIAL_DELAY_MS);\n        } catch (error) {\n            handleError('Failed to start scan.', 'Error during initiateScanAndPoll:', error);\n        }\n    };<\/p>\n<p>    const pollScanStatus = async (scanId) => {\n        clearTimeout(pollingTimer);\n        if (performance.now() - pollingStartTime > POLLING_TIMEOUT_MS) {\n            handleError('Scan timed out.', 'Polling timeout reached.');\n            return;\n        }\n        try {\n            const currentProgress = 20 + Math.min(Math.floor(((performance.now() - pollingStartTime) \/ POLLING_TIMEOUT_MS) * 75), 75);\n            updateProgressBar(currentProgress);<\/p>\n<p>            const getResponse = await fetch(GET_SCAN_ENDPOINT(scanId));\n            if (!getResponse.ok) {\n                if (getResponse.status === 404) throw new Error(`Scan ID ${scanId} not found.`);\n                updateStatusText('Temporary issue checking status. Retrying...');\n                pollingTimer = setTimeout(() => pollScanStatus(scanId), POLLING_INTERVAL_MS);\n                return;\n            }\n            const getResult = await getResponse.json();<\/p>\n<p>            switch (getResult.status) {\n                case 'pending':\n                    updateStatusText('Gathering results...');\n                    pollingTimer = setTimeout(() => pollScanStatus(scanId), POLLING_INTERVAL_MS);\n                    break;\n                case 'done':\n                    updateStatusText('Scan complete! Finalizing...');\n                    clearAllTimers();\n                    const startPercentage = currentProgress;\n                    const animationDuration = 2000;\n                    const animationStartTime = performance.now();\n                    if (startPercentage < 100) {\n                        zoomTimerId = setInterval(() => {\n                            const timeElapsed = performance.now() - animationStartTime;\n                            const progressFraction = Math.min(timeElapsed \/ animationDuration, 1);\n                            updateProgressBar(startPercentage + (100 - startPercentage) * progressFraction);\n                            if (progressFraction >= 1) {\n                                clearInterval(zoomTimerId);\n                                zoomTimerId = null;\n                                displayResults(getResult.siteExposures);\n                                showResultsButton('View Scan Results');\n                            }\n                        }, 50);\n                    } else {\n                        updateProgressBar(100);\n                        displayResults(getResult.siteExposures);\n                        showResultsButton('View Scan Results');\n                    }\n                    break;\n                case 'failed':\n                    handleError('Scan failed on the server.', 'Scan status returned \"failed\".');\n                    break;\n                default:\n                    handleError(`Received unknown scan status: ${getResult.status}`);\n                    break;\n            }\n        } catch (error) {\n            handleError('Error while checking scan status.', 'Error during pollScanStatus:', error);\n        }\n    };<\/p>\n<p>    const displayResults = (siteExposures) => {\n        const resultItems = [resultItem1, resultItem2, resultItem3, resultItem4, resultItem5, resultItem6];\n        const noResultsContainer = document.getElementById('no-results-container');\n        const resultsHeadlineElement = document.getElementById('resultsheadline');\n        const resultsDescriptionElement = document.getElementById('results-description');\n        const noResultsIconContainer = document.getElementById('no-results-icon');\n        const noResultsButton = document.getElementById('no-results-cta-button');\n        const viewResultsButton = document.getElementById('view-results-cta-button');<\/p>\n<p>        resultItems.forEach(item => {\n            if (item) {\n                item.innerHTML = '';\n                item.classList.add('hidden');\n            }\n        });<\/p>\n<p>        if (noResultsContainer) noResultsContainer.classList.add('hidden');\n        if (resultsDescriptionElement) resultsDescriptionElement.classList.add('hidden');\n        if (noResultsIconContainer) noResultsIconContainer.style.display = 'none';\n        if (noResultsButton) noResultsButton.classList.add('hidden');\n        if (viewResultsButton) viewResultsButton.classList.add('hidden');\n        if (resultsHeadlineElement) resultsHeadlineElement.textContent = '';<\/p>\n<p>        if (!siteExposures || siteExposures.length === 0) {\n            if (noResultsIconContainer) noResultsIconContainer.style.display = 'block';\n            if (resultsHeadlineElement) resultsHeadlineElement.textContent = 'Good News! Our Initial Scan Showed No Results.';\n            if (resultsDescriptionElement) {\n                resultsDescriptionElement.textContent = \"But that doesn't mean your info is completely safe, as data brokers constantly add new records. Join now for a comprehensive scan across hundreds of sites, continuous monitoring, and automatic removal requests.\";\n                resultsDescriptionElement.classList.remove('hidden');\n            }\n            if (noResultsContainer) noResultsContainer.classList.remove('hidden');\n            if (noResultsButton) noResultsButton.classList.remove('hidden');<\/p>\n<p>        } else {\n            if (resultsHeadlineElement) resultsHeadlineElement.style.display = 'none';\n            if (resultsDescriptionElement) {\n                resultsDescriptionElement.textContent = \"Your free privacy scan is complete. We found your personal information potentially exposed on the data broker websites listed below. Review your results and take action to remove your data.\";\n                resultsDescriptionElement.classList.remove('hidden');\n            }\n            if (viewResultsButton) viewResultsButton.classList.remove('hidden');<\/p>\n<p>            siteExposures.slice(0, resultItems.length).forEach((exposure, index) => {\n                const gridItem = resultItems[index];\n                if (gridItem) {\n                    let piiItemsHtml = '';\n                    const placeholderText = \"XXXXXXXXXXXX\";\n                    if (exposure.typeName > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Name<\/div>\n<div class=\"pii-blurred-text\">${placeholderText} ${placeholderText}<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typeAddress > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Address<\/div>\n<div class=\"pii-blurred-text\">${placeholderText}, ${placeholderText}<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typePastAddress > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Past Address<\/div>\n<div class=\"pii-blurred-text\">${placeholderText}, ${placeholderText}<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typeAge > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Age<\/div>\n<div class=\"pii-blurred-text\">${placeholderText}<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typeEmail > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Email<\/div>\n<div class=\"pii-blurred-text\">${placeholderText}@${placeholderText}.com<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typeOccupation > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Occupation<\/div>\n<div class=\"pii-blurred-text\">${placeholderText} at ${placeholderText}<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typeRelationshipStatus > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Relationship Status<\/div>\n<div class=\"pii-blurred-text\">${placeholderText}<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typeSpouse > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Spouse<\/div>\n<div class=\"pii-blurred-text\">${placeholderText} ${placeholderText}<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typeFamilyMembers > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Family Members<\/div>\n<div class=\"pii-blurred-text\">${placeholderText}, ${placeholderText}<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typeSocialMediaAccounts > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Social Media Accounts<\/div>\n<div class=\"pii-blurred-text\">@${placeholderText}<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typePhoto > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Photo<\/div>\n<div class=\"pii-blurred-text\">Photo Match Found<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typePropertyRecords > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Property Records<\/div>\n<div class=\"pii-blurred-text\">Associated Record Found<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typeCourtRecords > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Court Records<\/div>\n<div class=\"pii-blurred-text\">Associated Record Found<\/div>\n<\/div>\n<p>`;\n                    if (exposure.typePhone > 0) piiItemsHtml += `<\/p>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Phone<\/div>\n<div class=\"pii-blurred-text\">(XXX) XXX-XXXX<\/div>\n<\/div>\n<p>`;<\/p>\n<p>                    gridItem.innerHTML = `<\/p>\n<h3 class=\"site-name\">${exposure.siteName || 'Unknown Site'}<\/h3>\n<div class=\"pii-details-container\">${piiItemsHtml}<\/div>\n<p>`;\n                    gridItem.classList.remove('hidden');\n                }\n            });\n        }\n    };<\/p>\n<p>    const showScanResultsUI = () => {\n        clearAllTimers();\n        enableFormInputs();\n        if (prescanContainer) {\n            prescanContainer.style.opacity = '0';\n            setTimeout(() => {\n                prescanContainer.style.display = 'none';\n                if (scanresultsContainer) {\n                    scanresultsContainer.style.display = 'block';\n                    requestAnimationFrame(() => {\n                        scanresultsContainer.style.opacity = '1';\n                        scanresultsContainer.classList.remove('hidden');\n                    });\n                }\n            }, 500);\n        }\n    };<\/p>\n<p>    if (form) {\n        form.addEventListener('submit', async (e) => {\n            e.preventDefault();\n            const formData = collectFormData();\n            let isValid = true;<\/p>\n<p>            formInputs.forEach(input => {\n                input.classList.remove('invalid');\n                const errorDiv = document.getElementById(`${input.id}-error`);\n                if (errorDiv) {\n                    errorDiv.textContent = '';\n                    errorDiv.style.display = 'none';\n                }\n            });<\/p>\n<p>            \/\/ Full validation logic\n            const emailInput = document.getElementById('free-scan-email');\n            const emailErrorDiv = document.getElementById('free-scan-email-error');\n            if (!formData.email) {\n                isValid = false;\n                if (emailInput) emailInput.classList.add('invalid');\n                if (emailErrorDiv) {\n                    emailErrorDiv.textContent = 'Email address is required.';\n                    emailErrorDiv.style.display = 'block';\n                }\n            } else if (!\/\\S+@\\S+\\.\\S+\/.test(formData.email)) {\n                isValid = false;\n                if (emailInput) emailInput.classList.add('invalid');\n                if (emailErrorDiv) {\n                    emailErrorDiv.textContent = 'Please enter a valid email address.';\n                    emailErrorDiv.style.display = 'block';\n                }\n            }\n            if (!formData.firstName) {\n                isValid = false;\n                const firstNameInput = document.getElementById('free-scan-first-name');\n                const firstNameErrorDiv = document.getElementById('free-scan-first-name-error');\n                if (firstNameInput) firstNameInput.classList.add('invalid');\n                if (firstNameErrorDiv) {\n                    firstNameErrorDiv.textContent = 'First name is required.';\n                    firstNameErrorDiv.style.display = 'block';\n                }\n            }\n            if (!formData.lastName) {\n                isValid = false;\n                const lastNameInput = document.getElementById('free-scan-last-name');\n                const lastNameErrorDiv = document.getElementById('free-scan-last-name-error');\n                if (lastNameInput) lastNameInput.classList.add('invalid');\n                if (lastNameErrorDiv) {\n                    lastNameErrorDiv.textContent = 'Last name is required.';\n                    lastNameErrorDiv.style.display = 'block';\n                }\n            }\n            if (!formData.location) {\n                isValid = false;\n                const locationInput = document.getElementById('free-scan-location');\n                const locationErrorDiv = document.getElementById('free-scan-location-error');\n                if (locationInput) locationInput.classList.add('invalid');\n                if (locationErrorDiv) {\n                    locationErrorDiv.textContent = 'Location is required.';\n                    locationErrorDiv.style.display = 'block';\n                }\n            }\n            const ageErrorDiv = document.getElementById('free-scan-age-error');\n            if (!formData.age) {\n                isValid = false;\n                if (ageInput) ageInput.classList.add('invalid');\n                if (ageErrorDiv) {\n                    ageErrorDiv.textContent = 'Age is required.';\n                    ageErrorDiv.style.display = 'block';\n                }\n            } else if (ageInput && !ageInput.checkValidity()) {\n                isValid = false;\n                ageInput.classList.add('invalid');\n                if (ageErrorDiv) {\n                    if (ageInput.validity.rangeUnderflow) {\n                        ageErrorDiv.textContent = `Age must be ${ageInput.min} or older.`;\n                    } else if (ageInput.validity.rangeOverflow) {\n                        ageErrorDiv.textContent = `Age must be ${ageInput.max} or younger.`;\n                    } else {\n                        ageErrorDiv.textContent = 'Please enter a valid age.';\n                    }\n                    ageErrorDiv.style.display = 'block';\n                }\n            }<\/p>\n<p>            if (!isValid) return;<\/p>\n<p>            lastSubmittedData = formData;\n            initiateScanAndPoll(formData);\n        });\n    } else {\n        console.error(\"Element with ID 'free-scan-form' not found. Form functionality will not work.\");\n    }<\/p>\n<p>    if (scanresultsContainer) {\n        scanresultsContainer.style.display = 'none';\n        scanresultsContainer.style.opacity = '0';\n        scanresultsContainer.classList.add('hidden');\n    }\n    if (prescanContainer) {\n        prescanContainer.style.display = 'block';\n        prescanContainer.style.opacity = '1';\n        prescanContainer.classList.remove('hidden');\n    }\n});\n<\/script><\/div>\n<h1>\n<p>Find out which data<br \/>brokers have your info.<\/p>\n<\/h1>\n<div>\n<p>Find out which data<br \/>brokers have your info.<\/p>\n<\/div>\n<div>Start your free scan now.<\/div>\n<div>\n<div class=\"radar-widget-container\" role=\"region\" aria-label=\"Data broker scanning animation\">\n<div class=\"radar\" aria-hidden=\"true\">\n<div class=\"pulse\"><\/div>\n<div class=\"radar-line radar-line-horizontal\"><\/div>\n<div class=\"radar-line radar-line-vertical\"><\/div>\n<div class=\"radar-line radar-line-diag-positive\"><\/div>\n<div class=\"radar-line radar-line-diag-negative\"><\/div>\n<div class=\"radar-circle radar-circle-small\"><\/div>\n<div class=\"radar-circle radar-circle-medium\"><\/div>\n<div class=\"radar-circle radar-circle-large\"><\/div>\n<div class=\"radar-scanner-sweep\"><\/div>\n<div class=\"radar-visual-dot\" style=\"top: 30%; left: 20%;\"><\/div>\n<div class=\"radar-visual-dot\" style=\"top: 60%; left: 70%;\"><\/div>\n<div class=\"radar-visual-dot\" style=\"top: 40%; left: 80%;\"><\/div>\n<div class=\"radar-visual-dot\" style=\"top: 20%; left: 50%;\"><\/div>\n<\/div>\n<p><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/09\/beenverified-John-Smith.png\" class=\"brand-logo\" alt=\"BeenVerified data source found\" style=\"top: 40%; left: 60%; animation-delay: 1s;\" \/> <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/09\/Spokeo-John-Smith.png\" class=\"brand-logo\" alt=\"Spokeo data source found\" style=\"top: 30%; left: 70%; animation-delay: 4s;\" \/> <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/09\/panel-whitepages-jane.png\" class=\"brand-logo\" alt=\"Whitepages data source found\" style=\"top: 50%; left: 30%; animation-delay: 7s;\" \/> <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/09\/panel-spokeo-jane.png\" class=\"brand-logo\" alt=\"Additional Spokeo data source found\" style=\"top: 50%; left: 20%; animation-delay: 11s;\" \/><\/p>\n<div id=\"radarLiveStatus\" class=\"sr-only\" aria-live=\"polite\" aria-atomic=\"true\"><\/div>\n<\/div><\/div>\n<div>\n<form id=\"free-scan-form\" class=\"free-scan-form\" name=\"scan-form\">\n<div class=\"free-scan-form-group\">\n<div class=\"form-row\">\n<div class=\"form-field\">\n                <label for=\"free-scan-email\" class=\"form-label\">Email Address<\/label><br \/>\n                <span class=\"form-field-icon\" uk-icon=\"mail\"><\/span><br \/>\n                <input id=\"free-scan-email\" type=\"email\" class=\"form-control\" name=\"email\" required=\"\" \/><\/p>\n<div class=\"error-message\" id=\"free-scan-email-error\"><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div class=\"form-row\">\n<div class=\"form-field\">\n                <label for=\"free-scan-first-name\" class=\"form-label\">First Name<\/label><br \/>\n                <span class=\"form-field-icon\" uk-icon=\"user\"><\/span><br \/>\n                <input id=\"free-scan-first-name\" type=\"text\" class=\"form-control\" name=\"first-name\" required=\"\" \/><\/p>\n<div class=\"error-message\" id=\"free-scan-first-name-error\"><\/div>\n<\/p><\/div>\n<div class=\"form-field\">\n                <label for=\"free-scan-last-name\" class=\"form-label\">Last Name<\/label><br \/>\n                <span class=\"form-field-icon\" uk-icon=\"user\"><\/span><br \/>\n                <input id=\"free-scan-last-name\" type=\"text\" class=\"form-control\" name=\"last-name\" required=\"\" \/><\/p>\n<div class=\"error-message\" id=\"free-scan-last-name-error\"><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div class=\"form-row\">\n<div class=\"form-field\">\n                <label for=\"free-scan-location\" class=\"form-label\">City, State<\/label><br \/>\n                <span class=\"form-field-icon\" uk-icon=\"location\"><\/span><br \/>\n                <input id=\"free-scan-location\" type=\"text\" class=\"form-control\" name=\"location\" required=\"\" autocomplete=\"off\" \/><\/p>\n<div class=\"error-message\" id=\"free-scan-location-error\"><\/div>\n<\/p><\/div>\n<div class=\"form-field\">\n                <label for=\"free-scan-age\" class=\"form-label\">Age<\/label><br \/>\n                <span class=\"form-field-icon\" uk-icon=\"calendar\"><\/span><br \/>\n                <input id=\"free-scan-age\" type=\"number\" class=\"form-control\" name=\"age\" required=\"\" min=\"18\" max=\"100\" \/><\/p>\n<div class=\"error-message\" id=\"free-scan-age-error\"><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div class=\"form-row\">\n<div class=\"form-field full-width\">\n                <input type=\"checkbox\" id=\"free-scan-terms\" name=\"terms\" required=\"\"><br \/>\n                <label for=\"free-scan-terms\" class=\"form-label-checkbox\">I have read and agree to the <a href=\"https:\/\/privacy.joindeleteme.com\/policies\" target=\"_blank\">Terms of Service<\/a> and <a href=\"https:\/\/privacy.joindeleteme.com\/policies?name=terms-of-service\" target=\"_blank\">Privacy Policy<\/a>.<\/label><\/p>\n<div class=\"error-message\" id=\"free-scan-terms-error\"><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<p>        <button id=\"start-scan-submit\" type=\"submit\" class=\"button button-alt\">Get FREE Report<\/button>\n    <\/div>\n<\/form>\n<p><script src=\"https:\/\/maps.googleapis.com\/maps\/api\/js?key=AIzaSyB2uixKZyqxhobXriiP1VefsQULF6Nmtco&#038;libraries=places&#038;callback=initAutocomplete&#038;loading=async\" async defer><\/script><\/p>\n<\/div>\n<div>\n<div class=\"radar-widget-container desktop-radar-widget\">\n<div class=\"radar\" aria-hidden=\"true\">\n<div class=\"pulse\"><\/div>\n<div class=\"radar-line radar-line-horizontal\"><\/div>\n<div class=\"radar-line radar-line-vertical\"><\/div>\n<div class=\"radar-line radar-line-diag-positive\"><\/div>\n<div class=\"radar-line radar-line-diag-negative\"><\/div>\n<div class=\"radar-circle radar-circle-small\"><\/div>\n<div class=\"radar-circle radar-circle-medium\"><\/div>\n<div class=\"radar-circle radar-circle-large\"><\/div>\n<div class=\"radar-scanner-sweep\"><\/div>\n<div class=\"radar-visual-dot\" style=\"top:30%; left:20%;\"><\/div>\n<div class=\"radar-visual-dot\" style=\"top:60%; left:70%;\"><\/div>\n<div class=\"radar-visual-dot\" style=\"top:40%; left:80%;\"><\/div>\n<div class=\"radar-visual-dot\" style=\"top:20%; left:50%;\"><\/div>\n<\/p><\/div>\n<p>    <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/09\/beenverified-John-Smith.png\" class=\"brand-logo\" alt=\"beenverified logo\" style=\"top:40%; left:60%; animation-delay:1s;\"><br \/>\n    <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/09\/Spokeo-John-Smith.png\" class=\"brand-logo\" alt=\"spokeo logo\" style=\"top:30%; left:70%; animation-delay:4s;\"><br \/>\n    <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/09\/panel-whitepages-jane.png\" class=\"brand-logo\" alt=\"whitepages logo\" style=\"top:50%; left:30%; animation-delay:7s;\"><br \/>\n    <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/09\/panel-spokeo-jane.png\" alt=\"spokeo logo\" class=\"brand-logo\" style=\"top:50%; left:20%; animation-delay:11s;\"><\/p>\n<div id=\"radarLiveStatusDesktop\" class=\"sr-only\" aria-live=\"polite\" aria-atomic=\"true\">Radar scan in progress.<\/div>\n<p>    <button id=\"toggleAnimationBtnDesktop\" aria-label=\"Pause animations\" aria-pressed=\"false\" title=\"Pause animations\"><br \/>\n        <svg class=\"icon icon-pause\" viewBox=\"0 0 24 24\" fill=\"currentColor\" width=\"24px\" height=\"24px\">\n            <path d=\"M6 19h4V5H6v14zm8-14v14h4V5h-4z\"\/>\n        <\/svg><br \/>\n        <svg class=\"icon icon-play\" viewBox=\"0 0 24 24\" fill=\"currentColor\" width=\"24px\" height=\"24px\" style=\"display: none;\">\n            <path d=\"M8 5v14l11-7z\"\/>\n        <\/svg><br \/>\n    <\/button>\n<\/div>\n<p><script>\ndocument.addEventListener('DOMContentLoaded', function () {\n    const toggleButton = document.getElementById('toggleAnimationBtnDesktop');\n    const radarLiveStatus = document.getElementById('radarLiveStatusDesktop');\n    const widgetContainer = toggleButton ? toggleButton.closest('.radar-widget-container') : null;<\/p>\n<p>    if (toggleButton && widgetContainer) {\n        toggleButton.addEventListener('click', function () {\n            const isPressed = this.getAttribute('aria-pressed') === 'true';\n            if (isPressed) {\n                widgetContainer.classList.remove('animations-paused');\n                this.setAttribute('aria-pressed', 'false');\n                this.setAttribute('aria-label', 'Pause animation');\n                this.setAttribute('title', 'Pause animation');\n                if(radarLiveStatus) radarLiveStatus.textContent = 'Radar animation resumed.';\n            } else {\n                widgetContainer.classList.add('animations-paused');\n                this.setAttribute('aria-pressed', 'true');\n                this.setAttribute('aria-label', 'Resume animation');\n                this.setAttribute('title', 'Resume animation');\n                if(radarLiveStatus) radarLiveStatus.textContent = 'Radar animation paused.';\n            }\n        });<\/p>\n<p>        const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)');\n        function handleReducedMotion(event) {\n            if (event.matches) {\n                if (widgetContainer && toggleButton) {\n                    widgetContainer.classList.add('animations-paused');\n                    toggleButton.setAttribute('aria-pressed', 'true');\n                    toggleButton.setAttribute('aria-label', 'Resume animation');\n                    toggleButton.setAttribute('title', 'Resume animation');\n                    if(radarLiveStatus) radarLiveStatus.textContent = 'Radar animations paused due to reduced motion preference.';\n                }\n            }\n        }\n        if (prefersReducedMotion) {\n            prefersReducedMotion.addEventListener('change', handleReducedMotion);\n            handleReducedMotion(prefersReducedMotion);\n        }\n    } else {\n        if (!toggleButton) {\n            console.error('CRITICAL: Button with ID \"toggleAnimationBtnDesktop\" was NOT FOUND.');\n        }\n        if (toggleButton && !widgetContainer) {\n            console.error('CRITICAL: Container with class \"radar-widget-container\" for button \"toggleAnimationBtnDesktop\" was NOT FOUND.');\n        }\n    }\n});\n<\/script><\/div>\n<div>\n<p id=\"results-description\">Your free privacy scan is complete. We found your personal information potentially exposed on the data broker websites listed below. Review your results and take action to remove your data.<\/p>\n<\/div>\n<p><p>\n        <a href=\"\/privacy-protection-plans\/\">Start Removing Now<\/a>\n    <\/p>\n<\/p>\n<ul>\n<li>\n<p>\n        <a href=\"\/privacy-protection-plans\/\">Protect Yourself<\/a>\n    <\/p>\n<\/li>\n<li>\n<p>\n        <a href=\"\/scan\/\">Scan Again<\/a>\n    <\/p>\n<\/li>\n<\/ul>\n<div>\n<div class=\"custom-results-grid\">\n<div id=\"scan-result-item-1\" class=\"scan-result-item\">\n<h3 class=\"site-name\">Sample Broker Site<\/h3>\n<div class=\"pii-details-container\">\n<div class=\"pii-item\">\n<div class=\"pii-label\">Name<\/div>\n<div class=\"pii-blurred-text\">John Michael Doe<\/div>\n<\/p><\/div>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Address<\/div>\n<div class=\"pii-blurred-text\">123 Elm Street, Anytown, USA 12345<\/div>\n<\/p><\/div>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Email<\/div>\n<div class=\"pii-blurred-text\">john.doe.sample@email.com<\/div>\n<\/p><\/div>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Phone<\/div>\n<div class=\"pii-blurred-text\">(555) 123-4567<\/div>\n<\/p><\/div>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Relatives<\/div>\n<div class=\"pii-blurred-text\">Jane Doe, Jacob Doe<\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div id=\"scan-result-item-2\" class=\"scan-result-item\">\n<h3 class=\"site-name\">Another Data Site<\/h3>\n<div class=\"pii-details-container\">\n<div class=\"pii-item\">\n<div class=\"pii-label\">Name<\/div>\n<div class=\"pii-blurred-text\">John M Doe<\/div>\n<\/p><\/div>\n<div class=\"pii-item\">\n<div class=\"pii-label\">Past Address<\/div>\n<div class=\"pii-blurred-text\">456 Oak Avenue, Sometown, USA 67890<\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div id=\"scan-result-item-3\" class=\"scan-result-item\">\n<h3 class=\"site-name\">Loading&#8230;<\/h3>\n<div class=\"pii-details-container\">\n        <\/div>\n<\/p><\/div>\n<div id=\"scan-result-item-4\" class=\"scan-result-item\">\n<h3 class=\"site-name\">Loading&#8230;<\/h3>\n<div class=\"pii-details-container\">\n        <\/div>\n<\/p><\/div>\n<div id=\"scan-result-item-5\" class=\"scan-result-item\">\n<h3 class=\"site-name\">Loading&#8230;<\/h3>\n<div class=\"pii-details-container\">\n        <\/div>\n<\/p><\/div>\n<div id=\"scan-result-item-6\" class=\"scan-result-item\">\n<h3 class=\"site-name\">Loading&#8230;<\/h3>\n<div class=\"pii-details-container\">\n        <\/div>\n<\/p><\/div>\n<\/div>\n<\/div>\n<h2>\n<p><span class=\"readytobe\">How does the<br \/>free scan work?<br \/><\/span><\/p>\n<\/h2>\n<ul>\n<li>\n<div><span uk-icon=\"icon: bootstrap--pencil-square\"><\/span><\/p>\n<p> Enter your name and location.<\/p>\n<\/div>\n<\/li>\n<li>\n<div><span uk-icon=\"icon: bootstrap--trash\"><\/span><\/p>\n<p> Our scan tool searches for your personal info found on data brokers across the web.<\/p><\/div>\n<\/li>\n<li>\n<div><span uk-icon=\"icon: search\"><\/span><\/p>\n<p>See what info each data broker has on you.<\/p><\/div>\n<\/li>\n<li>\n<div><span uk-icon=\"icon: bootstrap--calendar2-check\"><\/span><\/p>\n<p>Join DeleteMe to get this removed, and keep it removed all year long.\n<\/p><\/div>\n<\/li>\n<\/ul>\n<p><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/09\/Icon-Free-Scan.png\" alt=\"Icon Computer\"><\/p>\n<h2>How does the<br \/>free scan work?<\/h2>\n<p><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/09\/Icon-Free-Scan.png\" alt=\"Icon Computer\"><\/p>\n<ul>\n<li>\n<div><span uk-icon=\"icon: bootstrap--pencil-square\"><\/span><\/p>\n<p> Enter your name and location.<\/p>\n<\/div>\n<\/li>\n<li>\n<div><span uk-icon=\"icon: bootstrap--trash\"><\/span><\/p>\n<p> Our scan tool searches for your personal info found on data brokers across the web.<\/p><\/div>\n<\/li>\n<li>\n<div><span uk-icon=\"icon: search\"><\/span><\/p>\n<p>See what info each data broker has on you.<\/p><\/div>\n<\/li>\n<li>\n<div><span uk-icon=\"icon: bootstrap--calendar2-check\"><\/span><\/p>\n<p>Join DeleteMe to get this removed, and keep it removed all year long.\n<\/p><\/div>\n<\/li>\n<\/ul>\n<ul>\n<li>\n<h3>100M+<\/h3>\n<div>\n<p>Successful opt-out removals completed by Privacy Advisors<\/p>\n<\/div>\n<\/li>\n<li>\n<h3>54+<\/h3>\n<div>\n<p>Years of effort saved deleting for customers (20,000+ hours of data removal)<\/p>\n<\/div>\n<\/li>\n<li>\n<h3>2,389+<\/h3>\n<div>\n<p>Average # of exposed personal info (\u201cPII\u201d) found on data brokers over a two year DeleteMe subscription<\/p>\n<\/div>\n<\/li>\n<\/ul>\n<ul>\n<li>\n<h3>100M+<\/h3>\n<div>\n<p>Successful opt-out removals completed by Privacy Advisors<\/p>\n<\/div>\n<\/li>\n<li>\n<h3>54+<\/h3>\n<div>\n<p>Years of effort saved deleting for customers (20,000+ hours of data removal)<\/p>\n<\/div>\n<\/li>\n<li>\n<h3>2,389+<\/h3>\n<div>\n<p>Average # of exposed personal info (\u201cPII\u201d) found on data brokers over a two year DeleteMe subscription<\/p>\n<\/div>\n<\/li>\n<\/ul>\n<div>We remove all this data exposed by data brokers<\/div>\n<div>\n<div class=\"uk-padding-small\">\n<p><span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-user.svg\" alt=\"User Icon\" \/> Name<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-clock.svg\" alt=\"Clock Icon\" \/> Age<\/span><\/p>\n<p><span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-location.svg\" alt=\"Location Icon\" \/> Address<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-telephone.svg\" alt=\"Telephone Icon\" \/> Phone<\/span><\/p>\n<p><span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-users.svg\" alt=\"Users Icon\" \/> Relatives<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-globe.svg\" alt=\"Globe Icon\" \/> Social media<\/span><\/p>\n<p><span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-briefcase.svg\" alt=\"Briefcase Icon\" \/> Occupation<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-link.svg\" alt=\"Link Icon\" \/> Marital Status<\/span><\/p>\n<p><span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-home.svg\" alt=\"Home Icon\" \/> Property Value<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-eye.svg\" alt=\"Eye Icon\" \/> Past Address<\/span><\/p>\n<p><span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-camera.svg\" alt=\"Camera Icon\" \/> Photos<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-email.svg\" alt=\"Email Icon\" \/> Email<\/span><\/p>\n<\/div>\n<\/div>\n<div>\n<p>We remove all <br \/>this data exposed <br \/>by data brokers<\/p>\n<\/div>\n<div>\n<p><style>\n    .uk-padding-small p {\n        display: flex;\n        justify-content: flex-start;\n        flex-wrap: nowrap;\n    }\n    .uk-label {\n        flex: 0 1 auto;\n        margin-right: 10px;\n        max-width: 48%;\n        box-sizing: border-box;\n    }\n    .uk-label:last-child {\n        margin-right: 0;\n    }\n<\/style>\n<\/p>\n<div class=\"uk-padding-small\">\n<p><span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-user.svg\" alt=\"User Icon\" \/> Name<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-clock.svg\" alt=\"Clock Icon\" \/> Age<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-location.svg\" alt=\"Location Icon\" \/> Address<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-telephone.svg\" alt=\"Telephone Icon\" \/> Phone<\/span><\/p>\n<p><span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-users.svg\" alt=\"Users Icon\" \/> Relatives<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-globe.svg\" alt=\"Globe Icon\" \/> Social media<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-briefcase.svg\" alt=\"Briefcase Icon\" \/> Occupation<\/span><\/p>\n<p><span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-link.svg\" alt=\"Link Icon\" \/> Marital Status<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-home.svg\" alt=\"Home Icon\" \/> Property Value<\/span><\/p>\n<p><span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-eye.svg\" alt=\"Eye Icon\" \/> Past Address<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-camera.svg\" alt=\"Camera Icon\" \/> Photos<\/span> <span class=\"uk-label\"><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/themes\/yootheme-JoinDeleteMe\/myicons\/orange-email.svg\" alt=\"Email Icon\" \/> Email<\/span><\/p>\n<\/div>\n<\/div>\n<h2>Featured on<\/h2>\n<ul>\n<li>\n<p>        <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2023\/08\/newyorktimes-logoblack.png\" alt=\"New York Times Logo\"><\/p>\n<div>\n<p>&#8220;DeleteMe found that all six major people databases &#8211; 123people.com, MyLife.com, Spokeo, US Search, White Pages and PeopleFinder.com &#8211; have dossiers on me. All have my home address, which doesn&#8217;t thrill me&#8230;&#8221;<\/p>\n<\/div>\n<\/li>\n<li>\n<p>        <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2023\/08\/forbes-logooriginal.png\" alt=\"Forbes Logo\"><\/p>\n<div>\n<p>&#8220;The internet is literally an addiction and our online existence only expands the longer we perpetuate its use. But there is a way to end it all \u2014 sign up for DeleteMe and remove yourself from the hellscape that is the internet.&#8221;<\/p>\n<\/div>\n<\/li>\n<li>\n<p>        <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2023\/08\/usatoday-logooriginal.png\" alt=\"USA Today Logo\"><\/p>\n<div>\n<p>&#8220;DeleteMe, one of the online reputation services, promised to remove me from the top people-finder databases \u2014 in my case, 23 of them. Over the next several weeks I watched in relief as my data disappeared. From some services I was erased within 24 hours.&#8221;<\/p>\n<\/div>\n<\/li>\n<li>\n<p>        <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2023\/08\/consumerreports-logooriginal.png\" alt=\"Consumer Reports Logo\"><\/p>\n<div>\n<p>&#8220;You can limit how easy it is to use your information by removing it from certain sites online through services like DeleteMe, or through the time-consuming process of opting out yourself.&#8221;<\/p>\n<\/div>\n<\/li>\n<li>\n<p>        <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2023\/08\/hbr-logooriginal.png\" alt=\"Harvard Business Review Logo\"><\/p>\n<div>\n<p>&#8220;Organizations should offer concrete resources and services to employees: These should include: cybersecurity services that protect against impersonation, doxing, and identity theft such as Deleteme. Harvard Business Review, <a href=\"https:\/\/hbr.org\/2020\/07\/what-to-do-when-your-employee-is-harassed-online\" target=\"_blank\" rel=\"noopener\">What to Do When Your Employee is Harassed Online<\/a>&#8220;<\/p>\n<\/div>\n<\/li>\n<\/ul>\n<h2><span class=\"seewhat\">We&#8217;re ready to be <br \/><\/span><span class=\"customers\">your privacy partner.<\/span><span class=\"seewhat\"><\/span><\/h2>\n<div>\n<p>With over 100 Million personal listings removed since 2010,<\/p>\n<p>DeleteMe is the most trusted and proven privacy solution available.<\/p>\n<\/div>\n<p><p>\n        <a href=\"#\">Join DeleteMe Risk-Free Now<\/a>\n    <\/p>\n<\/p>\n<h2><span class=\"seewhat\">See what our<br \/><\/span><span class=\"customers\">customers<\/span><span class=\"seewhat\"> say<\/span><\/h2>\n<div><span class=\"seewhat\">See what our<br \/><\/span><span class=\"customers\">customers<\/span><span class=\"seewhat\"> say<\/span><\/div>\n<p><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/04\/sitejabber-logostarsdarktext.png\" alt=\"5 Stars Excellent, Sitejabber\"><\/p>\n<div>\n<p>    <img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/04\/orangestars.png\" alt=\"5 Stars, Excellent, Sitejabber\"><\/p>\n<\/div>\n<p><img decoding=\"async\" src=\"https:\/\/joindeleteme.com\/wp-content\/uploads\/2024\/04\/sitejabber-logostarsdarktext.png\" alt=\"Excellent, Sitejabber\"><\/p>\n<h2><span class=\"general\">Get access to <br \/>our<\/span> <span class=\"questions\">privacy experts<\/span><\/h2>\n<h2><span class=\"general\">Get access to <br \/>our<\/span> <span class=\"questions\">privacy experts<\/span><\/h2>\n<div>\n<p>Expert advisors remove your info and help answer your privacy questions and custom requests.<\/p>\n<\/div>\n<ul>\n<li>\n<div>\n<ul uk-accordion=\"\">\n<li>\n    <a class=\"uk-accordion-title\" href=\"#\"><\/p>\n<h3 class=\"accordion-heading\">What is a Data Broker?<\/h3>\n<p><\/a><\/p>\n<div class=\"uk-accordion-content\">\n      <br \/>Data brokers are corporations that collect huge amounts of personally identifiable information (PII) and package it all together to create \u2018profiles\u2019 or \u2018listings\u2019 with your personal information. These profiles include things like Social Security numbers, birthdays, past and recent addresses, and more.<br \/>\n      <br \/>\n      <span class=\"uk-align-right\"><br \/>\n        <a href=\"https:\/\/help.joindeleteme.com\/hc\/en-us\/articles\/8320076020627-How-is-my-personal-information-online\" target=\"_blank\" rel=\"noopener\" class=\"link\">Read More<\/a><br \/>\n      <\/span>\n    <\/div>\n<\/li>\n<\/ul>\n<\/div>\n<\/li>\n<li>\n<div>\n<ul uk-accordion=\"\">\n<li>\n    <a class=\"uk-accordion-title\" href=\"#\"><\/p>\n<h3 class=\"accordion-heading\">How is my personal information online?<\/h3>\n<p><\/a><\/p>\n<div class=\"uk-accordion-content\">\n      <br \/>Data brokers crawl the web searching for information, and use it to build a profile of you. They find this from government and other public records, self-reported information, social media, and other data brokers.<br \/>\n      <br \/>\n      <span class=\"uk-align-right\"><br \/>\n        <a href=\"https:\/\/getabine.zendesk.com\/hc\/en-us\/articles\/8320076020627\/\" target=\"_blank\" rel=\"noopener\" class=\"link\">Read More<\/a><br \/>\n      <\/span>\n    <\/div>\n<\/li>\n<\/ul>\n<\/div>\n<\/li>\n<li>\n<div>\n<ul uk-accordion=\"\">\n<li>\n    <a class=\"uk-accordion-title\" href=\"#\"><\/p>\n<h3 class=\"accordion-heading\">What happens after I sign up for DeleteMe?<\/h3>\n<p><\/a><\/p>\n<div class=\"uk-accordion-content\">\n      <br \/>Once you\u2019ve completed your sign-up for DeleteMe, we\u2019ll send you a welcome email so you can get started right away. You\u2019ll log in and find your DeleteMe personal profile page. You tell us exactly what information you want deleted, and our privacy experts take it from there.<br \/>\n      <br \/>\n      <span class=\"uk-align-right\"><br \/>\n        <a href=\"https:\/\/help.joindeleteme.com\/hc\/en-us\/articles\/8171074791315-What-happens-after-I-sign-up-for-DeleteMe\" target=\"_blank\" rel=\"noopener\" class=\"link\">Read More<\/a><br \/>\n      <\/span>\n    <\/div>\n<\/li>\n<\/ul>\n<\/div>\n<\/li>\n<li>\n<div>\n<ul uk-accordion=\"\">\n<li>\n    <a class=\"uk-accordion-title\" href=\"#\"><\/p>\n<h3 class=\"accordion-heading\">Can you delete Google search results for me?<\/h3>\n<p><\/a><\/p>\n<div class=\"uk-accordion-content\">\n      <br \/>We cannot delete Google search results themselves without first removing the source information that the search result is pulling the information from, the data broker websites. Google is not the source of the search results it&#8217;s showing you; it\u2019s merely displaying your information from the most relevant sources, based on your Google search query letting your information be found more easily. Google does not have the file containing your personal information, nor can it delete the file.<br \/>\n      <br \/>\n      <span class=\"uk-align-right\"><br \/>\n        <a href=\"https:\/\/help.joindeleteme.com\/hc\/en-us\/articles\/8171487675027-Can-you-delete-Google-search-results-for-me\" target=\"_blank\" rel=\"noopener\" class=\"link\">Read More<\/a><br \/>\n      <\/span>\n    <\/div>\n<\/li>\n<\/ul>\n<\/div>\n<\/li>\n<\/ul>\n<p><!--more--><br \/>\n<!-- {\"type\":\"layout\",\"children\":[{\"type\":\"section\",\"props\":{\"animation_delay\":\"50\",\"css\":\".el-section {\\n  background: #ECEFF5;\\n}\",\"header_transparent\":true,\"image_position\":\"center-center\",\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<script>\\n    let autocomplete;\\nlet progressUpdateTimer = null;\\nlet zoomTimerId = null;\\n\\nfunction initAutocomplete() {\\n    const locationInput = document.getElementById('free-scan-location');\\n    if (locationInput) {\\n        autocomplete = new google.maps.places.Autocomplete(locationInput, {\\n            types: ['(cities)'],\\n            fields: ['formatted_address'],\\n            componentRestrictions: { country: 'us' }\\n        });\\n    } else {\\n        console.error(\\\"Could not find location input element with ID 'free-scan-location' for Autocomplete.\\\");\\n    }\\n}\\n\\ndocument.addEventListener('DOMContentLoaded', () => {\\n    const API_BASE_URL = 'https:\\\/\\\/vxp.joindeleteme.com\\\/bff\\\/api\\\/v2';\\n    const POST_SCAN_ENDPOINT = `${API_BASE_URL}\\\/free-scan`;\\n    const GET_SCAN_ENDPOINT = (scanId) => `${API_BASE_URL}\\\/free-scan\\\/${scanId}`;\\n    const POLLING_INTERVAL_MS = 5000;\\n    const POLLING_TIMEOUT_MS = 600000;\\n    const INITIAL_DELAY_MS = 90000;\\n\\n    const form = document.getElementById('free-scan-form');\\n    const prescanContainer = document.getElementById('prescan');\\n    const scanresultsContainer = document.getElementById('scanresults');\\n    const formInputs = form ? form.querySelectorAll('.form-control') : [];\\n    const submitButton = document.getElementById('start-scan-submit');\\n    const ageInput = document.getElementById('free-scan-age');\\n\\n    let progressContainer = null;\\n    let progressBar = null;\\n    let percentageSpan = null;\\n    let statusText = null;\\n    let lastSubmittedData = null;\\n\\n    const resultItem1 = document.getElementById('scan-result-item-1');\\n    const resultItem2 = document.getElementById('scan-result-item-2');\\n    const resultItem3 = document.getElementById('scan-result-item-3');\\n    const resultItem4 = document.getElementById('scan-result-item-4');\\n    const resultItem5 = document.getElementById('scan-result-item-5');\\n    const resultItem6 = document.getElementById('scan-result-item-6');\\n\\n    let currentScanId = null;\\n    let pollingTimer = null;\\n    let pollingStartTime = null;\\n\\n    const disableFormInputs = () => {\\n        formInputs.forEach(input => input.disabled = true);\\n    };\\n\\n    const enableFormInputs = () => {\\n        formInputs.forEach(input => input.disabled = false);\\n    };\\n\\n    const initialProgressBoost = () => {\\n        return new Promise(resolve => {\\n            const boostTarget = 20;\\n            const boostDuration = 8000; \\\/\\\/ Animate over 8 seconds for a smooth blend\\n            const stepTime = 25;\\n            let currentPercentage = 0;\\n            const boostTimer = setInterval(() => {\\n                const increment = (boostTarget \\\/ boostDuration) * stepTime;\\n                currentPercentage += increment;\\n                if (currentPercentage >= boostTarget) {\\n                    clearInterval(boostTimer);\\n                    updateProgressBar(boostTarget);\\n                    resolve();\\n                } else {\\n                    updateProgressBar(currentPercentage);\\n                }\\n            }, stepTime);\\n        });\\n    };\\n\\nconst showLoadingUI = () => {\\n    \\\/\\\/ This part, which creates the progress bar elements if they don't exist, is unchanged.\\n    if (!progressContainer) {\\n        progressContainer = document.createElement('div');\\n        progressContainer.className = 'progress-container';\\n        progressBar = document.createElement('div');\\n        progressBar.className = 'progress-bar';\\n        percentageSpan = document.createElement('span');\\n        percentageSpan.className = 'progress-percentage';\\n        statusText = document.createElement('div');\\n        statusText.className = 'scan-status-text';\\n        progressContainer.appendChild(progressBar);\\n        progressContainer.appendChild(percentageSpan);\\n    }\\n\\n    \\\/\\\/ --- Start of Changed Logic ---\\n    \\\/\\\/ Find whichever button is currently in the DOM to be replaced.\\n    const currentButton = document.getElementById('start-scan-submit') || document.getElementById('retry-scan-submit');\\n\\n    if (currentButton && currentButton.parentNode) {\\n        \\\/\\\/ Replace the found button (original or retry) with the progress container.\\n        currentButton.parentNode.replaceChild(progressContainer, currentButton);\\n        if (!statusText.parentNode) {\\n            progressContainer.parentNode.insertBefore(statusText, progressContainer.nextSibling);\\n        }\\n    }\\n\\n    \\\/\\\/ Reset the progress bar to its initial state for the new scan.\\n    updateProgressBar(0);\\n    updateStatusText('Scanning data brokers now...');\\n};\\n\\n    const retryScan = () => {\\n        if (lastSubmittedData) {\\n            initiateScanAndPoll(lastSubmittedData);\\n        } else {\\n            console.error(\\\"No data available to retry scan. Reloading.\\\");\\n            location.reload();\\n        }\\n    };\\n\\n    const showResultsButton = (buttonText = 'Get Scan Results') => {\\n        if (progressContainer && progressContainer.parentNode) {\\n            const intermediateButton = document.createElement('button');\\n            if (buttonText === 'Retry Scan') {\\n                intermediateButton.id = 'retry-scan-submit';\\n            } else if (buttonText === 'View Scan Results') {\\n                intermediateButton.id = 'view-results-button';\\n            }\\n            intermediateButton.type = 'button';\\n            intermediateButton.className = submitButton ? submitButton.className : 'button button-alt';\\n            intermediateButton.textContent = buttonText;\\n            intermediateButton.addEventListener('click', () => {\\n                if (intermediateButton.textContent === 'Retry Scan') {\\n                    retryScan();\\n                } else {\\n                    showScanResultsUI();\\n                }\\n            });\\n            progressContainer.parentNode.replaceChild(intermediateButton, progressContainer);\\n            if (buttonText !== 'Retry Scan' && statusText && statusText.parentNode) {\\n                statusText.parentNode.removeChild(statusText);\\n            }\\n        }\\n    };\\n\\n    const updateStatusText = (message) => {\\n        if (statusText) statusText.textContent = message;\\n    };\\n\\n    const updateProgressBar = (percentage) => {\\n        if (progressBar && percentageSpan) {\\n            const clampedPercentage = Math.max(0, Math.min(100, percentage));\\n            progressBar.style.width = clampedPercentage + '%';\\n            percentageSpan.textContent = Math.round(clampedPercentage) + '%';\\n        }\\n    };\\n\\n    const collectFormData = () => {\\n        return {\\n            email: document.getElementById('free-scan-email')?.value || '',\\n            firstName: document.getElementById('free-scan-first-name')?.value || '',\\n            lastName: document.getElementById('free-scan-last-name')?.value || '',\\n            location: document.getElementById('free-scan-location')?.value || '',\\n            age: document.getElementById('free-scan-age')?.value || ''\\n        };\\n    };\\n\\n    const clearAllTimers = () => {\\n        clearTimeout(pollingTimer);\\n        clearInterval(progressUpdateTimer);\\n        clearInterval(zoomTimerId);\\n        pollingTimer = progressUpdateTimer = zoomTimerId = null;\\n    };\\n\\n    const handleError = (userMessage = 'An unexpected error occurred.', consoleMessage = 'An unexpected error occurred.', error = null) => {\\n        clearAllTimers();\\n        console.error('Scan Error:', consoleMessage, error);\\n        updateStatusText(`Error: ${userMessage}. Please verify your details and try again`);\\n        showResultsButton('Retry Scan');\\n        enableFormInputs();\\n    };\\n\\n    const initiateScanAndPoll = async (formData) => {\\n        showLoadingUI();\\n        disableFormInputs();\\n        updateStatusText('Initiating scan...');\\n        currentScanId = null;\\n        clearAllTimers();\\n        await initialProgressBoost();\\n        try {\\n            const postResponse = await fetch(POST_SCAN_ENDPOINT, {\\n                method: 'POST',\\n                headers: { 'Content-Type': 'application\\\/json' },\\n                body: JSON.stringify(formData)\\n            });\\n            if (!postResponse.ok) throw new Error(`Server responded with status ${postResponse.status}`);\\n            const postResult = await postResponse.json();\\n            currentScanId = postResult.scanId;\\n            if (!currentScanId) throw new Error('Scan ID not received from the server.');\\n\\n            pollingStartTime = performance.now();\\n            updateStatusText('Scanning in progress... This usually takes about 5 minutes.');\\n\\n            progressUpdateTimer = setInterval(() => {\\n                if (!pollingStartTime) return;\\n                const elapsedTime = performance.now() - pollingStartTime;\\n                const progressPercentage = 20 + Math.min(Math.floor((elapsedTime \\\/ POLLING_TIMEOUT_MS) * 75), 75);\\n                updateProgressBar(progressPercentage);\\n            }, 500);\\n\\n            pollingTimer = setTimeout(() => {\\n                clearInterval(progressUpdateTimer);\\n                progressUpdateTimer = null;\\n                pollScanStatus(currentScanId);\\n            }, INITIAL_DELAY_MS);\\n        } catch (error) {\\n            handleError('Failed to start scan.', 'Error during initiateScanAndPoll:', error);\\n        }\\n    };\\n\\n    const pollScanStatus = async (scanId) => {\\n        clearTimeout(pollingTimer);\\n        if (performance.now() - pollingStartTime > POLLING_TIMEOUT_MS) {\\n            handleError('Scan timed out.', 'Polling timeout reached.');\\n            return;\\n        }\\n        try {\\n            const currentProgress = 20 + Math.min(Math.floor(((performance.now() - pollingStartTime) \\\/ POLLING_TIMEOUT_MS) * 75), 75);\\n            updateProgressBar(currentProgress);\\n\\n            const getResponse = await fetch(GET_SCAN_ENDPOINT(scanId));\\n            if (!getResponse.ok) {\\n                if (getResponse.status === 404) throw new Error(`Scan ID ${scanId} not found.`);\\n                updateStatusText('Temporary issue checking status. Retrying...');\\n                pollingTimer = setTimeout(() => pollScanStatus(scanId), POLLING_INTERVAL_MS);\\n                return;\\n            }\\n            const getResult = await getResponse.json();\\n\\n            switch (getResult.status) {\\n                case 'pending':\\n                    updateStatusText('Gathering results...');\\n                    pollingTimer = setTimeout(() => pollScanStatus(scanId), POLLING_INTERVAL_MS);\\n                    break;\\n                case 'done':\\n                    updateStatusText('Scan complete! Finalizing...');\\n                    clearAllTimers();\\n                    const startPercentage = currentProgress;\\n                    const animationDuration = 2000;\\n                    const animationStartTime = performance.now();\\n                    if (startPercentage < 100) {\\n                        zoomTimerId = setInterval(() => {\\n                            const timeElapsed = performance.now() - animationStartTime;\\n                            const progressFraction = Math.min(timeElapsed \\\/ animationDuration, 1);\\n                            updateProgressBar(startPercentage + (100 - startPercentage) * progressFraction);\\n                            if (progressFraction >= 1) {\\n                                clearInterval(zoomTimerId);\\n                                zoomTimerId = null;\\n                                displayResults(getResult.siteExposures);\\n                                showResultsButton('View Scan Results');\\n                            }\\n                        }, 50);\\n                    } else {\\n                        updateProgressBar(100);\\n                        displayResults(getResult.siteExposures);\\n                        showResultsButton('View Scan Results');\\n                    }\\n                    break;\\n                case 'failed':\\n                    handleError('Scan failed on the server.', 'Scan status returned \\\"failed\\\".');\\n                    break;\\n                default:\\n                    handleError(`Received unknown scan status: ${getResult.status}`);\\n                    break;\\n            }\\n        } catch (error) {\\n            handleError('Error while checking scan status.', 'Error during pollScanStatus:', error);\\n        }\\n    };\\n\\n    const displayResults = (siteExposures) => {\\n        const resultItems = [resultItem1, resultItem2, resultItem3, resultItem4, resultItem5, resultItem6];\\n        const noResultsContainer = document.getElementById('no-results-container');\\n        const resultsHeadlineElement = document.getElementById('resultsheadline');\\n        const resultsDescriptionElement = document.getElementById('results-description');\\n        const noResultsIconContainer = document.getElementById('no-results-icon');\\n        const noResultsButton = document.getElementById('no-results-cta-button');\\n        const viewResultsButton = document.getElementById('view-results-cta-button');\\n\\n        resultItems.forEach(item => {\\n            if (item) {\\n                item.innerHTML = '';\\n                item.classList.add('hidden');\\n            }\\n        });\\n\\n        if (noResultsContainer) noResultsContainer.classList.add('hidden');\\n        if (resultsDescriptionElement) resultsDescriptionElement.classList.add('hidden');\\n        if (noResultsIconContainer) noResultsIconContainer.style.display = 'none';\\n        if (noResultsButton) noResultsButton.classList.add('hidden');\\n        if (viewResultsButton) viewResultsButton.classList.add('hidden');\\n        if (resultsHeadlineElement) resultsHeadlineElement.textContent = '';\\n\\n\\n        if (!siteExposures || siteExposures.length === 0) {\\n            if (noResultsIconContainer) noResultsIconContainer.style.display = 'block';\\n            if (resultsHeadlineElement) resultsHeadlineElement.textContent = 'Good News! Our Initial Scan Showed No Results.';\\n            if (resultsDescriptionElement) {\\n                resultsDescriptionElement.textContent = \\\"But that doesn't mean your info is completely safe, as data brokers constantly add new records. Join now for a comprehensive scan across hundreds of sites, continuous monitoring, and automatic removal requests.\\\";\\n                resultsDescriptionElement.classList.remove('hidden');\\n            }\\n            if (noResultsContainer) noResultsContainer.classList.remove('hidden');\\n            if (noResultsButton) noResultsButton.classList.remove('hidden');\\n\\n        } else {\\n            if (resultsHeadlineElement) resultsHeadlineElement.style.display = 'none';\\n            if (resultsDescriptionElement) {\\n                resultsDescriptionElement.textContent = \\\"Your free privacy scan is complete. We found your personal information potentially exposed on the data broker websites listed below. Review your results and take action to remove your data.\\\";\\n                resultsDescriptionElement.classList.remove('hidden');\\n            }\\n            if (viewResultsButton) viewResultsButton.classList.remove('hidden');\\n\\n            siteExposures.slice(0, resultItems.length).forEach((exposure, index) => {\\n                const gridItem = resultItems[index];\\n                if (gridItem) {\\n                    let piiItemsHtml = '';\\n                    const placeholderText = \\\"XXXXXXXXXXXX\\\";\\n                    if (exposure.typeName > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Name<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">${placeholderText} ${placeholderText}<\\\/div><\\\/div>`;\\n                    if (exposure.typeAddress > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Address<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">${placeholderText}, ${placeholderText}<\\\/div><\\\/div>`;\\n                    if (exposure.typePastAddress > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Past Address<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">${placeholderText}, ${placeholderText}<\\\/div><\\\/div>`;\\n                    if (exposure.typeAge > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Age<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">${placeholderText}<\\\/div><\\\/div>`;\\n                    if (exposure.typeEmail > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Email<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">${placeholderText}@${placeholderText}.com<\\\/div><\\\/div>`;\\n                    if (exposure.typeOccupation > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Occupation<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">${placeholderText} at ${placeholderText}<\\\/div><\\\/div>`;\\n                    if (exposure.typeRelationshipStatus > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Relationship Status<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">${placeholderText}<\\\/div><\\\/div>`;\\n                    if (exposure.typeSpouse > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Spouse<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">${placeholderText} ${placeholderText}<\\\/div><\\\/div>`;\\n                    if (exposure.typeFamilyMembers > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Family Members<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">${placeholderText}, ${placeholderText}<\\\/div><\\\/div>`;\\n                    if (exposure.typeSocialMediaAccounts > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Social Media Accounts<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">@${placeholderText}<\\\/div><\\\/div>`;\\n                    if (exposure.typePhoto > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Photo<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">Photo Match Found<\\\/div><\\\/div>`;\\n                    if (exposure.typePropertyRecords > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Property Records<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">Associated Record Found<\\\/div><\\\/div>`;\\n                    if (exposure.typeCourtRecords > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Court Records<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">Associated Record Found<\\\/div><\\\/div>`;\\n                    if (exposure.typePhone > 0) piiItemsHtml += `\n\n<div class=\\\"pii-item\\\">\n\n<div class=\\\"pii-label\\\">Phone<\\\/div>\n\n<div class=\\\"pii-blurred-text\\\">(XXX) XXX-XXXX<\\\/div><\\\/div>`;\\n\\n                    gridItem.innerHTML = `\n\n<h3 class=\\\"site-name\\\">${exposure.siteName || 'Unknown Site'}<\\\/h3>\n\n<div class=\\\"pii-details-container\\\">${piiItemsHtml}<\\\/div>`;\\n                    gridItem.classList.remove('hidden');\\n                }\\n            });\\n        }\\n    };\\n\\n    const showScanResultsUI = () => {\\n        clearAllTimers();\\n        enableFormInputs();\\n        if (prescanContainer) {\\n            prescanContainer.style.opacity = '0';\\n            setTimeout(() => {\\n                prescanContainer.style.display = 'none';\\n                if (scanresultsContainer) {\\n                    scanresultsContainer.style.display = 'block';\\n                    requestAnimationFrame(() => {\\n                        scanresultsContainer.style.opacity = '1';\\n                        scanresultsContainer.classList.remove('hidden');\\n                    });\\n                }\\n            }, 500);\\n        }\\n    };\\n\\n    if (form) {\\n        form.addEventListener('submit', async (e) => {\\n            e.preventDefault();\\n            const formData = collectFormData();\\n            let isValid = true;\\n            \\n            formInputs.forEach(input => {\\n                input.classList.remove('invalid');\\n                const errorDiv = document.getElementById(`${input.id}-error`);\\n                if (errorDiv) {\\n                    errorDiv.textContent = '';\\n                    errorDiv.style.display = 'none';\\n                }\\n            });\\n\\n            \\\/\\\/ Full validation logic\\n            const emailInput = document.getElementById('free-scan-email');\\n            const emailErrorDiv = document.getElementById('free-scan-email-error');\\n            if (!formData.email) {\\n                isValid = false;\\n                if (emailInput) emailInput.classList.add('invalid');\\n                if (emailErrorDiv) {\\n                    emailErrorDiv.textContent = 'Email address is required.';\\n                    emailErrorDiv.style.display = 'block';\\n                }\\n            } else if (!\\\/\\\\S+@\\\\S+\\\\.\\\\S+\\\/.test(formData.email)) {\\n                isValid = false;\\n                if (emailInput) emailInput.classList.add('invalid');\\n                if (emailErrorDiv) {\\n                    emailErrorDiv.textContent = 'Please enter a valid email address.';\\n                    emailErrorDiv.style.display = 'block';\\n                }\\n            }\\n            if (!formData.firstName) {\\n                isValid = false;\\n                const firstNameInput = document.getElementById('free-scan-first-name');\\n                const firstNameErrorDiv = document.getElementById('free-scan-first-name-error');\\n                if (firstNameInput) firstNameInput.classList.add('invalid');\\n                if (firstNameErrorDiv) {\\n                    firstNameErrorDiv.textContent = 'First name is required.';\\n                    firstNameErrorDiv.style.display = 'block';\\n                }\\n            }\\n            if (!formData.lastName) {\\n                isValid = false;\\n                const lastNameInput = document.getElementById('free-scan-last-name');\\n                const lastNameErrorDiv = document.getElementById('free-scan-last-name-error');\\n                if (lastNameInput) lastNameInput.classList.add('invalid');\\n                if (lastNameErrorDiv) {\\n                    lastNameErrorDiv.textContent = 'Last name is required.';\\n                    lastNameErrorDiv.style.display = 'block';\\n                }\\n            }\\n            if (!formData.location) {\\n                isValid = false;\\n                const locationInput = document.getElementById('free-scan-location');\\n                const locationErrorDiv = document.getElementById('free-scan-location-error');\\n                if (locationInput) locationInput.classList.add('invalid');\\n                if (locationErrorDiv) {\\n                    locationErrorDiv.textContent = 'Location is required.';\\n                    locationErrorDiv.style.display = 'block';\\n                }\\n            }\\n            const ageErrorDiv = document.getElementById('free-scan-age-error');\\n            if (!formData.age) {\\n                isValid = false;\\n                if (ageInput) ageInput.classList.add('invalid');\\n                if (ageErrorDiv) {\\n                    ageErrorDiv.textContent = 'Age is required.';\\n                    ageErrorDiv.style.display = 'block';\\n                }\\n            } else if (ageInput && !ageInput.checkValidity()) {\\n                isValid = false;\\n                ageInput.classList.add('invalid');\\n                if (ageErrorDiv) {\\n                    if (ageInput.validity.rangeUnderflow) {\\n                        ageErrorDiv.textContent = `Age must be ${ageInput.min} or older.`;\\n                    } else if (ageInput.validity.rangeOverflow) {\\n                        ageErrorDiv.textContent = `Age must be ${ageInput.max} or younger.`;\\n                    } else {\\n                        ageErrorDiv.textContent = 'Please enter a valid age.';\\n                    }\\n                    ageErrorDiv.style.display = 'block';\\n                }\\n            }\\n            \\n            if (!isValid) return;\\n\\n            lastSubmittedData = formData;\\n            initiateScanAndPoll(formData);\\n        });\\n    } else {\\n        console.error(\\\"Element with ID 'free-scan-form' not found. Form functionality will not work.\\\");\\n    }\\n\\n    if (scanresultsContainer) {\\n        scanresultsContainer.style.display = 'none';\\n        scanresultsContainer.style.opacity = '0';\\n        scanresultsContainer.classList.add('hidden');\\n    }\\n    if (prescanContainer) {\\n        prescanContainer.style.display = 'block';\\n        prescanContainer.style.opacity = '1';\\n        prescanContainer.classList.remove('hidden');\\n    }\\n});\\n<\\\/script>\",\"margin\":\"default\"}},{\"type\":\"fragment\",\"props\":{\"animation\":\"none\",\"id\":\"prescan\",\"margin\":\"remove-vertical\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"3-5,2-5\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"3-5\"},\"children\":[{\"type\":\"fragment\",\"props\":{\"id\":\"prescan\",\"margin\":\"default\",\"margin_remove_bottom\":true},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"headline\",\"props\":{\"animation\":\"none\",\"content\":\"\n\n<p>Find out which data<br \\\/>brokers have your info.<\\\/p>\",\"css\":\".el-element {\\nfont-size: 48px;\\nfont-weight: 600;\\nline-height: 62px;\\nletter-spacing: -0.01em;\\ntext-align: center;\\ncolor: #070A22;\\n    margin-top: -20px !important;\\n}\\n\",\"margin\":\"remove-vertical\",\"margin_remove_top\":true,\"text_align\":\"left\",\"title_element\":\"h1\",\"visibility\":\"m\"},\"name\":\"Desktop\\\/Tablet\"},{\"type\":\"headline\",\"props\":{\"content\":\"\n\n<p>Find out which data<br \\\/>brokers have your info.<\\\/p>\",\"css\":\".el-element {\\ncolor: var(--Text-Text-primary, #070A22);\\ntext-align: center;\\nfont-family: Poppins;\\nfont-size: 28px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 114%; \\\/* 31.92px *\\\/\\nletter-spacing: -0.28px;\\n}\\n\",\"margin\":\"remove-vertical\",\"margin_remove_top\":true,\"title_element\":\"div\",\"visibility\":\"hidden-m\"},\"name\":\"Mobile\"},{\"type\":\"text\",\"props\":{\"block_align_breakpoint\":\"m\",\"block_align_fallback\":\"center\",\"column_breakpoint\":\"m\",\"content\":\"Start your free scan now.\",\"css\":\".el-element {\\ncolor: var(--Text-Text-secondary, #464953);\\ntext-align: center;\\nfont-family: Poppins;\\nfont-size: 16px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 160%; \\\/* 25.6px *\\\/\\n    margin-top: -10px !important;\\n}\",\"margin\":\"remove-vertical\",\"margin_remove_top\":true,\"maxwidth\":\"large\",\"text_align\":\"left\",\"text_align_breakpoint\":\"m\",\"text_align_fallback\":\"center\"}},{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"\n\n<div class=\\\"radar-widget-container\\\" role=\\\"region\\\" aria-label=\\\"Data broker scanning animation\\\">\\n\\n\n\n<div class=\\\"radar\\\" aria-hidden=\\\"true\\\">\\n\\n\n\n<div class=\\\"pulse\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-line radar-line-horizontal\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-line radar-line-vertical\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-line radar-line-diag-positive\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-line radar-line-diag-negative\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-circle radar-circle-small\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-circle radar-circle-medium\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-circle radar-circle-large\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-scanner-sweep\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-visual-dot\\\" style=\\\"top: 30%; left: 20%;\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-visual-dot\\\" style=\\\"top: 60%; left: 70%;\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-visual-dot\\\" style=\\\"top: 40%; left: 80%;\\\"><\\\/div>\\n\\n\n\n<div class=\\\"radar-visual-dot\\\" style=\\\"top: 20%; left: 50%;\\\"><\\\/div>\\n\\n<\\\/div>\\n\\n<img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/beenverified-John-Smith.png\\\" class=\\\"brand-logo\\\" alt=\\\"BeenVerified data source found\\\" style=\\\"top: 40%; left: 60%; animation-delay: 1s;\\\" \\\/> <img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/Spokeo-John-Smith.png\\\" class=\\\"brand-logo\\\" alt=\\\"Spokeo data source found\\\" style=\\\"top: 30%; left: 70%; animation-delay: 4s;\\\" \\\/> <img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/panel-whitepages-jane.png\\\" class=\\\"brand-logo\\\" alt=\\\"Whitepages data source found\\\" style=\\\"top: 50%; left: 30%; animation-delay: 7s;\\\" \\\/> <img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/panel-spokeo-jane.png\\\" class=\\\"brand-logo\\\" alt=\\\"Additional Spokeo data source found\\\" style=\\\"top: 50%; left: 20%; animation-delay: 11s;\\\" \\\/>\\n\\n\n\n<div id=\\\"radarLiveStatus\\\" class=\\\"sr-only\\\" aria-live=\\\"polite\\\" aria-atomic=\\\"true\\\"><\\\/div>\\n\\n<\\\/div> \",\"css\":\"body {\\n\\n    margin: 0;\\n\\n    padding: 0;\\n\\n    background: #19288A;\\n\\n    overflow: hidden;\\n\\n}\\n\\n\\n.radar {\\n\\n    position: relative;\\n\\n    top: 50%;\\n\\n    left: 50%;\\n\\n    transform: translate(-50%, -50%);\\n\\n    padding: 0;\\n\\n    width: 200px;\\n\\n    height: 200px;\\n\\n    border-radius: 50%;\\n\\n    background: transparent;\\n\\n    background-size: cover;\\n\\n    overflow: hidden;\\n\\n    border: 1px solid rgba(92, 109, 192, 0.2);\\n\\n    box-shadow: 0 0 15px rgba(25, 40, 138, 0.1);\\n\\n    margin-top: 100px;\\n\\n    margin-bottom: -100px;\\n\\n}\\n\\n\\n.radar:before {\\n\\n    content: \\\"\\\";\\n\\n    position: absolute;\\n\\n    top: 80%;\\n\\n    left: 55%;\\n\\n    width: 8px;\\n\\n    height: 8px;\\n\\n    border-radius: 50%;\\n\\n    background: #5C6DC0;\\n\\n    filter: blur(1px);\\n\\n    animation: glow 1s linear infinite;\\n\\n    z-index: 3;\\n\\n}\\n\\n\\n.radar:after {\\n\\n    content: \\\"\\\";\\n\\n    position: absolute;\\n\\n    top: 70%;\\n\\n    left: 45%;\\n\\n    width: 8px;\\n\\n    height: 8px;\\n\\n    background: #5C6DC0;\\n\\n    border-radius: 50%;\\n\\n    filter: blur(1px);\\n\\n    animation: glow 1s linear infinite;\\n\\n    z-index: 3;\\n\\n}\\n\\n\\n.radar-visual-dot {\\n\\n    position: absolute;\\n\\n    width: 8px;\\n\\n    height: 8px;\\n\\n    background: #5C6DC0;\\n\\n    border-radius: 50%;\\n\\n    filter: blur(1px);\\n\\n    animation: glow 3s linear infinite;\\n\\n    z-index: 3;\\n\\n}\\n\\n\\n.radar-line {\\n\\n    position: absolute;\\n\\n    top: 50%;\\n\\n    left: 0;\\n\\n    height: 1px;\\n\\n    width: 100%;\\n\\n    background: rgba(92, 109, 192, 0.5);\\n\\n    transform-origin: center;\\n\\n}\\n\\n\\n.radar-line-horizontal { transform: translateY(-0.5px) rotate(0deg); }\\n\\n.radar-line-vertical { transform: translateY(-0.5px) rotate(90deg); }\\n\\n.radar-line-diag-positive { transform: translateY(-0.5px) rotate(45deg); }\\n\\n.radar-line-diag-negative { transform: translateY(-0.5px) rotate(-45deg); }\\n\\n\\n.radar-circle {\\n\\n    position: absolute;\\n\\n    top: 50%;\\n\\n    left: 50%;\\n\\n    transform: translate(-50%, -50%);\\n\\n    border: 1px solid rgba(92, 109, 192, 0.5);\\n\\n    background: transparent;\\n\\n    border-radius: 50%;\\n\\n}\\n\\n\\n.radar-circle-small {\\n\\n    width: 50px;\\n\\n    height: 50px;\\n\\n}\\n\\n\\n.radar-circle-medium {\\n\\n    width: 100px;\\n\\n    height: 100px;\\n\\n}\\n\\n\\n.radar-circle-large {\\n\\n    width: 150px;\\n\\n    height: 150px;\\n\\n}\\n\\n\\n.radar-scanner-sweep {\\n\\n    position: absolute;\\n\\n    top: 50%;\\n\\n    left: 50%;\\n\\n    width: 100px;\\n\\n    height: 100px;\\n\\n    transform-origin: top left;\\n\\n    background: linear-gradient(45deg, #19288A 0%, transparent 50%);\\n\\n    animation: animate 6s linear infinite;\\n\\n    z-index: 5;\\n\\n}\\n\\n\\n.pulse {\\n\\n    position: absolute;\\n\\n    top: 50%;\\n\\n    left: 50%;\\n\\n    width: 15px;\\n\\n    height: 15px;\\n\\n    background: rgba(25, 40, 138, 0.4);\\n\\n    border: 1px solid #19288A;\\n\\n    border-radius: 50%;\\n\\n    transform: translate(-50%, -50%);\\n\\n    animation: pulse 3s ease-out infinite;\\n\\n    z-index: 4;\\n\\n}\\n\\n\\n.brand-logo {\\n\\n    position: absolute;\\n\\n    top: 50%;\\n\\n    left: 50%;\\n\\n    max-width: 50%;\\n\\n    height: auto;\\n\\n    z-index: 10;\\n\\n    opacity: 0;\\n\\n    transform: translate(-50%, -50%);\\n\\n    animation: logoPulse 12s ease-in-out infinite;\\n\\n    pointer-events: none;\\n\\n}\\n\\n\\n@keyframes animate {\\n\\n    0% {\\n\\n        transform: rotate(0deg);\\n\\n    }\\n\\n    100% {\\n\\n        transform: rotate(360deg);\\n\\n    }\\n\\n}\\n\\n\\n@keyframes glow {\\n\\n    0% {\\n\\n        opacity: 0;\\n\\n    }\\n\\n    50% {\\n\\n        opacity: 1;\\n\\n    }\\n\\n    100% {\\n\\n        opacity: 0;\\n\\n    }\\n\\n}\\n\\n\\n@keyframes pulse {\\n\\n    0% {\\n\\n        transform: translate(-50%, -50%) scale(0.2);\\n\\n        opacity: 1;\\n\\n    }\\n\\n    100% {\\n\\n        transform: translate(-50%, -50%) scale(4);\\n\\n        opacity: 0;\\n\\n    }\\n\\n}\\n\\n\\n@keyframes logoPulse {\\n\\n    0%, 20% {\\n\\n        opacity: 0;\\n\\n        filter: brightness(1);\\n\\n    }\\n\\n    25% {\\n\\n        opacity: 0.5;\\n\\n        filter: brightness(1.1);\\n\\n    }\\n\\n    30% {\\n\\n        opacity: 1;\\n\\n        filter: brightness(1.4);\\n\\n    }\\n\\n    40% {\\n\\n        opacity: 1;\\n\\n        filter: brightness(1);\\n\\n    }\\n\\n    50% {\\n\\n        opacity: 1;\\n\\n        filter: brightness(1.2);\\n\\n    }\\n\\n    60%, 100% {\\n\\n        opacity: 0;\\n\\n        filter: brightness(1);\\n\\n    }\\n\\n} \",\"margin\":\"default\",\"margin_remove_bottom\":true,\"position_top\":\"-50\",\"text_align\":\"center\",\"visibility\":\"hidden-m\"},\"name\":\"Mobile Radar\"},{\"type\":\"text\",\"props\":{\"animation\":\"none\",\"block_align_breakpoint\":\"m\",\"block_align_fallback\":\"center\",\"column_breakpoint\":\"m\",\"content\":\"\n\n<form id=\\\"free-scan-form\\\" class=\\\"free-scan-form\\\" name=\\\"scan-form\\\">\\n    \n\n<div class=\\\"free-scan-form-group\\\">\\n        \n\n<div class=\\\"form-row\\\">\\n            \n\n<div class=\\\"form-field\\\">\\n                <label for=\\\"free-scan-email\\\" class=\\\"form-label\\\">Email Address<\\\/label>\\n                <span class=\\\"form-field-icon\\\" uk-icon=\\\"mail\\\"><\\\/span>\\n                <input id=\\\"free-scan-email\\\" type=\\\"email\\\" class=\\\"form-control\\\" name=\\\"email\\\" required=\\\"\\\" \\\/>\\n                \n\n<div class=\\\"error-message\\\" id=\\\"free-scan-email-error\\\"><\\\/div>\\n            <\\\/div>\\n        <\\\/div>\\n        \n\n<div class=\\\"form-row\\\">\\n            \n\n<div class=\\\"form-field\\\">\\n                <label for=\\\"free-scan-first-name\\\" class=\\\"form-label\\\">First Name<\\\/label>\\n                <span class=\\\"form-field-icon\\\" uk-icon=\\\"user\\\"><\\\/span>\\n                <input id=\\\"free-scan-first-name\\\" type=\\\"text\\\" class=\\\"form-control\\\" name=\\\"first-name\\\" required=\\\"\\\" \\\/>\\n                \n\n<div class=\\\"error-message\\\" id=\\\"free-scan-first-name-error\\\"><\\\/div>\\n            <\\\/div>\\n            \n\n<div class=\\\"form-field\\\">\\n                <label for=\\\"free-scan-last-name\\\" class=\\\"form-label\\\">Last Name<\\\/label>\\n                <span class=\\\"form-field-icon\\\" uk-icon=\\\"user\\\"><\\\/span>\\n                <input id=\\\"free-scan-last-name\\\" type=\\\"text\\\" class=\\\"form-control\\\" name=\\\"last-name\\\" required=\\\"\\\" \\\/>\\n                \n\n<div class=\\\"error-message\\\" id=\\\"free-scan-last-name-error\\\"><\\\/div>\\n            <\\\/div>\\n        <\\\/div>\\n        \n\n<div class=\\\"form-row\\\">\\n            \n\n<div class=\\\"form-field\\\">\\n                <label for=\\\"free-scan-location\\\" class=\\\"form-label\\\">City, State<\\\/label>\\n                <span class=\\\"form-field-icon\\\" uk-icon=\\\"location\\\"><\\\/span>\\n                <input id=\\\"free-scan-location\\\" type=\\\"text\\\" class=\\\"form-control\\\" name=\\\"location\\\" required=\\\"\\\" autocomplete=\\\"off\\\" \\\/>\\n                \n\n<div class=\\\"error-message\\\" id=\\\"free-scan-location-error\\\"><\\\/div>\\n            <\\\/div>\\n            \n\n<div class=\\\"form-field\\\">\\n                <label for=\\\"free-scan-age\\\" class=\\\"form-label\\\">Age<\\\/label>\\n                <span class=\\\"form-field-icon\\\" uk-icon=\\\"calendar\\\"><\\\/span>\\n                <input id=\\\"free-scan-age\\\" type=\\\"number\\\" class=\\\"form-control\\\" name=\\\"age\\\" required=\\\"\\\" min=\\\"18\\\" max=\\\"100\\\" \\\/>\\n                \n\n<div class=\\\"error-message\\\" id=\\\"free-scan-age-error\\\"><\\\/div>\\n            <\\\/div>\\n        <\\\/div>\\n        \n\n<div class=\\\"form-row\\\">\\n            \n\n<div class=\\\"form-field full-width\\\">\\n                <input type=\\\"checkbox\\\" id=\\\"free-scan-terms\\\" name=\\\"terms\\\" required=\\\"\\\">\\n                <label for=\\\"free-scan-terms\\\" class=\\\"form-label-checkbox\\\">I have read and agree to the <a href=\\\"https:\\\/\\\/privacy.joindeleteme.com\\\/policies\\\" target=\\\"_blank\\\">Terms of Service<\\\/a> and <a href=\\\"https:\\\/\\\/privacy.joindeleteme.com\\\/policies?name=terms-of-service\\\" target=\\\"_blank\\\">Privacy Policy<\\\/a>.<\\\/label>\\n                \n\n<div class=\\\"error-message\\\" id=\\\"free-scan-terms-error\\\"><\\\/div>\\n            <\\\/div>\\n        <\\\/div>\\n        <button id=\\\"start-scan-submit\\\" type=\\\"submit\\\" class=\\\"button button-alt\\\">Get FREE Report<\\\/button>\\n    <\\\/div>\\n<\\\/form>\\n\n\n<p><script src=\\\"https:\\\/\\\/maps.googleapis.com\\\/maps\\\/api\\\/js?key=AIzaSyB2uixKZyqxhobXriiP1VefsQULF6Nmtco&libraries=places&callback=initAutocomplete&loading=async\\\" async defer><\\\/script><\\\/p>\",\"css\":\".form-label-checkbox {\\n    color: #828797;\\n    font-feature-settings: 'liga' off, 'clig' off;\\n    font-family: Poppins, sans-serif;\\n    font-size: 16px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 150%;\\n    letter-spacing: 0.08px;\\n    margin-bottom: 4px;\\n    text-align: left;\\n}\",\"margin\":\"default\",\"margin_remove_top\":false,\"maxwidth\":\"xlarge\",\"position\":\"relative\",\"position_z_index\":\"3\"},\"name\":\"Scan Function\"}]}]}]}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"2-5\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"\n\n<div class=\\\"radar-widget-container desktop-radar-widget\\\">\\n    \n\n<div class=\\\"radar\\\" aria-hidden=\\\"true\\\">\\n        \n\n<div class=\\\"pulse\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-line radar-line-horizontal\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-line radar-line-vertical\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-line radar-line-diag-positive\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-line radar-line-diag-negative\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-circle radar-circle-small\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-circle radar-circle-medium\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-circle radar-circle-large\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-scanner-sweep\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-visual-dot\\\" style=\\\"top:30%; left:20%;\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-visual-dot\\\" style=\\\"top:60%; left:70%;\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-visual-dot\\\" style=\\\"top:40%; left:80%;\\\"><\\\/div>\\n        \n\n<div class=\\\"radar-visual-dot\\\" style=\\\"top:20%; left:50%;\\\"><\\\/div>\\n    <\\\/div>\\n    <img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/beenverified-John-Smith.png\\\" class=\\\"brand-logo\\\" alt=\\\"beenverified logo\\\" style=\\\"top:40%; left:60%; animation-delay:1s;\\\">\\n    <img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/Spokeo-John-Smith.png\\\" class=\\\"brand-logo\\\" alt=\\\"spokeo logo\\\" style=\\\"top:30%; left:70%; animation-delay:4s;\\\">\\n    <img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/panel-whitepages-jane.png\\\" class=\\\"brand-logo\\\" alt=\\\"whitepages logo\\\" style=\\\"top:50%; left:30%; animation-delay:7s;\\\">\\n    <img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/panel-spokeo-jane.png\\\" alt=\\\"spokeo logo\\\" class=\\\"brand-logo\\\" style=\\\"top:50%; left:20%; animation-delay:11s;\\\">\\n    \n\n<div id=\\\"radarLiveStatusDesktop\\\" class=\\\"sr-only\\\" aria-live=\\\"polite\\\" aria-atomic=\\\"true\\\">Radar scan in progress.<\\\/div>\\n    <button id=\\\"toggleAnimationBtnDesktop\\\" aria-label=\\\"Pause animations\\\" aria-pressed=\\\"false\\\" title=\\\"Pause animations\\\">\\n        <svg class=\\\"icon icon-pause\\\" viewBox=\\\"0 0 24 24\\\" fill=\\\"currentColor\\\" width=\\\"24px\\\" height=\\\"24px\\\">\\n            <path d=\\\"M6 19h4V5H6v14zm8-14v14h4V5h-4z\\\"\\\/>\\n        <\\\/svg>\\n        <svg class=\\\"icon icon-play\\\" viewBox=\\\"0 0 24 24\\\" fill=\\\"currentColor\\\" width=\\\"24px\\\" height=\\\"24px\\\" style=\\\"display: none;\\\">\\n            <path d=\\\"M8 5v14l11-7z\\\"\\\/>\\n        <\\\/svg>\\n    <\\\/button>\\n<\\\/div>\\n<script>\\ndocument.addEventListener('DOMContentLoaded', function () {\\n    const toggleButton = document.getElementById('toggleAnimationBtnDesktop');\\n    const radarLiveStatus = document.getElementById('radarLiveStatusDesktop');\\n    const widgetContainer = toggleButton ? toggleButton.closest('.radar-widget-container') : null;\\n\\n    if (toggleButton && widgetContainer) {\\n        toggleButton.addEventListener('click', function () {\\n            const isPressed = this.getAttribute('aria-pressed') === 'true';\\n            if (isPressed) {\\n                widgetContainer.classList.remove('animations-paused');\\n                this.setAttribute('aria-pressed', 'false');\\n                this.setAttribute('aria-label', 'Pause animation');\\n                this.setAttribute('title', 'Pause animation');\\n                if(radarLiveStatus) radarLiveStatus.textContent = 'Radar animation resumed.';\\n            } else {\\n                widgetContainer.classList.add('animations-paused');\\n                this.setAttribute('aria-pressed', 'true');\\n                this.setAttribute('aria-label', 'Resume animation');\\n                this.setAttribute('title', 'Resume animation');\\n                if(radarLiveStatus) radarLiveStatus.textContent = 'Radar animation paused.';\\n            }\\n        });\\n\\n        const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)');\\n        function handleReducedMotion(event) {\\n            if (event.matches) {\\n                if (widgetContainer && toggleButton) {\\n                    widgetContainer.classList.add('animations-paused');\\n                    toggleButton.setAttribute('aria-pressed', 'true');\\n                    toggleButton.setAttribute('aria-label', 'Resume animation');\\n                    toggleButton.setAttribute('title', 'Resume animation');\\n                    if(radarLiveStatus) radarLiveStatus.textContent = 'Radar animations paused due to reduced motion preference.';\\n                }\\n            }\\n        }\\n        if (prefersReducedMotion) {\\n            prefersReducedMotion.addEventListener('change', handleReducedMotion);\\n            handleReducedMotion(prefersReducedMotion);\\n        }\\n    } else {\\n        if (!toggleButton) {\\n            console.error('CRITICAL: Button with ID \\\"toggleAnimationBtnDesktop\\\" was NOT FOUND.');\\n        }\\n        if (toggleButton && !widgetContainer) {\\n            console.error('CRITICAL: Container with class \\\"radar-widget-container\\\" for button \\\"toggleAnimationBtnDesktop\\\" was NOT FOUND.');\\n        }\\n    }\\n});\\n<\\\/script>\",\"css\":\".sr-only {\\n    position: absolute;\\n    width: 1px;\\n    height: 1px;\\n    padding: 0;\\n    margin: -1px;\\n    overflow: hidden;\\n    clip: rect(0, 0, 0, 0);\\n    white-space: nowrap;\\n    border-width: 0;\\n}\\nbody {\\n    margin: 0;\\n    padding: 0;\\n    background: #19288A;\\n    overflow-x: hidden;\\n    font-family: sans-serif;\\n}\\n.radar-widget-container.desktop-radar-widget {\\n    position: relative;\\n    display: flex;\\n    flex-direction: column;\\n    align-items: center;\\n    padding-top: 50px;\\n    padding-bottom: 100px;\\n}\\n.desktop-radar-widget .radar {\\n    position: relative;\\n    padding: 0;\\n    width: 480px;\\n    height: 480px;\\n    border-radius: 50%;\\n    background: transparent;\\n    background-size: cover;\\n    overflow: hidden;\\n    border: 1px solid rgba(92, 109, 192, 0.1);\\n    box-shadow: 0 0 15px rgba(25, 40, 138, 0.1);\\n}\\n.desktop-radar-widget .radar:before {\\n    content: \\\"\\\";\\n    position: absolute;\\n    top: 80%;\\n    left: 55%;\\n    width: 10px;\\n    height: 10px;\\n    border-radius: 50%;\\n    background: #5C6DC0;\\n    filter: blur(2px);\\n    animation: glow 1s linear infinite;\\n    z-index: 3;\\n}\\n.desktop-radar-widget .radar:after {\\n    content: \\\"\\\";\\n    position: absolute;\\n    top: 70%;\\n    left: 45%;\\n    width: 10px;\\n    height: 10px;\\n    background: #5C6DC0;\\n    border-radius: 50%;\\n    filter: blur(2px);\\n    animation: glow 1s linear infinite;\\n    z-index: 3;\\n}\\n.desktop-radar-widget .radar-visual-dot {\\n    position: absolute;\\n    width: 10px;\\n    height: 10px;\\n    background: #5C6DC0;\\n    border-radius: 50%;\\n    filter: blur(2px);\\n    animation: glow 3s linear infinite;\\n    z-index: 3;\\n}\\n.desktop-radar-widget .radar-line {\\n    position: absolute;\\n    top: 50%;\\n    left: 0;\\n    height: 1px;\\n    width: 100%;\\n    background: rgba(92, 109, 192, 0.5);\\n    transform-origin: center;\\n}\\n.desktop-radar-widget .radar-line-horizontal { transform: translateY(-0.5px) rotate(0deg); }\\n.desktop-radar-widget .radar-line-vertical { transform: translateY(-0.5px) rotate(90deg); }\\n.desktop-radar-widget .radar-line-diag-positive { transform: translateY(-0.5px) rotate(45deg); }\\n.desktop-radar-widget .radar-line-diag-negative { transform: translateY(-0.5px) rotate(-45deg); }\\n.desktop-radar-widget .radar-circle {\\n    position: absolute;\\n    top: 50%;\\n    left: 50%;\\n    transform: translate(-50%, -50%);\\n    border: 1px solid rgba(92, 109, 192, 0.5);\\n    background: transparent;\\n    border-radius: 50%;\\n}\\n.desktop-radar-widget .radar-circle-small { width: 120px; height: 120px; }\\n.desktop-radar-widget .radar-circle-medium { width: 240px; height: 240px; }\\n.desktop-radar-widget .radar-circle-large { width: 360px; height: 360px; }\\n.desktop-radar-widget .radar-scanner-sweep {\\n    position: absolute;\\n    top: 50%;\\n    left: 50%;\\n    width: 50%;\\n    height: 50%;\\n    transform-origin: top left;\\n    background: linear-gradient(45deg, rgba(25, 40, 138,0.7) 0%, transparent 50%);\\n    animation: animate 6s linear infinite;\\n    z-index: 5;\\n}\\n.desktop-radar-widget .pulse {\\n    position: absolute;\\n    top: 50%;\\n    left: 50%;\\n    width: 20px;\\n    height: 20px;\\n    background: rgba(25, 40, 138, 0.4);\\n    border: 1px solid #19288A;\\n    border-radius: 50%;\\n    transform: translate(-50%, -50%);\\n    animation: pulse-desktop 3s ease-out infinite;\\n    z-index: 4;\\n}\\n.desktop-radar-widget .brand-logo {\\n    position: absolute;\\n    max-width: 70%;\\n    z-index: 10;\\n    opacity: 0;\\n    transform: translate(-50%, -50%);\\n    animation: logoPulse 12s ease-in-out infinite;\\n    pointer-events: none;\\n}\\n.desktop-radar-widget button#toggleAnimationBtnDesktop {\\n    position: absolute;\\n    top: 410px;\\n    left: calc(50% + 200px);\\n    width: 60px;\\n    height: 60px;\\n    background-color: rgba(25, 40, 138, 0.6);\\n    border: 2px solid rgba(92, 109, 192, 0.7);\\n    border-radius: 50%;\\n    cursor: pointer;\\n    display: flex;\\n    justify-content: center;\\n    align-items: center;\\n    padding: 0;\\n    color: white;\\n    font-size: 0;\\n    line-height: 0;\\n    z-index: 15;\\n    transition: background-color 0.2s ease, border-color 0.2s ease;\\n}\\n.desktop-radar-widget button#toggleAnimationBtnDesktop:hover,\\n.desktop-radar-widget button#toggleAnimationBtnDesktop:focus {\\n    background-color: rgba(92, 109, 192, 0.8);\\n    border-color: rgba(220, 220, 255, 0.9);\\n    outline: none;\\n}\\n.desktop-radar-widget button#toggleAnimationBtnDesktop:focus-visible {\\n    outline: 2px solid #00FFFF;\\n    outline-offset: 2px;\\n}\\n.desktop-radar-widget button#toggleAnimationBtnDesktop .icon {\\n    width: 28px;\\n    height: 28px;\\n    fill: currentColor;\\n}\\n.desktop-radar-widget.animations-paused .radar-scanner-sweep,\\n.desktop-radar-widget.animations-paused .pulse,\\n.desktop-radar-widget.animations-paused .radar-visual-dot,\\n.desktop-radar-widget.animations-paused .radar:before,\\n.desktop-radar-widget.animations-paused .radar:after,\\n.desktop-radar-widget.animations-paused .brand-logo {\\n    animation-play-state: paused !important;\\n}\\n.desktop-radar-widget:not(.animations-paused) #toggleAnimationBtnDesktop .icon-pause { display: inline-block; }\\n.desktop-radar-widget:not(.animations-paused) #toggleAnimationBtnDesktop .icon-play { display: none; }\\n.desktop-radar-widget.animations-paused #toggleAnimationBtnDesktop .icon-pause { display: none; }\\n.desktop-radar-widget.animations-paused #toggleAnimationBtnDesktop .icon-play { display: inline-block; }\\n\\n@keyframes animate {\\n    0% { transform: rotate(0deg); }\\n    100% { transform: rotate(360deg); }\\n}\\n@keyframes glow {\\n    0% { opacity: 0; }\\n    50% { opacity: 1; }\\n    100% { opacity: 0; }\\n}\\n@keyframes pulse-desktop {\\n    0% { transform: translate(-50%, -50%) scale(0.2); opacity: 1; }\\n    100% { transform: translate(-50%, -50%) scale(6); opacity: 0; }\\n}\\n@keyframes logoPulse {\\n    0%, 20% { opacity: 0; filter: brightness(1); }\\n    25% { opacity: 0.5; filter: brightness(1.1); }\\n    30% { opacity: 1; filter: brightness(1.4); }\\n    40% { opacity: 1; filter: brightness(1); }\\n    50% { opacity: 1; filter: brightness(1.2); }\\n    60%, 100% { opacity: 0; filter: brightness(1); }\\n}\",\"margin\":\"default\",\"position\":\"absolute\",\"position_top\":\"-50\",\"text_align\":\"center\",\"visibility\":\"m\"},\"name\":\"Desktop Radar Scan Widget\"}]}]}]},{\"type\":\"fragment\",\"props\":{\"class\":\"hidden\",\"id\":\"scanresults\",\"margin\":\"remove-vertical\"},\"children\":[{\"type\":\"row\",\"props\":{\"margin_remove_bottom\":false},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"headline\",\"props\":{\"block_align\":\"center\",\"block_align_breakpoint\":\"m\",\"block_align_fallback\":\"center\",\"css\":\".el-element {\\nfont-size: 36px;\\nfont-weight: 600;\\nline-height: 62px;\\nletter-spacing: -0.01em;\\ntext-align: center;\\ncolor: #070A22;\\n}\\n\",\"id\":\"resultsheadline\",\"margin_remove_bottom\":false,\"text_align\":\"left\",\"text_align_breakpoint\":\"m\",\"text_align_fallback\":\"center\",\"title_element\":\"h2\"}}]}]},{\"type\":\"row\",\"props\":{\"layout\":\"2-3,1-3\",\"margin\":\"default\",\"margin_remove_bottom\":true,\"margin_remove_top\":false},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"2-3\"},\"children\":[{\"type\":\"text\",\"props\":{\"block_align_fallback\":\"center\",\"column_breakpoint\":\"m\",\"content\":\"\n\n<p id=\\\"results-description\\\">Your free privacy scan is complete. We found your personal information potentially exposed on the data broker websites listed below. Review your results and take action to remove your data.<\\\/p>\",\"css\":\".el-element {\\ncolor: var(--Text-Text-secondary, #464953);\\nfont-family: Poppins;\\nfont-size: 20px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 160%; \\\/* 25.6px *\\\/\\n    margin-top: -10px !important;\\n}\",\"margin\":\"default\",\"margin_remove_bottom\":true,\"maxwidth\":\"2xlarge\",\"text_align\":\"left\",\"text_align_breakpoint\":\"m\",\"text_align_fallback\":\"center\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"vertical_align\":\"middle\",\"width_medium\":\"1-3\"},\"children\":[{\"type\":\"button\",\"props\":{\"class\":\"jdm-button-medium jdm-button-secondarycontained\",\"grid_column_gap\":\"small\",\"grid_row_gap\":\"small\",\"id\":\"view-results-cta-button\",\"margin\":\"large\",\"text_align\":\"right\",\"text_align_breakpoint\":\"m\",\"text_align_fallback\":\"center\"},\"children\":[{\"type\":\"button_item\",\"props\":{\"button_style\":\"default\",\"content\":\"Start Removing Now\",\"dialog_layout\":\"modal\",\"dialog_offcanvas_flip\":true,\"icon\":\"myicons--white-arrowright\",\"icon_align\":\"right\",\"link\":\"privacy-protection-plans\\\/\"}}],\"name\":\"DT Button Secondary Contained\"}]}]},{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"button\",\"props\":{\"class\":\"jdm-button-medium jdm-button-secondarycontained\",\"css\":\".el-item:nth-child(1) .uk-button {\\nborder: 2px solid transparent !important;\\n}\\n\\n.el-item:nth-child(2) .uk-button { \\n    background: transparent !important;\\n    color: #121C61 !important;\\n    border: 2px solid #121C61 !important;\\n}\\n\\n.el-item:nth-child(2) .uk-button:hover {\\n    background: #F1F2F3 !important;\\n    color: #19288A !important;\\n    border: 2px solid #19288A !important;\\n}\\n\\n.el-item:nth-child(2) .uk-button:active {\\n    background: #E6E7EA !important;\\n    color: #121C61 !important;\\n    border: 2px solid #121C61 !important;\\n}\\n\",\"grid_column_gap\":\"small\",\"grid_row_gap\":\"small\",\"id\":\"no-results-cta-button\",\"margin\":\"default\",\"margin_remove_bottom\":true,\"text_align\":\"left\",\"text_align_breakpoint\":\"m\",\"text_align_fallback\":\"center\"},\"children\":[{\"type\":\"button_item\",\"props\":{\"button_style\":\"default\",\"content\":\"Protect Yourself\",\"dialog_layout\":\"modal\",\"dialog_offcanvas_flip\":true,\"icon_align\":\"left\",\"link\":\"privacy-protection-plans\\\/\"}},{\"type\":\"button_item\",\"props\":{\"button_style\":\"default\",\"content\":\"Scan Again\",\"dialog_layout\":\"modal\",\"dialog_offcanvas_flip\":true,\"icon_align\":\"left\",\"link\":\"scan\\\/\"}}],\"name\":\"no-results-cta\"},{\"type\":\"text\",\"props\":{\"animation\":\"fade\",\"column_breakpoint\":\"m\",\"content\":\"\n\n<div class=\\\"custom-results-grid\\\">\\n\\n    \n\n<div id=\\\"scan-result-item-1\\\" class=\\\"scan-result-item\\\">\\n        \n\n<h3 class=\\\"site-name\\\">Sample Broker Site<\\\/h3>\\n        \n\n<div class=\\\"pii-details-container\\\">\\n            \n\n<div class=\\\"pii-item\\\">\\n                \n\n<div class=\\\"pii-label\\\">Name<\\\/div>\\n                \n\n<div class=\\\"pii-blurred-text\\\">John Michael Doe<\\\/div>\\n            <\\\/div>\\n            \n\n<div class=\\\"pii-item\\\">\\n                \n\n<div class=\\\"pii-label\\\">Address<\\\/div>\\n                \n\n<div class=\\\"pii-blurred-text\\\">123 Elm Street, Anytown, USA 12345<\\\/div>\\n            <\\\/div>\\n            \n\n<div class=\\\"pii-item\\\">\\n                \n\n<div class=\\\"pii-label\\\">Email<\\\/div>\\n                \n\n<div class=\\\"pii-blurred-text\\\">john.doe.sample@email.com<\\\/div>\\n            <\\\/div>\\n            \n\n<div class=\\\"pii-item\\\">\\n                \n\n<div class=\\\"pii-label\\\">Phone<\\\/div>\\n                \n\n<div class=\\\"pii-blurred-text\\\">(555) 123-4567<\\\/div>\\n            <\\\/div>\\n             \n\n<div class=\\\"pii-item\\\">\\n                \n\n<div class=\\\"pii-label\\\">Relatives<\\\/div>\\n                \n\n<div class=\\\"pii-blurred-text\\\">Jane Doe, Jacob Doe<\\\/div>\\n            <\\\/div>\\n        <\\\/div>\\n    <\\\/div>\\n\\n    \n\n<div id=\\\"scan-result-item-2\\\" class=\\\"scan-result-item\\\">\\n         \n\n<h3 class=\\\"site-name\\\">Another Data Site<\\\/h3>\\n        \n\n<div class=\\\"pii-details-container\\\">\\n            \n\n<div class=\\\"pii-item\\\">\\n                \n\n<div class=\\\"pii-label\\\">Name<\\\/div>\\n                \n\n<div class=\\\"pii-blurred-text\\\">John M Doe<\\\/div>\\n            <\\\/div>\\n            \n\n<div class=\\\"pii-item\\\">\\n                \n\n<div class=\\\"pii-label\\\">Past Address<\\\/div>\\n                \n\n<div class=\\\"pii-blurred-text\\\">456 Oak Avenue, Sometown, USA 67890<\\\/div>\\n            <\\\/div>\\n        <\\\/div>\\n    <\\\/div>\\n\\n    \n\n<div id=\\\"scan-result-item-3\\\" class=\\\"scan-result-item\\\">\\n        \n\n<h3 class=\\\"site-name\\\">Loading...<\\\/h3>\\n        \n\n<div class=\\\"pii-details-container\\\">\\n        <\\\/div>\\n    <\\\/div>\\n\\n    \n\n<div id=\\\"scan-result-item-4\\\" class=\\\"scan-result-item\\\">\\n         \n\n<h3 class=\\\"site-name\\\">Loading...<\\\/h3>\\n        \n\n<div class=\\\"pii-details-container\\\">\\n        <\\\/div>\\n    <\\\/div>\\n\\n    \n\n<div id=\\\"scan-result-item-5\\\" class=\\\"scan-result-item\\\">\\n         \n\n<h3 class=\\\"site-name\\\">Loading...<\\\/h3>\\n        \n\n<div class=\\\"pii-details-container\\\">\\n        <\\\/div>\\n    <\\\/div>\\n\\n    \n\n<div id=\\\"scan-result-item-6\\\" class=\\\"scan-result-item\\\">\\n         \n\n<h3 class=\\\"site-name\\\">Loading...<\\\/h3>\\n        \n\n<div class=\\\"pii-details-container\\\">\\n        <\\\/div>\\n    <\\\/div>\\n<\\\/div>\",\"margin\":\"default\"},\"name\":\"Results Grid\"}]}],\"props\":{\"margin\":\"small\"}}]}]}]}]},{\"type\":\"section\",\"props\":{\"css\":\".el-section {\\n  background: linear-gradient(to bottom, #ECEFF5 45%, #fff 45%);\\n     padding-top: 45px !important;\\n}\\n\",\"image_position\":\"center-center\",\"image_size\":\"cover\",\"padding\":\"none\",\"style\":\"muted\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"\",\"width\":\"\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"css\":\".el-column .uk-card-primary {\\n    border-radius: 40px;\\n    background: #0A0F33;\\n}\\n\\n@media (min-width: 640px) {\\n    .el-column .uk-card-primary {\\n        padding-top: 100px;\\n        padding-bottom: 100px;\\n    }\\n}\\n\",\"image_position\":\"top-center\",\"image_size\":\"width-1-1\",\"position_sticky_breakpoint\":\"m\",\"style\":\"card-primary\",\"text_color\":\"light\"},\"children\":[{\"type\":\"fragment\",\"props\":{\"class\":\"uk-visible@s\",\"margin\":\"remove-vertical\"},\"children\":[{\"type\":\"row\",\"props\":{\"width\":\"default\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"headline\",\"props\":{\"block_align\":\"center\",\"content\":\"\n\n<p><span class=\\\"readytobe\\\">How does the<br \\\/>free scan work?<br \\\/><\\\/span><\\\/p>\",\"css\":\".el-element {\\n    color: var(--Text-Text-white, #FFF);\\nfont-family: Poppins;\\nfont-size: 42px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 130%; \\\/* 54.6px *\\\/align-content\\n}\",\"position\":\"relative\",\"position_right\":\"-80\",\"text_align\":\"left\",\"text_align_fallback\":\"center\",\"title_element\":\"h2\",\"title_style\":\"h2\"},\"name\":\"Desktop\\\/Tablet\"}]}]},{\"type\":\"row\",\"props\":{\"column_gap\":\"large\",\"layout\":\"1-2,1-2\",\"margin\":\"default\",\"margin_remove_bottom\":false,\"padding_remove_horizontal\":true,\"width\":\"default\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"vertical_align\":\"middle\",\"width_medium\":\"1-2\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"list\",\"props\":{\"column_breakpoint\":\"m\",\"css\":\".el-image {\\n    background: #161b3d;\\n    border-radius: 50%;\\n    padding: 30px;\\n    color: #fff;\\n}\\n\\n.el-content {\\n    color: var(--Text-Text-white, #FFF);\\nfont-family: Poppins;\\nfont-size: 18px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 130%; \\\/* 23.4px *\\\/\\nletter-spacing: -0.18px;\\n}\",\"image_align\":\"left\",\"image_svg_color\":\"emphasis\",\"image_vertical_align\":true,\"list_element\":\"ul\",\"list_horizontal_separator\":\", \",\"list_size\":\"large\",\"list_type\":\"vertical\",\"show_image\":true,\"show_link\":true},\"children\":[{\"type\":\"list_item\",\"props\":{\"content\":\"<span uk-icon=\\\"icon: bootstrap--pencil-square\\\"><\\\/span>\n\n<p> Enter your name and location.<\\\/p>\",\"icon\":\"remixicon-editor--number-1\"}},{\"type\":\"list_item\",\"props\":{\"content\":\"<span uk-icon=\\\"icon: bootstrap--trash\\\"><\\\/span>\n\n<p> Our scan tool searches for your personal info found on data brokers across the web.\",\"icon\":\"remixicon-editor--number-2\"}},{\"type\":\"list_item\",\"props\":{\"content\":\"<span uk-icon=\\\"icon: search\\\"><\\\/span>\n\n<p>See what info each data broker has on you.\",\"icon\":\"remixicon-editor--number-3\"}},{\"type\":\"list_item\",\"props\":{\"content\":\"<span uk-icon=\\\"icon: bootstrap--calendar2-check\\\"><\\\/span>\n\n<p>Join DeleteMe to get this removed, and keep it removed all year long.\\n\",\"icon\":\"remixicon-editor--number-4\"}}]}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"image_size\":\"cover\",\"position_sticky_breakpoint\":\"m\",\"text_color\":\"light\",\"vertical_align\":\"middle\",\"width_medium\":\"1-2\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"image\",\"props\":{\"image\":\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/Icon-Free-Scan.png\",\"image_alt\":\"Icon Computer\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\"}}]}]}],\"name\":\"Desktop\\\/Tablet\"},{\"type\":\"fragment\",\"props\":{\"margin\":\"default\",\"visibility\":\"hidden-s\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"headline\",\"props\":{\"content\":\"How does the<br \\\/>free scan work?\",\"css\":\".el-element {\\n    color: var(--Text-Text-white, #FFF);\\ntext-align: center;\\nfont-family: Poppins;\\nfont-size: 28px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 120%; \\\/* 33.6px *\\\/\\nletter-spacing: 0.28px;\\n}\",\"title_element\":\"h2\"}},{\"type\":\"image\",\"props\":{\"image\":\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/Icon-Free-Scan.png\",\"image_alt\":\"Icon Computer\",\"image_svg_color\":\"emphasis\",\"image_width\":228,\"margin\":\"default\",\"text_align\":\"center\"}},{\"type\":\"list\",\"props\":{\"column_breakpoint\":\"m\",\"css\":\".el-image {\\n    background: #161b3d;\\n    border-radius: 50%;\\n    padding: 30px;\\n    color: #fff;\\n}\\n\\n.el-content {\\n    color: var(--Text-Text-white, #FFF);\\nfont-family: Poppins;\\nfont-size: 18px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 130%; \\\/* 23.4px *\\\/\\nletter-spacing: -0.18px;\\n}\",\"image_align\":\"left\",\"image_svg_color\":\"emphasis\",\"image_vertical_align\":true,\"list_element\":\"ul\",\"list_horizontal_separator\":\", \",\"list_size\":\"large\",\"list_type\":\"vertical\",\"show_image\":true,\"show_link\":true},\"children\":[{\"type\":\"list_item\",\"props\":{\"content\":\"<span uk-icon=\\\"icon: bootstrap--pencil-square\\\"><\\\/span>\n\n<p> Enter your name and location.<\\\/p>\",\"icon\":\"remixicon-editor--number-1\"}},{\"type\":\"list_item\",\"props\":{\"content\":\"<span uk-icon=\\\"icon: bootstrap--trash\\\"><\\\/span>\n\n<p> Our scan tool searches for your personal info found on data brokers across the web.\",\"icon\":\"remixicon-editor--number-2\"}},{\"type\":\"list_item\",\"props\":{\"content\":\"<span uk-icon=\\\"icon: search\\\"><\\\/span>\n\n<p>See what info each data broker has on you.\",\"icon\":\"remixicon-editor--number-3\"}},{\"type\":\"list_item\",\"props\":{\"content\":\"<span uk-icon=\\\"icon: bootstrap--calendar2-check\\\"><\\\/span>\n\n<p>Join DeleteMe to get this removed, and keep it removed all year long.\\n\",\"icon\":\"remixicon-editor--number-4\"}}]}]}]}],\"name\":\"Mobile\"}]}]}]},{\"type\":\"section\",\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"grid\",\"props\":{\"content_column_breakpoint\":\"m\",\"content_margin\":\"small\",\"css\":\".el-title {\\n    color: #070A22;\\nfont-family: Poppins;\\nfont-size: 48px;\\nfont-style: normal;\\nfont-weight: 600;\\n    line-height: 79.2px; \\\/* 165% *\\\/align-content\\n}\\n\\n.el-content {\\ncolor: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 16px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 27px; \\\/* 168.75% *\\\/\\n}\",\"filter_align\":\"left\",\"filter_all\":true,\"filter_grid_breakpoint\":\"m\",\"filter_grid_width\":\"auto\",\"filter_position\":\"top\",\"filter_style\":\"tab\",\"grid_column_gap\":\"small\",\"grid_default\":\"1\",\"grid_medium\":\"3\",\"grid_row_gap\":\"small\",\"grid_small\":\"3\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"item_animation\":true,\"lightbox_bg_close\":true,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"medium\",\"margin_remove_bottom\":false,\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"show_content\":true,\"show_hover_image\":true,\"show_hover_video\":true,\"show_image\":true,\"show_link\":true,\"show_meta\":true,\"show_title\":true,\"show_video\":true,\"text_align\":\"left\",\"text_align_breakpoint\":\"m\",\"text_align_fallback\":\"center\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"heading-medium\",\"visibility\":\"s\"},\"children\":[{\"type\":\"grid_item\",\"props\":{\"content\":\"\n\n<p>Successful opt-out removals completed by Privacy Advisors<\\\/p>\",\"title\":\"100M+\"}},{\"type\":\"grid_item\",\"props\":{\"content\":\"\n\n<p>Years of effort saved deleting for customers (20,000+ hours of data removal)<\\\/p>\",\"title\":\"54+\"}},{\"type\":\"grid_item\",\"props\":{\"content\":\"\n\n<p>Average # of exposed personal info (\\u201cPII\\u201d) found on data brokers over a two year DeleteMe subscription<\\\/p>\",\"title\":\"2,389+\"}}],\"name\":\"Desktop\\\/Tablet\"},{\"type\":\"grid\",\"props\":{\"content_column_breakpoint\":\"m\",\"content_margin\":\"small\",\"css\":\".el-title {\\ncolor: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 40px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: normal;\\n}\\n\\n.el-content {\\ncolor: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 16px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 27px; \\\/* 168.75% *\\\/\\n}\",\"filter_align\":\"left\",\"filter_all\":true,\"filter_grid_breakpoint\":\"m\",\"filter_grid_width\":\"auto\",\"filter_position\":\"top\",\"filter_style\":\"tab\",\"grid_column_gap\":\"small\",\"grid_default\":\"1\",\"grid_medium\":\"3\",\"grid_row_gap\":\"small\",\"grid_small\":\"3\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"item_animation\":true,\"lightbox_bg_close\":true,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"medium\",\"margin_remove_bottom\":false,\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"show_content\":true,\"show_hover_image\":true,\"show_hover_video\":true,\"show_image\":true,\"show_link\":true,\"show_meta\":true,\"show_title\":true,\"show_video\":true,\"text_align\":\"left\",\"text_align_fallback\":\"center\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"heading-medium\",\"visibility\":\"hidden-s\"},\"children\":[{\"type\":\"grid_item\",\"props\":{\"content\":\"\n\n<p>Successful opt-out removals completed by Privacy Advisors<\\\/p>\",\"title\":\"100M+\"}},{\"type\":\"grid_item\",\"props\":{\"content\":\"\n\n<p>Years of effort saved deleting for customers (20,000+ hours of data removal)<\\\/p>\",\"title\":\"54+\"}},{\"type\":\"grid_item\",\"props\":{\"content\":\"\n\n<p>Average # of exposed personal info (\\u201cPII\\u201d) found on data brokers over a two year DeleteMe subscription<\\\/p>\",\"title\":\"2,389+\"}}],\"name\":\"Desktop\\\/Tablet\"}]}],\"props\":{\"margin_remove_bottom\":false}},{\"type\":\"row\",\"props\":{\"css\":\".el-row {\\n    border-radius: var(--XS, 4px);\\nbackground: #FFF;\\nbox-shadow: 0px 52px 132px 0px rgba(0, 0, 0, 0.25);\\n}\",\"margin\":\"large\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"headline\",\"props\":{\"content\":\"We remove all this data exposed by data brokers\",\"css\":\".el-element {\\n    color: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 28px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 120%; \\\/* 33.6px *\\\/\\nletter-spacing: 0.28px;\\n    padding-top: 25px;\\n}\",\"title_element\":\"div\",\"visibility\":\"hidden-s\"},\"name\":\"Mobile\"},{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"\n\n<div class=\\\"uk-padding-small\\\">\\n\n\n<p><span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-user.svg\\\" alt=\\\"User Icon\\\" \\\/> Name<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-clock.svg\\\" alt=\\\"Clock Icon\\\" \\\/> Age<\\\/span><\\\/p>\\n\n\n<p><span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-location.svg\\\" alt=\\\"Location Icon\\\" \\\/> Address<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-telephone.svg\\\" alt=\\\"Telephone Icon\\\" \\\/> Phone<\\\/span><\\\/p>\\n\n\n<p><span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-users.svg\\\" alt=\\\"Users Icon\\\" \\\/> Relatives<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-globe.svg\\\" alt=\\\"Globe Icon\\\" \\\/> Social media<\\\/span><\\\/p>\\n\n\n<p><span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-briefcase.svg\\\" alt=\\\"Briefcase Icon\\\" \\\/> Occupation<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-link.svg\\\" alt=\\\"Link Icon\\\" \\\/> Marital Status<\\\/span><\\\/p>\\n\n\n<p><span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-home.svg\\\" alt=\\\"Home Icon\\\" \\\/> Property Value<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-eye.svg\\\" alt=\\\"Eye Icon\\\" \\\/> Past Address<\\\/span><\\\/p>\\n\n\n<p><span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-camera.svg\\\" alt=\\\"Camera Icon\\\" \\\/> Photos<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-email.svg\\\" alt=\\\"Email Icon\\\" \\\/> Email<\\\/span><\\\/p>\\n<\\\/div>\",\"css\":\".uk-label {\\n    flex: 1 1 auto;\\n    margin-right: 10px;\\n    min-width: 50%;\\n    max-width: 100%;\\n    box-sizing: border-box;\\n    border-radius: 32px;\\n    background: #fff;\\n    backdrop-filter: blur(10px);\\n    color: #070A22;\\n    font-family: Poppins, sans-serif;\\n    font-size: 14px;\\n    font-weight: 400;\\n    line-height: 180%;\\n    padding: 12px 16px;\\n    gap: 12px;\\n    border: 1px solid rgba(255, 255, 255, 0.07) !important;\\n    box-shadow: 0 4px 6px rgba(28, 34, 74, 0.04);\\n    word-wrap: break-word;\\n    overflow: hidden;\\n}\",\"margin\":\"default\",\"position\":\"relative\",\"position_left\":\"-15\",\"visibility\":\"hidden-s\"},\"name\":\"Mobile\"}]}]},{\"type\":\"row\",\"props\":{\"margin\":\"large\",\"margin_remove_bottom\":true},\"children\":[{\"type\":\"column\",\"props\":{\"css\":\".el-column .uk-card-default {\\n    border-radius: var(--XS, 4px);\\nbackground: #FFF;\\nbox-shadow: 0px 52px 132px 0px rgba(0, 0, 0, 0.25);\\n}\",\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"style\":\"card-default\"},\"children\":[{\"type\":\"fragment\",\"props\":{\"margin\":\"default\",\"visibility\":\"s\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"1-2,1-2\"},\"children\":[{\"type\":\"column\",\"props\":{\"css\":\".el-column {\\n    padding-top: 50px;\\n}\",\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"\n\n<p>We remove all <br \\\/>this data exposed <br \\\/>by data brokers<\\\/p>\",\"css\":\".el-element {\\n    color: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 42px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 130%; \\\/* 54.6px *\\\/align-content\\n}\",\"margin\":\"default\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"\n\n<p>\n\n<style>\\n    .uk-padding-small p {\\n        display: flex;\\n        justify-content: flex-start;\\n        flex-wrap: nowrap;\\n    }\\n    .uk-label {\\n        flex: 0 1 auto;\\n        margin-right: 10px;\\n        max-width: 48%;\\n        box-sizing: border-box;\\n    }\\n    .uk-label:last-child {\\n        margin-right: 0;\\n    }\\n<\\\/style><\\\/p>\\n\n\n<div class=\\\"uk-padding-small\\\">\\n\n\n<p><span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-user.svg\\\" alt=\\\"User Icon\\\" \\\/> Name<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-clock.svg\\\" alt=\\\"Clock Icon\\\" \\\/> Age<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-location.svg\\\" alt=\\\"Location Icon\\\" \\\/> Address<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-telephone.svg\\\" alt=\\\"Telephone Icon\\\" \\\/> Phone<\\\/span><\\\/p>\\n\n\n<p><span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-users.svg\\\" alt=\\\"Users Icon\\\" \\\/> Relatives<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-globe.svg\\\" alt=\\\"Globe Icon\\\" \\\/> Social media<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-briefcase.svg\\\" alt=\\\"Briefcase Icon\\\" \\\/> Occupation<\\\/span><\\\/p>\\n\n\n<p><span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-link.svg\\\" alt=\\\"Link Icon\\\" \\\/> Marital Status<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-home.svg\\\" alt=\\\"Home Icon\\\" \\\/> Property Value<\\\/span><\\\/p>\\n\n\n<p><span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-eye.svg\\\" alt=\\\"Eye Icon\\\" \\\/> Past Address<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-camera.svg\\\" alt=\\\"Camera Icon\\\" \\\/> Photos<\\\/span> <span class=\\\"uk-label\\\"><img src=\\\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/themes\\\/yootheme-JoinDeleteMe\\\/myicons\\\/orange-email.svg\\\" alt=\\\"Email Icon\\\" \\\/> Email<\\\/span><\\\/p>\\n<\\\/div>\",\"css\":\".uk-label {\\nborder-radius: 32px;\\nbackground: #fff;\\nbackdrop-filter: blur(10px);\\ncolor: #070A22;\\nfont-family: Poppins;\\nfont-size: 15px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 180%;\\npadding: 12px 16px;\\ngap: var(--M, 12px);\\n    border: 1px solid rgba(255, 255, 255, 0.07) !important;\\nbox-shadow: 0 4px 6px rgba(28, 34, 74, 0.04);\\n}\\n.uk-icon {\\n    color: #F57A00;\\n}\",\"margin\":\"default\",\"position\":\"relative\",\"position_left\":\"-15\"},\"name\":\"8888887\"}]}]}]}]}]},{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"headline\",\"props\":{\"block_align\":\"center\",\"content\":\"Featured on\",\"css\":\".el-element {\\ncolor: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 36px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 130%;\\n    margin-top: 100px !important;\\n}\",\"margin\":\"xlarge\",\"margin_remove_bottom\":true,\"maxwidth\":\"xlarge\",\"position_bottom\":\"90\",\"text_align\":\"left\",\"text_align_fallback\":\"center\",\"title_element\":\"h2\"},\"name\":\"Desktop\\\/Tablet\"}]}],\"props\":{\"css\":\"@media (max-width: 640px) {\\n    .el-row {\\n        margin-top: -50px !important;\\n    }\\n}\\n\",\"margin_remove_top\":true}},{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"panel-slider\",\"props\":{\"block_align\":\"center\",\"content_column_breakpoint\":\"m\",\"content_margin\":\"remove\",\"css\":\".el-slidenav {\\n    background-color: #e8eaf4 !important;\\n    border-radius: 50% !important;\\n    padding: 10px !important;\\n    display: flex !important;\\n    align-items: center !important;\\n    width: 23px !important;\\n    height: 23px !important;\\n    text-align: center !important;\\n    text-decoration: none !important;\\n    flex-shrink: 0 !important;\\n    justify-content: center !important;\\n    position: relative !important;\\n    margin: 0 5px; \\n    top: -65px;\\n \\n}\\n\\n.el-nav {\\n    position: relative;\\n    top: -100px;\\n    left: -125px;\\n}\\n\\n.el-image {\\n    margin-left: -20px;\\n    margin-top: -30px;\\n}\\n\\n.el-content { \\n    margin-left: -35px;\\n    color: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 16px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 180%; \\\/* 28.8px *\\\/\\n}\\n\\n.el-slidenav.uk-icon svg {\\n    width: 8px;\\n    height: auto;\\n}\",\"icon_width\":80,\"image_align\":\"bottom\",\"image_grid_breakpoint\":\"s\",\"image_grid_width\":\"1-5\",\"image_loading\":true,\"image_margin\":\"remove\",\"image_svg_color\":\"emphasis\",\"image_vertical_align\":true,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"small\",\"margin_remove_top\":false,\"maxwidth\":\"xlarge\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"nav\":\"dotnav\",\"nav_align\":\"right\",\"nav_breakpoint\":\"s\",\"nav_margin\":\"small\",\"panel_card_offset\":true,\"panel_link\":false,\"panel_match\":false,\"panel_padding\":\"default\",\"position_bottom\":\"140\",\"position_right\":\"34\",\"show_content\":true,\"show_hover_image\":true,\"show_hover_video\":true,\"show_image\":true,\"show_link\":true,\"show_meta\":true,\"show_title\":true,\"show_video\":true,\"slidenav\":\"bottom-right\",\"slidenav_breakpoint\":\"\",\"slidenav_margin\":\"\",\"slidenav_outside_breakpoint\":\"s\",\"slider_autoplay_pause\":true,\"slider_gap\":\"default\",\"slider_width\":\"fixed\",\"slider_width_default\":\"1-1\",\"slider_width_medium\":\"1-1\",\"text_align\":\"left\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"},\"children\":[{\"type\":\"panel-slider_item\",\"props\":{\"content\":\"\n\n<p>\\\"DeleteMe found that all six major people databases - 123people.com, MyLife.com, Spokeo, US Search, White Pages and PeopleFinder.com - have dossiers on me. All have my home address, which doesn't thrill me...\\\"<\\\/p>\",\"image\":\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/newyorktimes-logoblack.png\",\"image_alt\":\"New York Times Logo\"}},{\"type\":\"panel-slider_item\",\"props\":{\"content\":\"\n\n<p>\\\"The internet is literally an addiction and our online existence only expands the longer we perpetuate its use. But there is a way to end it all \\u2014 sign up for DeleteMe and remove yourself from the hellscape that is the internet.\\\"<\\\/p>\",\"image\":\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/forbes-logooriginal.png\",\"image_alt\":\"Forbes Logo\"}},{\"type\":\"panel-slider_item\",\"props\":{\"content\":\"\n\n<p>\\\"DeleteMe, one of the online reputation services, promised to remove me from the top people-finder databases \\u2014 in my case, 23 of them. Over the next several weeks I watched in relief as my data disappeared. From some services I was erased within 24 hours.\\\"<\\\/p>\",\"image\":\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/usatoday-logooriginal.png\",\"image_alt\":\"USA Today Logo\"}},{\"type\":\"panel-slider_item\",\"props\":{\"content\":\"\n\n<p>\\\"You can limit how easy it is to use your information by removing it from certain sites online through services like DeleteMe, or through the time-consuming process of opting out yourself.\\\"<\\\/p>\",\"image\":\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/consumerreports-logooriginal.png\",\"image_alt\":\"Consumer Reports Logo\"}},{\"type\":\"panel-slider_item\",\"props\":{\"content\":\"\n\n<p>\\\"Organizations should offer concrete resources and services to employees: These should include: cybersecurity services that protect against impersonation, doxing, and identity theft such as Deleteme. Harvard Business Review, <a href=\\\"https:\\\/\\\/hbr.org\\\/2020\\\/07\\\/what-to-do-when-your-employee-is-harassed-online\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What to Do When Your Employee is Harassed Online<\\\/a>\\\"<\\\/p>\",\"image\":\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/hbr-logooriginal.png\",\"image_alt\":\"Harvard Business Review Logo\"}}],\"name\":\"Desktop\\\/Tablet\"}]}],\"props\":{\"margin\":\"large\",\"margin_remove_top\":true}}],\"props\":{\"image_position\":\"center-center\",\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"}},{\"type\":\"section\",\"props\":{\"css\":\".el-section {\\n    background: #ECEFF5;\\n}\",\"image_position\":\"center-center\",\"image_size\":\"cover\",\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"\",\"width\":\"\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"headline\",\"props\":{\"content\":\"<span class=\\\"seewhat\\\">We're ready to be <br \\\/><\\\/span><span class=\\\"customers\\\">your privacy partner.<\\\/span><span class=\\\"seewhat\\\"><\\\/span>\",\"css\":\".seewhat {\\n    color: var(--Text-Text-primary, #070A22);\\ntext-align: center;\\nfont-family: Poppins;\\nfont-size: 28px;\\nfont-style: normal;\\nfont-weight: 400;\\n    line-height: 120%; \\\/* 33.6px *\\\/align-content\\n}\\n\\n.customers {\\n    color: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 28px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 120%;\\n}\",\"text_align\":\"center\",\"text_align_fallback\":\"center\",\"title_element\":\"h2\",\"title_style\":\"text-lead\",\"visibility\":\"s\"},\"name\":\"Desktop\\\/Tablet\"},{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"\n\n<p>With over 100 Million personal listings removed since 2010,<\\\/p>\\n\n\n<p>DeleteMe is the most trusted and proven privacy solution available.<\\\/p>\",\"css\":\".el-element {\\n    color: var(--Text-Text-primary, #070A22);\\ntext-align: center;\\nfont-family: Poppins;\\nfont-size: 18px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 160%; \\\/* 28.8px *\\\/align-content\\n}\",\"margin\":\"default\",\"text_align\":\"center\",\"visibility\":\"s\"},\"name\":\"Desktop\\\/Tablet\"},{\"type\":\"button\",\"props\":{\"class\":\"jdm-button-medium jdm-button-secondarycontained\",\"grid_column_gap\":\"small\",\"grid_row_gap\":\"small\",\"margin\":\"default\",\"text_align\":\"center\",\"visibility\":\"s\"},\"children\":[{\"type\":\"button_item\",\"props\":{\"button_style\":\"default\",\"content\":\"Join DeleteMe Risk-Free Now\",\"dialog_layout\":\"modal\",\"dialog_offcanvas_flip\":true,\"icon_align\":\"left\",\"link\":\"#\"}}],\"name\":\"Desktop\\\/Tablet\"}]}]},{\"type\":\"row\",\"props\":{\"layout\":\"1-2,1-2\",\"width\":\"default\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"headline\",\"props\":{\"content\":\"<span class=\\\"seewhat\\\">See what our<br \\\/><\\\/span><span class=\\\"customers\\\">customers<\\\/span><span class=\\\"seewhat\\\"> say<\\\/span>\",\"css\":\".seewhat {\\n    color: var(--Text-Text-primary, #070A22);\\ntext-align: center;\\nfont-family: Poppins;\\nfont-size: 28px;\\nfont-style: normal;\\nfont-weight: 400;\\n    line-height: 120%; \\\/* 33.6px *\\\/align-content\\n}\\n\\n.customers {\\n    color: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 28px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 120%;\\n}\",\"text_align\":\"left\",\"text_align_fallback\":\"center\",\"title_element\":\"h2\",\"title_style\":\"text-lead\",\"visibility\":\"s\"},\"name\":\"Desktop\"},{\"type\":\"headline\",\"props\":{\"content\":\"<span class=\\\"seewhat\\\">See what our<br \\\/><\\\/span><span class=\\\"customers\\\">customers<\\\/span><span class=\\\"seewhat\\\"> say<\\\/span>\",\"css\":\".seewhat {\\n    color: var(--Text-Text-primary, #070A22);\\ntext-align: center;\\nfont-family: Poppins;\\nfont-size: 28px;\\nfont-style: normal;\\nfont-weight: 400;\\n    line-height: 120%; \\\/* 33.6px *\\\/align-content\\n}\\n\\n.customers {\\n    color: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 28px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 120%;\\n}\",\"text_align\":\"center\",\"text_align_fallback\":\"center\",\"title_element\":\"div\",\"title_style\":\"text-lead\",\"visibility\":\"hidden-s\"},\"name\":\"Mobile\"}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"vertical_align\":\"middle\",\"width_medium\":\"1-2\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"image\",\"props\":{\"image\":\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/sitejabber-logostarsdarktext.png\",\"image_alt\":\"5 Stars Excellent, Sitejabber\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\",\"text_align\":\"right\",\"text_align_breakpoint\":\"m\",\"text_align_fallback\":\"center\",\"visibility\":\"s\"}}]}]},{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"text_color\":\"dark\"},\"children\":[{\"type\":\"panel-slider\",\"props\":{\"content_column_breakpoint\":\"m\",\"css\":\".el-title {\\ncolor: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 1.375rem;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 150%; \\\/* 2.0625rem *\\\/\\nletter-spacing: 0.01375rem;\\n}\\n\\n.el-item {\\nborder-radius: 32px;\\nbackground: #1b2041 !important;\\n}\\n\\n.el-content {\\ncolor: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 1rem;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 160%; \\\/* 1.6rem *\\\/\\n}\\n\\n.el-content p {\\n\\toverflow: hidden;\\n\\tdisplay: -webkit-box;\\n\\t-webkit-line-clamp: 3;\\n\\t-webkit-box-orient: vertical;\\n}\\n\\n.name {\\ncolor: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 1rem;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 150%; \\\/* 1.5rem *\\\/\\nletter-spacing: 0.01rem;\\n}\\n\\n.date {\\ncolor: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 1rem;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 150%;\\nletter-spacing: 0.01rem;\\n}\\n\\n.uk-card-default {\\n    background: white !important;\\n    border: 1px solid rgba(255, 255, 255, 0.1) !important;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"image_width\":\"78\",\"link_size\":\"small\",\"link_style\":\"text\",\"link_text\":\"READ MORE\",\"margin\":\"default\",\"meta_align\":\"below-content\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"nav\":\"\",\"nav_align\":\"center\",\"nav_breakpoint\":\"s\",\"panel_card_offset\":true,\"panel_image_no_padding\":false,\"panel_match\":true,\"panel_padding\":\"default\",\"panel_style\":\"card-default\",\"show_content\":true,\"show_hover_image\":true,\"show_hover_video\":true,\"show_image\":true,\"show_link\":true,\"show_meta\":true,\"show_title\":true,\"show_video\":true,\"slidenav\":\"\",\"slidenav_breakpoint\":\"xl\",\"slidenav_margin\":\"medium\",\"slidenav_outside_breakpoint\":\"xl\",\"slider_autoplay\":true,\"slider_autoplay_interval\":\"1\",\"slider_autoplay_pause\":true,\"slider_center\":true,\"slider_gap\":\"small\",\"slider_sets\":false,\"slider_velocity\":\"0.1\",\"slider_width\":\"fixed\",\"slider_width_default\":\"4-5\",\"slider_width_medium\":\"1-4\",\"title_align\":\"top\",\"title_element\":\"div\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h6\"},\"children\":[{\"type\":\"panel-slider_item\",\"props\":{\"image\":\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/orangestars.png\",\"image_alt\":\"5 Stars, Excellent, Sitejabber\"},\"source\":{\"query\":{\"name\":\"reviewss.customReviewss\",\"arguments\":{\"users\":[],\"users_operator\":\"IN\",\"offset\":0,\"limit\":10,\"order\":\"rand\",\"order_direction\":\"DESC\"}},\"props\":{\"title\":{\"filters\":{\"search\":\"\"},\"name\":\"title\"},\"content\":{\"filters\":{\"search\":\"\"},\"arguments\":{\"show_intro_text\":true},\"name\":\"content\"},\"meta\":{\"name\":\"field.name_and_date\"}}}}],\"name\":\"Dynamic Reviews01\"},{\"type\":\"image\",\"props\":{\"image\":\"https:\\\/\\\/joindeleteme.com\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/sitejabber-logostarsdarktext.png\",\"image_alt\":\"Excellent, Sitejabber\",\"image_svg_color\":\"emphasis\",\"image_width\":300,\"margin\":\"default\",\"text_align\":\"center\",\"text_align_fallback\":\"center\",\"visibility\":\"hidden-s\"},\"name\":\"Mobile\"}]}]}],\"name\":\"Reviews\"},{\"type\":\"section\",\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"headline\",\"props\":{\"block_align\":\"center\",\"content\":\"<span class=\\\"general\\\">Get access to <br \\\/>our<\\\/span> <span class=\\\"questions\\\">privacy experts<\\\/span>\",\"css\":\".general {\\n    color: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 42px;\\nfont-style: normal;\\nfont-weight: 400;\\n    line-height: 130%; \\\/* 54.6px *\\\/align-content\\n}\\n\\n.questions {\\n    \\n   color: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 42px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 130%;\\n}\",\"maxwidth\":\"xlarge\",\"title_element\":\"h2\",\"visibility\":\"s\"},\"name\":\"Desktop\\\/Tablet\"},{\"type\":\"headline\",\"props\":{\"block_align\":\"center\",\"content\":\"<span class=\\\"general\\\">Get access to <br \\\/>our<\\\/span> <span class=\\\"questions\\\">privacy experts<\\\/span>\",\"css\":\".general {\\ncolor: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 28px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 130%; \\\/* 36.4px *\\\/\\n}\\n\\n.questions {\\ncolor: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 28px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 130%;\\n}\",\"maxwidth\":\"xlarge\",\"title_element\":\"h2\",\"visibility\":\"hidden-s\"},\"name\":\"Mobile\"},{\"type\":\"text\",\"props\":{\"block_align\":\"center\",\"column_breakpoint\":\"m\",\"content\":\"\n\n<p>Expert advisors remove your info and help answer your privacy questions and custom requests.<\\\/p>\",\"css\":\".el-element {\\n    color: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 18px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 160%; \\\/* 28.8px *\\\/align-content\\n}\",\"margin\":\"medium\",\"maxwidth\":\"xlarge\"}},{\"type\":\"grid\",\"props\":{\"block_align\":\"center\",\"content_column_breakpoint\":\"m\",\"css\":\".uk-accordion-title {\\n    color: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 18px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 150%; \\\/* 27px *\\\/\\nletter-spacing: 0.18px;\\n}\\n\\n.uk-accordion-title::before {\\n    border-radius: 50%;\\n    padding: 5px;\\n}\\n\\n.uk-accordion-title h3.accordion-heading {\\n    color: var(--Text-Text-primary, #070A22);\\n    font-family: Poppins;\\n    font-size: 18px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 150%;\\n    letter-spacing: 0.18px;\\n    margin: 0;\\n    display: inline;\\n}\\n\\n.link {\\ncolor: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 16px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 180%;\\n    text-decoration: underline;\\n}\\n\\n.uk-accordion-content {\\n    color: var(--Text-Text-primary, #070A22);\\nfont-family: Poppins;\\nfont-size: 16px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 180%; \\\/* 28.8px *\\\/\\n}\",\"filter_align\":\"left\",\"filter_all\":true,\"filter_grid_breakpoint\":\"m\",\"filter_grid_width\":\"auto\",\"filter_position\":\"top\",\"filter_style\":\"tab\",\"grid_default\":\"1\",\"grid_divider\":true,\"grid_medium\":\"1\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"item_animation\":true,\"lightbox_bg_close\":true,\"link_margin\":\"remove\",\"link_style\":\"text\",\"link_text\":\"Read more\",\"margin\":\"medium\",\"maxwidth\":\"xlarge\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"small\",\"show_content\":true,\"show_hover_image\":true,\"show_hover_video\":true,\"show_image\":true,\"show_link\":true,\"show_meta\":true,\"show_title\":true,\"show_video\":true,\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"},\"children\":[{\"type\":\"grid_item\",\"props\":{\"content\":\"\n\n<ul uk-accordion=\\\"\\\">\\n  \n\n<li>\\n    <a class=\\\"uk-accordion-title\\\" href=\\\"#\\\">\n\n<h3 class=\\\"accordion-heading\\\">What is a Data Broker?<\\\/h3><\\\/a>\\n    \n\n<div class=\\\"uk-accordion-content\\\">\\n      <br \\\/>Data brokers are corporations that collect huge amounts of personally identifiable information (PII) and package it all together to create \\u2018profiles\\u2019 or \\u2018listings\\u2019 with your personal information. These profiles include things like Social Security numbers, birthdays, past and recent addresses, and more. \\n      <br \\\/>\\n      <span class=\\\"uk-align-right\\\">\\n        <a href=\\\"https:\\\/\\\/help.joindeleteme.com\\\/hc\\\/en-us\\\/articles\\\/8320076020627-How-is-my-personal-information-online\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" class=\\\"link\\\">Read More<\\\/a>\\n      <\\\/span>\\n    <\\\/div>\\n  <\\\/li>\\n<\\\/ul>\\n\",\"meta\":\"\",\"title\":\"\"}},{\"type\":\"grid_item\",\"props\":{\"content\":\"\n\n<ul uk-accordion=\\\"\\\">\\n  \n\n<li>\\n    <a class=\\\"uk-accordion-title\\\" href=\\\"#\\\">\n\n<h3 class=\\\"accordion-heading\\\">How is my personal information online?<\\\/h3><\\\/a>\\n    \n\n<div class=\\\"uk-accordion-content\\\">\\n      <br \/>Data brokers crawl the web searching for information, and use it to build a profile of you. They find this from government and other public records, self-reported information, social media, and other data brokers.\\n      <br \\\/>\\n      <span class=\\\"uk-align-right\\\">\\n        <a href=\\\"https:\\\/\\\/getabine.zendesk.com\\\/hc\\\/en-us\\\/articles\\\/8320076020627\\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" class=\\\"link\\\">Read More<\\\/a>\\n      <\\\/span>\\n    <\\\/div>\\n  <\\\/li>\\n<\\\/ul>\\n\",\"meta\":\"\",\"title\":\"\"}},{\"type\":\"grid_item\",\"props\":{\"content\":\"\n\n<ul uk-accordion=\\\"\\\">\\n  \n\n<li>\\n    <a class=\\\"uk-accordion-title\\\" href=\\\"#\\\">\n\n<h3 class=\\\"accordion-heading\\\">What happens after I sign up for DeleteMe?<\\\/h3><\\\/a>\\n    \n\n<div class=\\\"uk-accordion-content\\\">\\n      <br \\\/>Once you\\u2019ve completed your sign-up for DeleteMe, we\\u2019ll send you a welcome email so you can get started right away. You\\u2019ll log in and find your DeleteMe personal profile page. You tell us exactly what information you want deleted, and our privacy experts take it from there.\\n      <br \\\/>\\n      <span class=\\\"uk-align-right\\\">\\n        <a href=\\\"https:\\\/\\\/help.joindeleteme.com\\\/hc\\\/en-us\\\/articles\\\/8171074791315-What-happens-after-I-sign-up-for-DeleteMe\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" class=\\\"link\\\">Read More<\\\/a>\\n      <\\\/span>\\n    <\\\/div>\\n  <\\\/li>\\n<\\\/ul>\\n\",\"meta\":\"\",\"title\":\"\"}},{\"type\":\"grid_item\",\"props\":{\"content\":\"\n\n<ul uk-accordion=\\\"\\\">\\n  \n\n<li>\\n    <a class=\\\"uk-accordion-title\\\" href=\\\"#\\\">\n\n<h3 class=\\\"accordion-heading\\\">Can you delete Google search results for me?<\\\/h3><\\\/a>\\n    \n\n<div class=\\\"uk-accordion-content\\\">\\n      <br \\\/>We cannot delete Google search results themselves without first removing the source information that the search result is pulling the information from, the data broker websites. Google is not the source of the search results it's showing you; it\\u2019s merely displaying your information from the most relevant sources, based on your Google search query letting your information be found more easily. Google does not have the file containing your personal information, nor can it delete the file.\\n      <br \\\/>\\n      <span class=\\\"uk-align-right\\\">\\n        <a href=\\\"https:\\\/\\\/help.joindeleteme.com\\\/hc\\\/en-us\\\/articles\\\/8171487675027-Can-you-delete-Google-search-results-for-me\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" class=\\\"link\\\">Read More<\\\/a>\\n      <\\\/span>\\n    <\\\/div>\\n  <\\\/li>\\n<\\\/ul>\\n\",\"meta\":\"\",\"title\":\"\"}}],\"name\":\"Grid\"}]}],\"props\":{\"margin\":\"large\"}}],\"props\":{\"css\":\"@media (max-width: 640px) {\\n    .el-section {\\n        padding: 10px 0 60px 0;\\n    }\\n}\\n\",\"image_position\":\"center-center\",\"padding\":\"large\",\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"}}],\"version\":\"4.5.20\",\"yooessentialsVersion\":\"2.3.12\"} --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Find out which databrokers have your info. Find out which databrokers have your info. Start your free scan now. Email Address First Name Last Name City, State Age I have read and agree to the Terms of Service and Privacy Policy. Get FREE Report Radar scan in progress. Your free privacy scan is complete. We [&hellip;]<\/p>\n","protected":false},"author":21,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-241","page","type-page","status-publish","hentry"],"acf":[],"rankMath":{"parentDomain":"joindeleteme.com","noFollowDomains":[],"noFollowExcludeDomains":[],"noFollowExternalLinks":false,"featuredImageNotice":"The featured image should be at least 200 by 200 pixels to be picked up by Facebook and other social media sites.","pluginReviewed":true,"postSettings":{"linkSuggestions":true,"useFocusKeyword":false},"frontEndScore":false,"postName":"scan","permalinkFormat":"https:\/\/joindeleteme.com\/scan\/","showLockModifiedDate":true,"assessor":{"focusKeywordLink":"https:\/\/joindeleteme.com\/wp-admin\/edit.php?focus_keyword=%focus_keyword%&post_type=%post_type%","hasTOCPlugin":false,"primaryTaxonomy":false,"serpData":{"title":"","description":"Our scan tool searches for your personal info found on data brokers across the web. Find out what info is exposed today.","focusKeywords":"","pillarContent":false,"canonicalUrl":"","breadcrumbTitle":"","advancedRobots":{"max-snippet":"-1","max-video-preview":"-1","max-image-preview":"large"},"facebookTitle":"","facebookDescription":"","facebookImage":"","facebookImageID":"","facebookHasOverlay":false,"facebookImageOverlay":"","facebookAuthor":"","twitterCardType":"","twitterUseFacebook":true,"twitterTitle":"","twitterDescription":"","twitterImage":"","twitterImageID":"","twitterHasOverlay":false,"twitterImageOverlay":"","twitterPlayerUrl":"","twitterPlayerSize":"","twitterPlayerStream":"","twitterPlayerStreamCtype":"","twitterAppDescription":"","twitterAppIphoneName":"","twitterAppIphoneID":"","twitterAppIphoneUrl":"","twitterAppIpadName":"","twitterAppIpadID":"","twitterAppIpadUrl":"","twitterAppGoogleplayName":"","twitterAppGoogleplayID":"","twitterAppGoogleplayUrl":"","twitterAppCountry":"","robots":{"index":true},"twitterAuthor":"username","primaryTerm":0,"authorName":"JoinDeleteMe","titleTemplate":"%title% %sep% %sitename%","descriptionTemplate":"%excerpt%","showScoreFrontend":true,"lockModifiedDate":false},"powerWords":["a cut above","absolute","absolutely","absolutely lowest","absurd","abuse","accurate","accuse","achieve","actionable","adaptable","adequate","admit","adorable","advantage","advice","affordable","aggravate","aggressive","agitated","agonizing","agony","alarmed","alarming","alienated","aligned","alive","all-inclusive","alluring","always","amazing","amp","animated","annihilate","announcing","anonymous","antagonistic","anxious","apocalypse","appalled","approved","approving","argumentative","armageddon","arrogant","ass kicking","assault","assured","astonishing","astounded","astounding","at ease","atrocious","attack","attractive","audacity","authentic","authoritative","authority","avoid","aware","awe-inspiring","awesome","awkward","backbone","backdoor","backed","backlash","backstabbing","badass","balanced","banned","bargain","barrage","basic","battle","beaming","beat down","beating","beautiful","beauty","begging","behind the scenes","belief","belong","best","best-selling","better","beware","big","billion","black market","blacklisted","blast","blessed","blinded","blissful","blood","bloodbath","bloodcurdling","bloody","blunder","blushing","bold","bomb","bona","bona fide","bonanza","bonus","bootleg","bottom line","bountiful","brave","bravery","brazen","break","breaking","breakthrough","breathtaking","bright","brilliant","broke","brutal","budget","buffoon","bullshit","bully","bumbling","buy","cadaver","calm","cancel anytime","capable","captivate","captivating","carefree","case study","cash","cataclysmic","catapult","catastrophe","caution","censored","centered","certain","certainly","certified","challenge","charming","cheap","cheat","cheat-sheet","cheer","cheerful","child-like","clarity","classified","clear","clueless","collapse","colorful","colossal","comfortable","compare","competitive","complete","completely","completeness","comprehensive","compromise","compulsive","concealed","conclusive","condemning","condescending","confess","confession","confessions","confident","confidential","conquer","conscientious","constructive","content","contrary","controlling","controversial","convenient","convert","cool","cooperative","copy","corpse","corrupt","corrupting","courage","courageous","cover-up","covert","coward","cowardly","crammed","crave","crazy","create","creative","cringeworthy","cripple","crisis","critical","crooked","crush","crushing","damaging","danger","dangerous","daring","dazzling","dead","deadline","deadly","death","decadent","deceived","deceptive","deep","defiance","definitely","definitive","defying","dejected","delicious","delight","delighted","delightful","delirious","delivered","demoralizing","deplorable","depraved","desire","desperate","despicable","destiny","destroy","detailed","devastating","devoted","diagnosed","direct","dirty","disadvantages","disastrous","discount","discover","disdainful","disempowered","disgusted","disgusting","dishonest","disillusioned","disoriented","distracted","distraught","distressed","distrustful","divulge","document","dollar","dominate","doomed","double","doubtful","download","dreadful","dreamy","drive","drowning","dumb","dynamic","eager","earnest","easily","easy","economical","ecstatic","edge","effective","efficient","effortless","elated","eliminate","elite","embarrass","embarrassed","embarrassing","emergency","emerging","emphasize","empowered","enchant","encouraged","endorsed","energetic","energy","enormous","enraged","enthusiastic","envy","epic","epidemic","essential","ethical","euphoric","evil","exactly","exasperated","excellent","excited","excitement","exciting","exclusive","exclusivity","excruciating","exhilarated","expensive","expert","explode","exploit","explosive","exposed","exquisite","extra","extraordinary","extremely","exuberant","eye-opening","fail","fail-proof","failure","faith","famous","fantasy","fascinating","fatigued","faux","faux pas","fearless","feast","feeble","festive","fide","fierce","fight","final","fine","fired","first","first ever","flirt","fluid","focus","focused","fool","fooled","foolish","forbidden","force-fed","forever","forgiving","forgotten","formula","fortune","foul","frantic","free","freebie","freedom","frenzied","frenzy","frightening","frisky","frugal","frustrated","fulfill","fulfilled","full","fully","fun","fun-loving","fundamentals","funniest","funny","furious","gambling","gargantuan","genius","genuine","gift","gigantic","giveaway","glamorous","gleeful","glorious","glowing","goddamn","gorgeous","graceful","grateful","gratified","gravity","great","greatest","greatness","greed","greedy","gripping","grit","grounded","growth","guaranteed","guilt","guilt-free","gullible","guts","hack","happiness","happy","harmful","harsh","hate","have you heard","havoc","hazardous","healthy","heart","heartbreaking","heartwarming","heavenly","hell","helpful","helplessness","hero","hesitant","hidden","high tech","highest","highly effective","hilarious","hoak","hoax","honest","honored","hope","hopeful","horribly","horrific","horrifying","horror","hostile","how to","huge","humility","humor","hurricane","hurry","hypnotic","idiot","ignite","illegal","illusive","imagination","immediately","imminently","impatience","impatient","impenetrable","important","impressive","improved","in the zone","incapable","incapacitated","incompetent","inconsiderate","increase","incredible","indecisive","indulgence","indulgent","inexpensive","inferior","informative","infuriated","ingredients","innocent","innovative","insane","insecure","insider","insidious","inspired","inspiring","instant savings","instantly","instructive","insult","intel","intelligent","intense","interesting","intriguing","introducing","invasion","investment","iron-clad","ironclad","irresistible","irs","is here","jackpot","jail","jaw-dropping","jealous","jeopardy","jittery","jovial","joyous","jubilant","judgmental","jumpstart","just arrived","keen","kickass","kickstart","kill","killed","killing","kills","know it all","lame","largest","lascivious","last","last chance","last minute","latest","laugh","laughing","launch","launching","lavishly","lawsuit","lazy","left behind","legendary","legitimate","liberal","liberated","lick","lies","life-changing","lifetime","light","lighthearted","likely","limited","literally","little-known","loathsome","lonely","looming","loser","lost","love","lucrative","lunatic","lurking","lust","luxurious","luxury","lying","magic","magical","magnificent","mainstream","malicious","mammoth","manipulative","marked down","massive","master","masterclass","maul","mediocre","meditative","meltdown","memorability","memorable","menacing","mesmerizing","meticulous","mind-blowing","minimalist","miracle","mired","mischievous","misgiving","missing out","mistake","monetize","money","moneyback","moneygrubbing","monumental","most important","motivated","mouth-watering","murder","mystery","nail","naked","natural","naughty","nazi","nest egg","never","new","nightmare","no good","no obligation","no one talks about","no questions asked","no risk","no strings attached","non-controlling","noted","novelty","now","obnoxious","obsessed","obsession","obvious","odd","off-kilter","off-limits","off-the record","offensive","official","okay","on-demand","open-minded","opportunities","optimistic","ordeal","outlawed","outrageousness","outstanding","overcome","overjoyed","overnight","overwhelmed","packed","painful","painless","painstaking","pale","panic","panicked","paralyzed","pas","passionate","pathetic","pay zero","payback","perfect","peril","perplexed","perspective","pessimistic","pioneering","piranha","pitfall","pitiful","placid","plague","played","playful","pleased","pluck","plummet","plunge","poison","poisonous","polarizing","poor","popular","portfolio","pound","powerful","powerless","practical","preposterous","prestige","price","priceless","pride","prison","privacy","private","privileged","prize","problem","productive","professional","profit","profitable","profound","promiscuous","promising","promote","protect","protected","proven","provocative","provoke","psychological","pummel","punch","punish","pus","quadruple","quality","quarrelsome","quick","quick-start","quickly","quiet","radiant","rare","ravenous","rebellious","recession-proof","reckoning","recognized","recommend","recreate","reduced","reflective","refugee","refund","refundable","reject","relaxed","release","relentless","reliable","remarkable","replicate","report","reprimanding","repulsed","repulsive","research","resentful","resourceful","responsible","responsive","rested","restricted","results","retaliating","reveal","revealing","revenge","revengeful","revisited","revolting","revolutionary","reward","rich","ridiculous","risky","riveting","rookie","rowdy","ruin","rules","ruthless","sabotaging","sacred","sadistic","sadly","sadness","safe","safety","sale","sampler","sarcastic","satisfied","savage","savagery","save","savings","savvy","scam","scandal","scandalous","scarce","scared","scary","scornful","scream","searing","secret","secret agenda","secret plot","secrets","secure","security","seductive","seething","seize","selected","self-hating","self-sufficient","sensational","senseless","sensual","serene","seriously","severe","sex","sexy","shaking","shameful","shameless","shaming","shatter","shellacking","shocking","should","shrewd","sick and tired","signs","silly","simple","simplicity","simplified","simplistic","sincere","sinful","sins","six-figure","sizable","sizzle","sizzled","sizzles","sizzling","sizzlingly","skill","skyrocket","slaughter","slave","sleazy","sleeping","sly","smash","smiling","smug","smuggle","smuggled","sneak-peek","sneaky","sniveling","snob","snooty","snotty","soar","soaring","solid","solution","spank","special","spectacular","speedy","spell-binding","spine","spirit","spirited","spiteful","spoiler","spontaneous","spotlight","spunky","squirming","stable","staggering","startling","steady","steal","stealthy","steamy","step-by-step","still","stoic","stop","strange","strangle","strategy","stressed","strong","strongly suggest","struggle","stuck up","studies","stunning","stupid","stupid-simple","sturdy","sublime","succeed","success","successful","suck","suddenly","suffer","sunny","super","super-human","superb","supercharge","superior","supported","supportive","sure","sure fire","surefire","surge","surging","surprise","surprised","surprising","survival","survive","suspicious","sweaty","swoon","swoon-worthy","tailspin","tank","tantalizing","targeted","tawdry","tease","technology","teetering","tempting","tenacious","tense","terrible","terrific","terrified","terrifying","terror","terrorist","tested","thankful","the truth","threaten","threatened","thrilled","thrilling","thug","ticked off","tickled","timely","today","torture","toxic","track record","trade secret","tragedy","tragic","transform","transparency","trap","trapped","trauma","traumatized","treacherous","treasure","tremendous","trend","tricks","triggers","triple","triumph","truly","trusting","trustworthy","truth","truthful","turbo-charge","turbocharges","tweaks","twitching","ultimate","unadulterated","unassuming","unauthorized","unbelievable","unburdened","uncaring","uncensored","uncertain","uncomfortable","unconditional","uncontrollable","unconventional","uncovered","undeniable","under priced","undercover","underground","underhanded","underused","unexpected","unforgettable","unheard of","unhurried","uninterested","unique","unjustified","unknowingly","unleashed","unlimited","unlock","unparalleled","unpopular","unreliable","unresponsive","unseen","unstable","unstoppable","unsure","unsurpassed","untapped","unusual","up-sell","upbeat","uplifted","uplifting","urge","urgent","useful","useless","validate","valor","valuable","value","vanquish","vaporize","venomous","verify","vibrant","vicious","victim","victory","vigorous","vilified","vindictive","violated","violent","volatile","vulnerable","waiting","wanted","wanton","warning","waste","weak","wealth","weird","what no one tells you","whip","whopping","wicked","wild","willpower","withheld","wonderful","wondrous","woozy","world","worry","worst","worthwhile","wounded","wreaking","youthful","zen","zinger"],"diacritics":{"A":"[\\u0041\\u24B6\\uFF21\\u00C0\\u00C1\\u00C2\\u1EA6\\u1EA4\\u1EAA\\u1EA8\\u00C3\\u0100\\u0102\\u1EB0\\u1EAE\\u1EB4\\u1EB2\\u0226\\u01E0\\u00C4\\u01DE\\u1EA2\\u00C5\\u01FA\\u01CD\\u0200\\u0202\\u1EA0\\u1EAC\\u1EB6\\u1E00\\u0104\\u023A\\u2C6F]","AA":"[\\uA732]","AE":"[\\u00C6\\u01FC\\u01E2]","AO":"[\\uA734]","AU":"[\\uA736]","AV":"[\\uA738\\uA73A]","AY":"[\\uA73C]","B":"[\\u0042\\u24B7\\uFF22\\u1E02\\u1E04\\u1E06\\u0243\\u0182\\u0181]","C":"[\\u0043\\u24B8\\uFF23\\u0106\\u0108\\u010A\\u010C\\u00C7\\u1E08\\u0187\\u023B\\uA73E]","D":"[\\u0044\\u24B9\\uFF24\\u1E0A\\u010E\\u1E0C\\u1E10\\u1E12\\u1E0E\\u0110\\u018B\\u018A\\u0189\\uA779]","DZ":"[\\u01F1\\u01C4]","Dz":"[\\u01F2\\u01C5]","E":"[\\u0045\\u24BA\\uFF25\\u00C8\\u00C9\\u00CA\\u1EC0\\u1EBE\\u1EC4\\u1EC2\\u1EBC\\u0112\\u1E14\\u1E16\\u0114\\u0116\\u00CB\\u1EBA\\u011A\\u0204\\u0206\\u1EB8\\u1EC6\\u0228\\u1E1C\\u0118\\u1E18\\u1E1A\\u0190\\u018E]","F":"[\\u0046\\u24BB\\uFF26\\u1E1E\\u0191\\uA77B]","G":"[\\u0047\\u24BC\\uFF27\\u01F4\\u011C\\u1E20\\u011E\\u0120\\u01E6\\u0122\\u01E4\\u0193\\uA7A0\\uA77D\\uA77E]","H":"[\\u0048\\u24BD\\uFF28\\u0124\\u1E22\\u1E26\\u021E\\u1E24\\u1E28\\u1E2A\\u0126\\u2C67\\u2C75\\uA78D]","I":"[\\u0049\\u24BE\\uFF29\\u00CC\\u00CD\\u00CE\\u0128\\u012A\\u012C\\u0130\\u00CF\\u1E2E\\u1EC8\\u01CF\\u0208\\u020A\\u1ECA\\u012E\\u1E2C\\u0197]","J":"[\\u004A\\u24BF\\uFF2A\\u0134\\u0248]","K":"[\\u004B\\u24C0\\uFF2B\\u1E30\\u01E8\\u1E32\\u0136\\u1E34\\u0198\\u2C69\\uA740\\uA742\\uA744\\uA7A2]","L":"[\\u004C\\u24C1\\uFF2C\\u013F\\u0139\\u013D\\u1E36\\u1E38\\u013B\\u1E3C\\u1E3A\\u0141\\u023D\\u2C62\\u2C60\\uA748\\uA746\\uA780]","LJ":"[\\u01C7]","Lj":"[\\u01C8]","M":"[\\u004D\\u24C2\\uFF2D\\u1E3E\\u1E40\\u1E42\\u2C6E\\u019C]","N":"[\\u004E\\u24C3\\uFF2E\\u01F8\\u0143\\u00D1\\u1E44\\u0147\\u1E46\\u0145\\u1E4A\\u1E48\\u0220\\u019D\\uA790\\uA7A4]","NJ":"[\\u01CA]","Nj":"[\\u01CB]","O":"[\\u004F\\u24C4\\uFF2F\\u00D2\\u00D3\\u00D4\\u1ED2\\u1ED0\\u1ED6\\u1ED4\\u00D5\\u1E4C\\u022C\\u1E4E\\u014C\\u1E50\\u1E52\\u014E\\u022E\\u0230\\u00D6\\u022A\\u1ECE\\u0150\\u01D1\\u020C\\u020E\\u01A0\\u1EDC\\u1EDA\\u1EE0\\u1EDE\\u1EE2\\u1ECC\\u1ED8\\u01EA\\u01EC\\u00D8\\u01FE\\u0186\\u019F\\uA74A\\uA74C]","OI":"[\\u01A2]","OO":"[\\uA74E]","OU":"[\\u0222]","P":"[\\u0050\\u24C5\\uFF30\\u1E54\\u1E56\\u01A4\\u2C63\\uA750\\uA752\\uA754]","Q":"[\\u0051\\u24C6\\uFF31\\uA756\\uA758\\u024A]","R":"[\\u0052\\u24C7\\uFF32\\u0154\\u1E58\\u0158\\u0210\\u0212\\u1E5A\\u1E5C\\u0156\\u1E5E\\u024C\\u2C64\\uA75A\\uA7A6\\uA782]","S":"[\\u0053\\u24C8\\uFF33\\u1E9E\\u015A\\u1E64\\u015C\\u1E60\\u0160\\u1E66\\u1E62\\u1E68\\u0218\\u015E\\u2C7E\\uA7A8\\uA784]","T":"[\\u0054\\u24C9\\uFF34\\u1E6A\\u0164\\u1E6C\\u021A\\u0162\\u1E70\\u1E6E\\u0166\\u01AC\\u01AE\\u023E\\uA786]","TZ":"[\\uA728]","U":"[\\u0055\\u24CA\\uFF35\\u00D9\\u00DA\\u00DB\\u0168\\u1E78\\u016A\\u1E7A\\u016C\\u00DC\\u01DB\\u01D7\\u01D5\\u01D9\\u1EE6\\u016E\\u0170\\u01D3\\u0214\\u0216\\u01AF\\u1EEA\\u1EE8\\u1EEE\\u1EEC\\u1EF0\\u1EE4\\u1E72\\u0172\\u1E76\\u1E74\\u0244]","V":"[\\u0056\\u24CB\\uFF36\\u1E7C\\u1E7E\\u01B2\\uA75E\\u0245]","VY":"[\\uA760]","W":"[\\u0057\\u24CC\\uFF37\\u1E80\\u1E82\\u0174\\u1E86\\u1E84\\u1E88\\u2C72]","X":"[\\u0058\\u24CD\\uFF38\\u1E8A\\u1E8C]","Y":"[\\u0059\\u24CE\\uFF39\\u1EF2\\u00DD\\u0176\\u1EF8\\u0232\\u1E8E\\u0178\\u1EF6\\u1EF4\\u01B3\\u024E\\u1EFE]","Z":"[\\u005A\\u24CF\\uFF3A\\u0179\\u1E90\\u017B\\u017D\\u1E92\\u1E94\\u01B5\\u0224\\u2C7F\\u2C6B\\uA762]","a":"[\\u0061\\u24D0\\uFF41\\u1E9A\\u00E0\\u00E1\\u00E2\\u1EA7\\u1EA5\\u1EAB\\u1EA9\\u00E3\\u0101\\u0103\\u1EB1\\u1EAF\\u1EB5\\u1EB3\\u0227\\u01E1\\u00E4\\u01DF\\u1EA3\\u00E5\\u01FB\\u01CE\\u0201\\u0203\\u1EA1\\u1EAD\\u1EB7\\u1E01\\u0105\\u2C65\\u0250]","aa":"[\\uA733]","ae":"[\\u00E6\\u01FD\\u01E3]","ao":"[\\uA735]","au":"[\\uA737]","av":"[\\uA739\\uA73B]","ay":"[\\uA73D]","b":"[\\u0062\\u24D1\\uFF42\\u1E03\\u1E05\\u1E07\\u0180\\u0183\\u0253]","c":"[\\u0063\\u24D2\\uFF43\\u0107\\u0109\\u010B\\u010D\\u00E7\\u1E09\\u0188\\u023C\\uA73F\\u2184]","d":"[\\u0064\\u24D3\\uFF44\\u1E0B\\u010F\\u1E0D\\u1E11\\u1E13\\u1E0F\\u0111\\u018C\\u0256\\u0257\\uA77A]","dz":"[\\u01F3\\u01C6]","e":"[\\u0065\\u24D4\\uFF45\\u00E8\\u00E9\\u00EA\\u1EC1\\u1EBF\\u1EC5\\u1EC3\\u1EBD\\u0113\\u1E15\\u1E17\\u0115\\u0117\\u00EB\\u1EBB\\u011B\\u0205\\u0207\\u1EB9\\u1EC7\\u0229\\u1E1D\\u0119\\u1E19\\u1E1B\\u0247\\u025B\\u01DD]","f":"[\\u0066\\u24D5\\uFF46\\u1E1F\\u0192\\uA77C]","g":"[\\u0067\\u24D6\\uFF47\\u01F5\\u011D\\u1E21\\u011F\\u0121\\u01E7\\u0123\\u01E5\\u0260\\uA7A1\\u1D79\\uA77F]","h":"[\\u0068\\u24D7\\uFF48\\u0125\\u1E23\\u1E27\\u021F\\u1E25\\u1E29\\u1E2B\\u1E96\\u0127\\u2C68\\u2C76\\u0265]","hv":"[\\u0195]","i":"[\\u0069\\u24D8\\uFF49\\u00EC\\u00ED\\u00EE\\u0129\\u012B\\u012D\\u00EF\\u1E2F\\u1EC9\\u01D0\\u0209\\u020B\\u1ECB\\u012F\\u1E2D\\u0268\\u0131]","j":"[\\u006A\\u24D9\\uFF4A\\u0135\\u01F0\\u0249]","k":"[\\u006B\\u24DA\\uFF4B\\u1E31\\u01E9\\u1E33\\u0137\\u1E35\\u0199\\u2C6A\\uA741\\uA743\\uA745\\uA7A3]","l":"[\\u006C\\u24DB\\uFF4C\\u0140\\u013A\\u013E\\u1E37\\u1E39\\u013C\\u1E3D\\u1E3B\\u017F\\u0142\\u019A\\u026B\\u2C61\\uA749\\uA781\\uA747]","lj":"[\\u01C9]","m":"[\\u006D\\u24DC\\uFF4D\\u1E3F\\u1E41\\u1E43\\u0271\\u026F]","n":"[\\u006E\\u24DD\\uFF4E\\u01F9\\u0144\\u00F1\\u1E45\\u0148\\u1E47\\u0146\\u1E4B\\u1E49\\u019E\\u0272\\u0149\\uA791\\uA7A5]","nj":"[\\u01CC]","o":"[\\u006F\\u24DE\\uFF4F\\u00F2\\u00F3\\u00F4\\u1ED3\\u1ED1\\u1ED7\\u1ED5\\u00F5\\u1E4D\\u022D\\u1E4F\\u014D\\u1E51\\u1E53\\u014F\\u022F\\u0231\\u00F6\\u022B\\u1ECF\\u0151\\u01D2\\u020D\\u020F\\u01A1\\u1EDD\\u1EDB\\u1EE1\\u1EDF\\u1EE3\\u1ECD\\u1ED9\\u01EB\\u01ED\\u00F8\\u01FF\\u0254\\uA74B\\uA74D\\u0275]","oi":"[\\u01A3]","ou":"[\\u0223]","oo":"[\\uA74F]","p":"[\\u0070\\u24DF\\uFF50\\u1E55\\u1E57\\u01A5\\u1D7D\\uA751\\uA753\\uA755]","q":"[\\u0071\\u24E0\\uFF51\\u024B\\uA757\\uA759]","r":"[\\u0072\\u24E1\\uFF52\\u0155\\u1E59\\u0159\\u0211\\u0213\\u1E5B\\u1E5D\\u0157\\u1E5F\\u024D\\u027D\\uA75B\\uA7A7\\uA783]","s":"[\\u0073\\u24E2\\uFF53\\u015B\\u1E65\\u015D\\u1E61\\u0161\\u1E67\\u1E63\\u1E69\\u0219\\u015F\\u023F\\uA7A9\\uA785\\u1E9B]","ss":"[\\u00DF]","t":"[\\u0074\\u24E3\\uFF54\\u1E6B\\u1E97\\u0165\\u1E6D\\u021B\\u0163\\u1E71\\u1E6F\\u0167\\u01AD\\u0288\\u2C66\\uA787]","tz":"[\\uA729]","u":"[\\u0075\\u24E4\\uFF55\\u00F9\\u00FA\\u00FB\\u0169\\u1E79\\u016B\\u1E7B\\u016D\\u00FC\\u01DC\\u01D8\\u01D6\\u01DA\\u1EE7\\u016F\\u0171\\u01D4\\u0215\\u0217\\u01B0\\u1EEB\\u1EE9\\u1EEF\\u1EED\\u1EF1\\u1EE5\\u1E73\\u0173\\u1E77\\u1E75\\u0289]","v":"[\\u0076\\u24E5\\uFF56\\u1E7D\\u1E7F\\u028B\\uA75F\\u028C]","vy":"[\\uA761]","w":"[\\u0077\\u24E6\\uFF57\\u1E81\\u1E83\\u0175\\u1E87\\u1E85\\u1E98\\u1E89\\u2C73]","x":"[\\u0078\\u24E7\\uFF58\\u1E8B\\u1E8D]","y":"[\\u0079\\u24E8\\uFF59\\u1EF3\\u00FD\\u0177\\u1EF9\\u0233\\u1E8F\\u00FF\\u1EF7\\u1E99\\u1EF5\\u01B4\\u024F\\u1EFF]","z":"[\\u007A\\u24E9\\uFF5A\\u017A\\u1E91\\u017C\\u017E\\u1E93\\u1E95\\u01B6\\u0225\\u0240\\u2C6C\\uA763]"},"researchesTests":["contentHasTOC","contentHasShortParagraphs","contentHasAssets","keywordInTitle","keywordInMetaDescription","keywordInPermalink","keywordIn10Percent","keywordInContent","keywordInSubheadings","keywordInImageAlt","keywordDensity","keywordNotUsed","lengthContent","lengthPermalink","linksHasInternal","linksHasExternals","linksNotAllExternals","titleStartWithKeyword","titleSentiment","titleHasPowerWords","titleHasNumber","hasContentAI"],"hasRedirection":false,"hasBreadcrumb":false},"homeUrl":"https:\/\/joindeleteme.com","objectID":241,"objectType":"post","locale":"en","localeFull":"en_US","overlayImages":{"play":{"name":"Play icon","url":"https:\/\/joindeleteme.com\/wp-content\/plugins\/seo-by-rank-math\/assets\/admin\/img\/icon-play.png","path":"\/nas\/content\/live\/jdmprod\/wp-content\/plugins\/seo-by-rank-math\/assets\/admin\/img\/icon-play.png","position":"middle_center"},"gif":{"name":"GIF icon","url":"https:\/\/joindeleteme.com\/wp-content\/plugins\/seo-by-rank-math\/assets\/admin\/img\/icon-gif.png","path":"\/nas\/content\/live\/jdmprod\/wp-content\/plugins\/seo-by-rank-math\/assets\/admin\/img\/icon-gif.png","position":"middle_center"}},"defautOgImage":"https:\/\/jdmdev.wpengine.com\/wp-content\/uploads\/2023\/03\/OGimage.png","customPermalinks":true,"isUserRegistered":true,"autoSuggestKeywords":true,"connectSiteUrl":"https:\/\/rankmath.com\/auth?site=https%3A%2F%2Fjoindeleteme.com&r=https%3A%2F%2Fjoindeleteme.com%2Fwp-json%2Fwp%2Fv2%2Fpages%2F241%3Fnonce%3D537242d1f6&pro=1","maxTags":100,"trendsIcon":"<svg viewBox=\"0 0 610 610\"><path d=\"M18.85,446,174.32,290.48l58.08,58.08L76.93,504a14.54,14.54,0,0,1-20.55,0L18.83,466.48a14.54,14.54,0,0,1,0-20.55Z\" style=\"fill:#4285f4\"\/><path d=\"M242.65,242.66,377.59,377.6l-47.75,47.75a14.54,14.54,0,0,1-20.55,0L174.37,290.43l47.75-47.75A14.52,14.52,0,0,1,242.65,242.66Z\" style=\"fill:#ea4335\"\/><polygon points=\"319.53 319.53 479.26 159.8 537.34 217.88 377.61 377.62 319.53 319.53\" style=\"fill:#fabb05\"\/><path d=\"M594.26,262.73V118.61h0a16.94,16.94,0,0,0-16.94-16.94H433.2a16.94,16.94,0,0,0-12,28.92L565.34,274.71h0a16.94,16.94,0,0,0,28.92-12Z\" style=\"fill:#34a853\"\/><rect width=\"610\" height=\"610\" style=\"fill:none\"\/><\/svg>","showScore":true,"siteFavIcon":"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8\/9hAAABs0lEQVR4AWL4\/\/8\/RRjO8Iucx+noO0MWUDo16FYABMGP6ZfUcRnWtm27jVPbtm3bttuH2t3eFPcY9pLz7NxiLjCyVd87pKnHyqXyxtCs8APd0rnyxiu4qSeA3QEDrAwBDrT1s1Rc\/OrjLZwqVmOSu6+Lamcpp2KKMA9PH1BYXMe1mUP5qotvXTywsOEEYHXxrY+3cqk6TMkYpNr2FeoY3KIr0RPtn9wQ2unlA+GMkRw6+9TFw4YTwDUzx\/JVvARj9KaedXRO8P5B1Du2S32smzqUrcKGEyA+uAgQjKX7zf0boWHGfn71jIKj2689gxp7OAGShNcBUmLMPVjZuiKcA2vuWHHDCQxMCz629kXAIU4ApY15QwggAFbfOP9DhgBJ+nWVJ1AZAfICAj1pAlY6hCADZnveQf7bQIwzVONGJonhLIlS9gr5mFg44Xd+4S3XHoGNPdJl1INIwKyEgHckEhgTe1bGiFY9GSFBYUwLh1IkiJUbY407E7syBSFxKTszEoiE\/YdrgCEayDmtaJwCI9uu8TKMuZSVfSa4BpGgzvomBR\/INhLGzrqDotp01ZR8pn\/1L0JN9d9XNyx0AAAAAElFTkSuQmCC","canUser":{"general":false,"advanced":false,"snippet":false,"social":false,"analysis":false,"analytics":false,"content_ai":false},"showKeywordIntent":true,"isPro":true,"is_front_page":false,"trendsUpgradeLink":"https:\/\/rankmath.com\/pricing\/?utm_source=Plugin&utm_medium=CE%20General%20Tab%20Trends&utm_campaign=WP","trendsUpgradeLabel":"Upgrade","trendsPreviewImage":"https:\/\/joindeleteme.com\/wp-content\/plugins\/seo-by-rank-math\/assets\/admin\/img\/trends-preview.jpg","currentEditor":false,"homepageData":{"assessor":{"powerWords":["a cut above","absolute","absolutely","absolutely lowest","absurd","abuse","accurate","accuse","achieve","actionable","adaptable","adequate","admit","adorable","advantage","advice","affordable","aggravate","aggressive","agitated","agonizing","agony","alarmed","alarming","alienated","aligned","alive","all-inclusive","alluring","always","amazing","amp","animated","annihilate","announcing","anonymous","antagonistic","anxious","apocalypse","appalled","approved","approving","argumentative","armageddon","arrogant","ass kicking","assault","assured","astonishing","astounded","astounding","at ease","atrocious","attack","attractive","audacity","authentic","authoritative","authority","avoid","aware","awe-inspiring","awesome","awkward","backbone","backdoor","backed","backlash","backstabbing","badass","balanced","banned","bargain","barrage","basic","battle","beaming","beat down","beating","beautiful","beauty","begging","behind the scenes","belief","belong","best","best-selling","better","beware","big","billion","black market","blacklisted","blast","blessed","blinded","blissful","blood","bloodbath","bloodcurdling","bloody","blunder","blushing","bold","bomb","bona","bona fide","bonanza","bonus","bootleg","bottom line","bountiful","brave","bravery","brazen","break","breaking","breakthrough","breathtaking","bright","brilliant","broke","brutal","budget","buffoon","bullshit","bully","bumbling","buy","cadaver","calm","cancel anytime","capable","captivate","captivating","carefree","case study","cash","cataclysmic","catapult","catastrophe","caution","censored","centered","certain","certainly","certified","challenge","charming","cheap","cheat","cheat-sheet","cheer","cheerful","child-like","clarity","classified","clear","clueless","collapse","colorful","colossal","comfortable","compare","competitive","complete","completely","completeness","comprehensive","compromise","compulsive","concealed","conclusive","condemning","condescending","confess","confession","confessions","confident","confidential","conquer","conscientious","constructive","content","contrary","controlling","controversial","convenient","convert","cool","cooperative","copy","corpse","corrupt","corrupting","courage","courageous","cover-up","covert","coward","cowardly","crammed","crave","crazy","create","creative","cringeworthy","cripple","crisis","critical","crooked","crush","crushing","damaging","danger","dangerous","daring","dazzling","dead","deadline","deadly","death","decadent","deceived","deceptive","deep","defiance","definitely","definitive","defying","dejected","delicious","delight","delighted","delightful","delirious","delivered","demoralizing","deplorable","depraved","desire","desperate","despicable","destiny","destroy","detailed","devastating","devoted","diagnosed","direct","dirty","disadvantages","disastrous","discount","discover","disdainful","disempowered","disgusted","disgusting","dishonest","disillusioned","disoriented","distracted","distraught","distressed","distrustful","divulge","document","dollar","dominate","doomed","double","doubtful","download","dreadful","dreamy","drive","drowning","dumb","dynamic","eager","earnest","easily","easy","economical","ecstatic","edge","effective","efficient","effortless","elated","eliminate","elite","embarrass","embarrassed","embarrassing","emergency","emerging","emphasize","empowered","enchant","encouraged","endorsed","energetic","energy","enormous","enraged","enthusiastic","envy","epic","epidemic","essential","ethical","euphoric","evil","exactly","exasperated","excellent","excited","excitement","exciting","exclusive","exclusivity","excruciating","exhilarated","expensive","expert","explode","exploit","explosive","exposed","exquisite","extra","extraordinary","extremely","exuberant","eye-opening","fail","fail-proof","failure","faith","famous","fantasy","fascinating","fatigued","faux","faux pas","fearless","feast","feeble","festive","fide","fierce","fight","final","fine","fired","first","first ever","flirt","fluid","focus","focused","fool","fooled","foolish","forbidden","force-fed","forever","forgiving","forgotten","formula","fortune","foul","frantic","free","freebie","freedom","frenzied","frenzy","frightening","frisky","frugal","frustrated","fulfill","fulfilled","full","fully","fun","fun-loving","fundamentals","funniest","funny","furious","gambling","gargantuan","genius","genuine","gift","gigantic","giveaway","glamorous","gleeful","glorious","glowing","goddamn","gorgeous","graceful","grateful","gratified","gravity","great","greatest","greatness","greed","greedy","gripping","grit","grounded","growth","guaranteed","guilt","guilt-free","gullible","guts","hack","happiness","happy","harmful","harsh","hate","have you heard","havoc","hazardous","healthy","heart","heartbreaking","heartwarming","heavenly","hell","helpful","helplessness","hero","hesitant","hidden","high tech","highest","highly effective","hilarious","hoak","hoax","honest","honored","hope","hopeful","horribly","horrific","horrifying","horror","hostile","how to","huge","humility","humor","hurricane","hurry","hypnotic","idiot","ignite","illegal","illusive","imagination","immediately","imminently","impatience","impatient","impenetrable","important","impressive","improved","in the zone","incapable","incapacitated","incompetent","inconsiderate","increase","incredible","indecisive","indulgence","indulgent","inexpensive","inferior","informative","infuriated","ingredients","innocent","innovative","insane","insecure","insider","insidious","inspired","inspiring","instant savings","instantly","instructive","insult","intel","intelligent","intense","interesting","intriguing","introducing","invasion","investment","iron-clad","ironclad","irresistible","irs","is here","jackpot","jail","jaw-dropping","jealous","jeopardy","jittery","jovial","joyous","jubilant","judgmental","jumpstart","just arrived","keen","kickass","kickstart","kill","killed","killing","kills","know it all","lame","largest","lascivious","last","last chance","last minute","latest","laugh","laughing","launch","launching","lavishly","lawsuit","lazy","left behind","legendary","legitimate","liberal","liberated","lick","lies","life-changing","lifetime","light","lighthearted","likely","limited","literally","little-known","loathsome","lonely","looming","loser","lost","love","lucrative","lunatic","lurking","lust","luxurious","luxury","lying","magic","magical","magnificent","mainstream","malicious","mammoth","manipulative","marked down","massive","master","masterclass","maul","mediocre","meditative","meltdown","memorability","memorable","menacing","mesmerizing","meticulous","mind-blowing","minimalist","miracle","mired","mischievous","misgiving","missing out","mistake","monetize","money","moneyback","moneygrubbing","monumental","most important","motivated","mouth-watering","murder","mystery","nail","naked","natural","naughty","nazi","nest egg","never","new","nightmare","no good","no obligation","no one talks about","no questions asked","no risk","no strings attached","non-controlling","noted","novelty","now","obnoxious","obsessed","obsession","obvious","odd","off-kilter","off-limits","off-the record","offensive","official","okay","on-demand","open-minded","opportunities","optimistic","ordeal","outlawed","outrageousness","outstanding","overcome","overjoyed","overnight","overwhelmed","packed","painful","painless","painstaking","pale","panic","panicked","paralyzed","pas","passionate","pathetic","pay zero","payback","perfect","peril","perplexed","perspective","pessimistic","pioneering","piranha","pitfall","pitiful","placid","plague","played","playful","pleased","pluck","plummet","plunge","poison","poisonous","polarizing","poor","popular","portfolio","pound","powerful","powerless","practical","preposterous","prestige","price","priceless","pride","prison","privacy","private","privileged","prize","problem","productive","professional","profit","profitable","profound","promiscuous","promising","promote","protect","protected","proven","provocative","provoke","psychological","pummel","punch","punish","pus","quadruple","quality","quarrelsome","quick","quick-start","quickly","quiet","radiant","rare","ravenous","rebellious","recession-proof","reckoning","recognized","recommend","recreate","reduced","reflective","refugee","refund","refundable","reject","relaxed","release","relentless","reliable","remarkable","replicate","report","reprimanding","repulsed","repulsive","research","resentful","resourceful","responsible","responsive","rested","restricted","results","retaliating","reveal","revealing","revenge","revengeful","revisited","revolting","revolutionary","reward","rich","ridiculous","risky","riveting","rookie","rowdy","ruin","rules","ruthless","sabotaging","sacred","sadistic","sadly","sadness","safe","safety","sale","sampler","sarcastic","satisfied","savage","savagery","save","savings","savvy","scam","scandal","scandalous","scarce","scared","scary","scornful","scream","searing","secret","secret agenda","secret plot","secrets","secure","security","seductive","seething","seize","selected","self-hating","self-sufficient","sensational","senseless","sensual","serene","seriously","severe","sex","sexy","shaking","shameful","shameless","shaming","shatter","shellacking","shocking","should","shrewd","sick and tired","signs","silly","simple","simplicity","simplified","simplistic","sincere","sinful","sins","six-figure","sizable","sizzle","sizzled","sizzles","sizzling","sizzlingly","skill","skyrocket","slaughter","slave","sleazy","sleeping","sly","smash","smiling","smug","smuggle","smuggled","sneak-peek","sneaky","sniveling","snob","snooty","snotty","soar","soaring","solid","solution","spank","special","spectacular","speedy","spell-binding","spine","spirit","spirited","spiteful","spoiler","spontaneous","spotlight","spunky","squirming","stable","staggering","startling","steady","steal","stealthy","steamy","step-by-step","still","stoic","stop","strange","strangle","strategy","stressed","strong","strongly suggest","struggle","stuck up","studies","stunning","stupid","stupid-simple","sturdy","sublime","succeed","success","successful","suck","suddenly","suffer","sunny","super","super-human","superb","supercharge","superior","supported","supportive","sure","sure fire","surefire","surge","surging","surprise","surprised","surprising","survival","survive","suspicious","sweaty","swoon","swoon-worthy","tailspin","tank","tantalizing","targeted","tawdry","tease","technology","teetering","tempting","tenacious","tense","terrible","terrific","terrified","terrifying","terror","terrorist","tested","thankful","the truth","threaten","threatened","thrilled","thrilling","thug","ticked off","tickled","timely","today","torture","toxic","track record","trade secret","tragedy","tragic","transform","transparency","trap","trapped","trauma","traumatized","treacherous","treasure","tremendous","trend","tricks","triggers","triple","triumph","truly","trusting","trustworthy","truth","truthful","turbo-charge","turbocharges","tweaks","twitching","ultimate","unadulterated","unassuming","unauthorized","unbelievable","unburdened","uncaring","uncensored","uncertain","uncomfortable","unconditional","uncontrollable","unconventional","uncovered","undeniable","under priced","undercover","underground","underhanded","underused","unexpected","unforgettable","unheard of","unhurried","uninterested","unique","unjustified","unknowingly","unleashed","unlimited","unlock","unparalleled","unpopular","unreliable","unresponsive","unseen","unstable","unstoppable","unsure","unsurpassed","untapped","unusual","up-sell","upbeat","uplifted","uplifting","urge","urgent","useful","useless","validate","valor","valuable","value","vanquish","vaporize","venomous","verify","vibrant","vicious","victim","victory","vigorous","vilified","vindictive","violated","violent","volatile","vulnerable","waiting","wanted","wanton","warning","waste","weak","wealth","weird","what no one tells you","whip","whopping","wicked","wild","willpower","withheld","wonderful","wondrous","woozy","world","worry","worst","worthwhile","wounded","wreaking","youthful","zen","zinger"],"diacritics":true,"researchesTests":["contentHasTOC","contentHasShortParagraphs","contentHasAssets","keywordInTitle","keywordInMetaDescription","keywordInPermalink","keywordIn10Percent","keywordInContent","keywordInSubheadings","keywordInImageAlt","keywordDensity","keywordNotUsed","lengthContent","lengthPermalink","linksHasInternal","linksHasExternals","linksNotAllExternals","titleStartWithKeyword","titleSentiment","titleHasPowerWords","titleHasNumber","hasContentAI"],"hasBreadcrumb":false,"serpData":{"title":"%sitename% %page% %sep% %sitedesc%","description":"","titleTemplate":"%sitename% %page% %sep% %sitedesc%","descriptionTemplate":"","focusKeywords":"","breadcrumbTitle":"Home","robots":{"index":true},"advancedRobots":{"max-snippet":"-1","max-video-preview":"-1","max-image-preview":"large"},"facebookTitle":"","facebookDescription":"","facebookImage":"","facebookImageID":""}}},"searchIntents":[],"tocTitle":"Table of Contents","tocExcludeHeadings":["h3","h4","h5","h6"],"listStyle":"ul"},"_links":{"self":[{"href":"https:\/\/joindeleteme.com\/wp-json\/wp\/v2\/pages\/241","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/joindeleteme.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/joindeleteme.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/joindeleteme.com\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/joindeleteme.com\/wp-json\/wp\/v2\/comments?post=241"}],"version-history":[{"count":0,"href":"https:\/\/joindeleteme.com\/wp-json\/wp\/v2\/pages\/241\/revisions"}],"wp:attachment":[{"href":"https:\/\/joindeleteme.com\/wp-json\/wp\/v2\/media?parent=241"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}