{"allowRetry":true,"codeEvalConfig":{"onPageLoad":"(() =\u003e {\n    try {\n\n        window.fplog = window.fplog || [];\n\n        // POC allow list\n        const pocSitesRegex = /(westalamodentalcare|citysmilesdc|naturecoastdentalcare|prestondentalcenter|chehalisdentalcare|avilesdentalcare|macedoniadentalarts|durbincreekdentalcare|signaturesmilesbrighton|smilecda|pomplamoosedental|wren-bend-template-1\\.pgsdemo)\\.com/ig;\n        if (!!window.location.hostname.match(pocSitesRegex)) {\n            const evg = document.createElement(\"script\");\n            evg.type = 'text/javascript';\n            evg.async = true;\n            evg.src = \"//cdn.evgnet.com/beacon/heartlanddental/engage/scripts/evergage.min.js\";\n            document.head.appendChild(evg);\n        }\n\n        // Feature Flags event for calculating interaction rate\n        const feature_flags = [];\n        if (!!document.querySelector(\"a[href*='referral-hub.net/refer/']\") === true) {\n            feature_flags.push(\"provider referral\");\n        }\n        if (!!document.querySelector(\"[class$='-reviewsLink']\") === true) {\n            feature_flags.push(\"google rating\");\n        }\n        if (feature_flags.length \u003e 0) {\n            freshpaint.track(\"Feature Flags\", {\n                enabled_features: feature_flags.join(\", \")\n            });\n        }\n\n        if ([\"www.pomplamoosedental.com\"].indexOf(document.location.hostname) \u003e -1) {\n            freshpaint.addEventProperties({ \"debug_mode\": true });\n        } else {\n            freshpaint.removeEventProperty(\"debug_mode\");\n        }\n\n        // bot detection, is bot if webdriver is true or undefined\n        let webdriver = false;\n        if (window.navigator?.webdriver === true) {\n            webdriver = true;\n        }\n        freshpaint.addEventProperties({ \"webdriver\": webdriver });\n\n        // Update UTM params for future events\n        const query_keys = [\"utm_source\", \"utm_medium\", \"utm_campaign\", \"utm_term\", \"utm_content\"];\n        const url = new URL(document.location.href);\n        const utm_url_props = Object.fromEntries(query_keys.map((k) =\u003e [k, \"\"]));\n        for (const p of url.searchParams.keys()) {\n            if (query_keys.indexOf(p) \u003e -1) {\n                utm_url_props[p] = url.searchParams.get(p);\n            }\n        }\n        const utm_event_props = {};\n        Object.keys(utm_url_props).forEach(x =\u003e {\n            utm_event_props[x + \"_custom\"] = utm_url_props[x];\n        });\n        if (Object.values(utm_event_props).some((x) =\u003e !!x)) {\n            window.fplog.push([\"Updating UTM params\", utm_event_props]);\n            freshpaint.addEventProperties(utm_event_props);\n        }\n\n        // UI color scheme preference\n        const detectColorSchemePref = () =\u003e {\n            if (window.matchMedia \u0026\u0026 window.matchMedia('(prefers-color-scheme: dark)').matches) {\n                return 'dark';\n            }\n            else if (window.matchMedia \u0026\u0026 window.matchMedia('(prefers-color-scheme: light)').matches) {\n                return 'light';\n            }\n            return 'no preference';\n        }\n        const colorSchemePref = detectColorSchemePref();\n        freshpaint.addEventProperties({ color_scheme_pref: colorSchemePref });\n\n        // Office ID\n        if (!!window.OFFICE_INFO?.hdcid) {\n            freshpaint.addEventProperties({ office_id: window.OFFICE_INFO.hdcid });\n        }\n\n        // Template ID\n        if (!!window.OFFICE_INFO?.site_template) {\n            freshpaint.addEventProperties({ site_template: window.OFFICE_INFO.site_template });\n        }\n\n        // Search term\n        let u = new URL(document.location);\n        if (u.pathname.indexOf(\"/search\") \u003e -1 \u0026\u0026 !!u.searchParams.get(\"query\")) {\n            freshpaint.track(\"Search\", { search_term: u.searchParams.get(\"query\").toLowerCase() });\n        }\n\n        // First interaction with chat\n        let waitForChatIframe = setInterval(function () {\n            if (document.activeElement.tagName === \"IFRAME\" \u0026\u0026 document.activeElement.id === \"icChat\") {\n                freshpaint.track(\"Initial Chat Interaction\");\n                clearInterval(waitForChatIframe);\n            }\n        }, 200);\n\n        if (!!document.location.pathname.match(/\\/make-appointment/)) {\n            const getMonthName = (date) =\u003e {\n                const tempDate = new Date();\n                tempDate.setMonth(date.getMonth());\n                return tempDate.toLocaleString(\"en-US\", {\n                    month: \"long\",\n                });\n            };\n\n            const getDayName = (date) =\u003e {\n                return date.toLocaleString(\"en-US\", {\n                    weekday: \"long\",\n                });\n            };\n\n            const getAppointmentDetails = (appointmentType) =\u003e {\n                const eventObj = {};\n                const patientType = {\n                    new: \"1\",\n                    returning: \"2\",\n                };\n                const serviceType = {\n                    Emergency: \"Emergency\",\n                    Cleaning: \"Cleaning checkup\",\n                    Dentures: \"Dentures\",\n                    Invisalign: \"Invisalign\",\n                    General: \"General\",\n                    Esteem: \"Esteem\",\n                };\n                switch (appointmentType) {\n                    case 1:\n                        eventObj.patient_type = patientType.new;\n                        eventObj.appt_reason = serviceType.Emergency;\n                        break;\n                    case 2:\n                        eventObj.patient_type = patientType.new;\n                        eventObj.appt_reason = serviceType.Cleaning;\n                        break;\n                    case 3:\n                        eventObj.patient_type = patientType.returning;\n                        eventObj.appt_reason = serviceType.Emergency;\n                        break;\n                    case 4:\n                        eventObj.patient_type = patientType.returning;\n                        eventObj.appt_reason = serviceType.Cleaning;\n                        break;\n                    case 5:\n                        eventObj.patient_type = patientType.returning;\n                        eventObj.appt_reason = serviceType.Dentures;\n                        break;\n                    case 6:\n                        eventObj.patient_type = patientType.returning;\n                        eventObj.appt_reason = serviceType.Invisalign;\n                        break;\n                    case 8:\n                        eventObj.patient_type = patientType.returning;\n                        eventObj.appt_reason = serviceType.General;\n                        break;\n                    case 10:\n                        eventObj.patient_type = patientType.new;\n                        eventObj.appt_reason = serviceType.Dentures;\n                        break;\n                    case 11:\n                        eventObj.patient_type = patientType.new;\n                        eventObj.appt_reason = serviceType.Invisalign;\n                        break;\n                    case 12:\n                        eventObj.patient_type = patientType.new;\n                        eventObj.appt_reason = serviceType.General;\n                        break;\n                    case 13:\n                        eventObj.patient_type = patientType.new;\n                        eventObj.appt_reason = serviceType.Esteem;\n                        break;\n                    case 14:\n                        eventObj.patient_type = patientType.returning;\n                        eventObj.appt_reason = serviceType.Esteem;\n                        break;\n                    default:\n                        eventObj.patient_type = `unmatched appointment type: ${appointmentType}`;\n                        eventObj.appt_reason = `unmatched appointment type: ${appointmentType}`;\n                }\n                return eventObj;\n            };\n\n            const getAppointmentTimeDetails = (appt_time) =\u003e {\n                const eventObj = {};\n                if (appt_time.event_type === \"field-touched\") {\n                    const appt_dt = new Date(appt_time.metadata.name);\n                    eventObj.oar = false;\n                    eventObj.appt_dt = JSON.stringify(appt_dt);\n                    eventObj.appt_time = appt_dt.toLocaleTimeString();\n                    eventObj.appt_weekday = getDayName(appt_dt);\n                    eventObj.appt_date = appt_dt.getDate();\n                    eventObj.appt_month = getMonthName(appt_dt);\n                } else {\n                    eventObj.oar = true;\n                    eventObj.appt_time = appt_time.metadata.selectedValue;\n                }\n                return eventObj;\n            };\n\n            function persistPersonalDetails() {\n                window.appointment = window.appointment || {};\n                function listenForRadioChange(parentSelector, targetSelector, key) {\n                    let waitCounter = 0;\n                    let waitInterval = setInterval(() =\u003e {\n                        if (!!document.querySelector(parentSelector) || waitCounter \u003e 10) {\n                            clearInterval(waitInterval);\n                            let options = document.querySelector(parentSelector);\n                            options.addEventListener(\"input\", function (click_event) {\n                                if (!!click_event.target.matches(targetSelector) === false) return;\n                                let selectedOption = Array.from(click_event.target.closest(\".field-radio\").querySelector(\"span.text\").childNodes).find((x) =\u003e x.nodeType === Node.TEXT_NODE).nodeValue;\n                                window.appointment[key] = selectedOption.toLowerCase();\n                            });\n                        } else {\n                            waitCounter++;\n                        }\n                    }, 200);\n                }\n                window.appointment.contact_pref = document.querySelector(\"#contactPreference input:checked\").closest(\"label\").innerText.toLowerCase();\n                listenForRadioChange(\"#contactPreference\", \"input[name='contactPreference']\", \"contact_pref\");\n                window.appointment.req_accommodations = document.querySelector(\"#specialAccommodations input:checked\").closest(\"label\").innerText.toLowerCase();\n                listenForRadioChange(\"#specialAccommodations\", \"input[name='specialAccommodations']\", \"req_accommodations\");\n                document.getElementById(\"firstName\").addEventListener(\"input\", (event) =\u003e {\n                    window.appointment.patient_firstName = event.target.value;\n                });\n                document.getElementById(\"lastName\").addEventListener(\"input\", (event) =\u003e {\n                    window.appointment.patient_lastName = event.target.value;\n                });\n                document.getElementById(\"birthday\").addEventListener(\"input\", (event) =\u003e {\n                    window.appointment.patient_dob = event.target.value;\n                });\n                document.getElementById(\"phone\").addEventListener(\"input\", (event) =\u003e {\n                    window.appointment.patient_phone = event.target.value;\n                });\n                document.getElementById(\"email\").addEventListener(\"input\", (event) =\u003e {\n                    window.appointment.patient_email = event.target.value;\n                });\n            };\n\n            function sendBookingSuccess() {\n                let eventObj = {};\n                const scheduler = window.OFFICE_INFO.data_layer.onlineScheduler;\n                if (!!window.OFFICE_INFO?.data_layer?.onlineScheduler) {\n                    eventObj.office_id = scheduler.findLast((x) =\u003e true).metadata.office;\n                    // Include patient type and appt type/reason\n                    const appointmentType = scheduler.findLast((x) =\u003e x.event_type === \"appointment-type\").metadata.value;\n                    const appointmentDetails = getAppointmentDetails(appointmentType);\n                    eventObj = { ...eventObj, ...appointmentDetails };\n                    // Include appointment offerings count\n                    if (!!scheduler.find((x) =\u003e x.event_type === \"appts-displayed\")) {\n                        eventObj.offerings_displayed = scheduler\n                            .slice(scheduler.findLastIndex((x) =\u003e x.event_type === \"start-select-time\"))\n                            .filter((x) =\u003e x.event_type === \"appts-displayed\")\n                            .reduce((acc, cur) =\u003e acc + cur.metadata.value, 0);\n                    }\n                    // Include booking ID\n                    if (!!scheduler.findLast((x) =\u003e x.event_type === \"booking-id\")) {\n                        eventObj.booking_id = scheduler.findLast((x) =\u003e x.event_type === \"booking-id\").metadata.value;\n                    }\n                    // Include selected appointment time details\n                    const appt_time = scheduler\n                        .slice(\n                            0,\n                            scheduler.findLastIndex((x) =\u003e x.event_type === \"exit-select-time\")\n                        )\n                        .findLast((x) =\u003e [\"field-touched\", \"user-selection\"].indexOf(x.event_type) \u003e -1);\n                    const appointmentTimeDetails = getAppointmentTimeDetails(appt_time);\n                    eventObj = { ...eventObj, ...appointmentTimeDetails };\n                }\n                // Include personal details from final scheduling form\n                const personalDetails = getPersonalDetails();\n                eventObj = { ...eventObj, ...personalDetails };\n                const customVars = {\n                    custom_variables: [\n                        {\n                            conversionCustomVariable: \"user_type\",\n                            value: eventObj.patient_type,\n                        },\n                    ],\n                };\n\n                eventObj = { ...customVars, ...eventObj };\n                freshpaint.track(\"Online Booking Success\", eventObj);\n                var ep = JSON.stringify(eventObj);\n                if (ep.includes('Cleaning checkup')) {\n                  freshpaint.track('Online Booking Success - Hygiene', eventObj);\n                }\n                if (!ep.includes('Cleaning checkup')) {\n                  freshpaint.track('Online Booking Success - Doctor', eventObj);\n                }\n                /* 50+ */\n                var pyr = window.appointment.patient_dob.slice(-4);\n                var cyr = new Date().getFullYear();\n                var delta = cyr - pyr;\n                if (!!delta \u0026\u0026 delta \u003e 49) {\n                  freshpaint.track('Online Booking Success 50+', eventObj)\n                }\n            }\n\n            const getPersonalDetails = () =\u003e {\n                const eventObj = {};\n                eventObj.contact_pref = window.appointment.contact_pref.trim();\n                eventObj.req_accommodations = window.appointment.req_accommodations.trim();\n                eventObj.patient_firstName = window.appointment.patient_firstName.trim();\n                eventObj.patient_lastName = window.appointment.patient_lastName.trim();\n                eventObj.patient_phone = window.appointment.patient_phone.trim();\n                eventObj.patient_email = window.appointment.patient_email.trim();\n                const dob = window.appointment.patient_dob.split(\"/\");\n                eventObj.patient_dob = dob[2] + dob[0] + dob[1];\n                return eventObj;\n            };\n\n            addEventListener(\"hashchange\", (event) =\u003e {\n                if (!!document.location.hash.match(/#\\/\\d+\\/personal-details/)) {\n                    persistPersonalDetails();\n                }\n            });\n\n            const processSignal = (x) =\u003e {\n                // console.log(\"processSignal\", x);\n                const scheduler = window.OFFICE_INFO.data_layer.onlineScheduler;\n                if (x.event_type === \"start-landing\") {\n                    let eventObj = {};\n                    eventObj.office_id = scheduler.findLast((x) =\u003e true).metadata.office;\n                    // Send event: Make Appointment          \n                    freshpaint.track(\"Make an Appointment\", eventObj);\n                } else if (x.event_type === \"exit-landing\") {\n                    let eventObj = {};\n                    eventObj.office_id = scheduler.findLast((x) =\u003e true).metadata.office;\n                    // Include patient type and appt type/reason\n                    const appointmentType = scheduler.findLast((x) =\u003e x.event_type === \"appointment-type\").metadata.value;\n                    const appointmentDetails = getAppointmentDetails(appointmentType);\n                    eventObj = { ...eventObj, ...appointmentDetails };\n                    // Send event: Select Reason         \n                    freshpaint.track(\"Select Reason\", eventObj);\n                } else if (x.event_type === \"appts-displayed\") {\n                    let eventObj = {};\n                    eventObj.office_id = scheduler.findLast((x) =\u003e true).metadata.office;\n                    // Include patient type and appt type/reason\n                    const appointmentType = scheduler.findLast((x) =\u003e x.event_type === \"appointment-type\").metadata.value;\n                    const appointmentDetails = getAppointmentDetails(appointmentType);\n                    eventObj = { ...eventObj, ...appointmentDetails };\n                    eventObj.offerings_displayed = x.metadata.value;\n                    // Send event: Appointment Offerings                    \n                    freshpaint.track(\"Appointment Offerings\", eventObj);\n                } else if (x.event_type === \"start-personal-details\") {\n                    let eventObj = {};\n                    eventObj.office_id = scheduler.findLast((x) =\u003e true).metadata.office;\n                    // Include patient type and appt type/reason\n                    const appointmentType = scheduler.findLast((x) =\u003e x.event_type === \"appointment-type\").metadata.value;\n                    const appointmentDetails = getAppointmentDetails(appointmentType);\n                    eventObj = { ...eventObj, ...appointmentDetails };\n                    // Include appointment offerings count\n                    if (!!scheduler.find((x) =\u003e x.event_type === \"appts-displayed\")) {\n                        eventObj.offerings_displayed = scheduler\n                            .slice(scheduler.findLastIndex((x) =\u003e x.event_type === \"start-select-time\"))\n                            .filter((x) =\u003e x.event_type === \"appts-displayed\")\n                            .reduce((acc, cur) =\u003e acc + cur.metadata.value, 0);\n                    }\n                    // Include selected appointment time details\n                    const appt_time = scheduler\n                        .slice(\n                            0,\n                            scheduler.findLastIndex((x) =\u003e x.event_type === \"exit-select-time\")\n                        )\n                        .findLast((x) =\u003e [\"field-touched\", \"user-selection\"].indexOf(x.event_type) \u003e -1);\n                    const appointmentTimeDetails = getAppointmentTimeDetails(appt_time);\n                    eventObj = { ...eventObj, ...appointmentTimeDetails };\n                    // Make sure booking ID is present before sending Select Appt event\n                    let waitForBookingId_cursor = 0;\n                    const waitForBookingId = setInterval(() =\u003e {\n                        waitForBookingId_cursor++;\n                        if (!!scheduler.findLast((x) =\u003e x.event_type === \"booking-id\") || waitForBookingId_cursor \u003e 25) {\n                            clearInterval(waitForBookingId);\n                            if (!!scheduler.findLast((x) =\u003e x.event_type === \"booking-id\")) {\n                                eventObj.booking_id = scheduler.findLast((x) =\u003e x.event_type === \"booking-id\").metadata.value;\n                            }\n                            // Send event: Select Appointment\n                            freshpaint.track(\"Select Appointment\", eventObj);\n                        }\n                    }, 200);\n                } else if (x.event_type === \"start-success\") {\n                    sendBookingSuccess();\n                }\n            };\n\n            let waitForSchedulerCount = 30; // 6 seconds\n            const schedulerInit = setInterval(() =\u003e {\n                waitForSchedulerCount--;\n                if (waitForSchedulerCount \u003c 1) {\n                    console.log(\"window.OFFICE_INFO.data_layer.onlineScheduler not found : using non-DL fallback\")\n                    clearInterval(schedulerInit);\n                    addEventListener(\"hashchange\", (event) =\u003e {\n                        if (!!document.location.hash.match(/#\\/\\d+\\/success/)) {\n                            sendBookingSuccess();\n                        }\n                    });\n                } else if (!!window.OFFICE_INFO \u0026\u0026 !!window.OFFICE_INFO.data_layer \u0026\u0026 !!window.OFFICE_INFO.data_layer.onlineScheduler) {\n                    clearInterval(schedulerInit);\n                    window.OFFICE_INFO.data_layer.onlineScheduler.push = function (x) {\n                        processSignal(x);\n                        return Array.prototype.push.apply(this, arguments);\n                    };\n                    // catch up if script loads after initial signals\n                    if (window.OFFICE_INFO.data_layer.onlineScheduler.length \u003e 0) {\n                        window.OFFICE_INFO.data_layer.onlineScheduler.forEach((x) =\u003e processSignal(x));\n                    }\n                }\n            }, 200);\n        }\n    } catch (err) {\n        console.error(\"Freshpaint\", err);\n    }\n})();","onPageChange":"","onIdentify":"","onTrack":"try {\n\tif (eventName.indexOf('Call: ') \u003e -1) {\n\t\tfreshpaint.track('callrail', eventProperties)\n\t}\n} catch (err) {}\n"},"consentManagementConfigs":{},"dest_info":[],"elementAttributesWhitelist":[],"enableIdentityMatching":false,"enable_impression_pixel_sync":true,"enabled_enhanced_events":["$scroll","$user_engagement","$video_engagement"],"event_defs":[{"id":"261f6ef8-468b-4e7c-98d2-fdc750193730","name":"All Links Click Tracking","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":"a[href]:not(a[href='#']):not(a[href=''])","negate":false}]},"description":"","snapshots":[{"name":"feature","value":"if (event.view.location.pathname.indexOf(\"/make-appointment\") \u003e -1 \u0026\u0026 !!event.target.closest(\"main\")) {\n  return \"SUPPRESS_EVENT\";\n} else if (event.target.closest(\"a\")?.className.indexOf(\"LocationDetails-reviews\") \u003e -1) {\n    return \"google rating\";\n} else if (event.target.closest(\"a\")?.href.indexOf(\"referral-hub.net\") \u003e -1) {\n    return \"provider referral\";\n} else return;","type":"js_code"},{"name":"click_location","value":"if (!!event.target.closest(\"header\")) {\n    return \"header\";\n} else if (!!event.target.closest(\"footer\")) {\n    return \"footer\";\n} else return \"body\";","type":"js_code"},{"name":"click_type","value":"return event.target.closest(\"a\")?.firstElementChild?.nodeName ?? event.target.closest(\"a\")?.nodeName;","type":"js_code"},{"name":"click_name","value":"if (event.target.closest(\"a\")?.href.toLowerCase().indexOf(\"/make-appointment\") \u003e -1) {\n    return \"booking cta\";\n} else if (event.target.closest(\"a\")?.href.toLowerCase().indexOf(\"tel:\") \u003e -1) {\n    return \"phone cta\";\n} else return;","type":"js_code"},{"name":"link_text","value":"if (!!event.target.closest(\"a\")?.innerText) {\n    return event.target.closest(\"a\")?.innerText;\n} else return;","type":"js_code"},{"name":"link_url","value":"return event.target.closest(\"a\")?.href;","type":"js_code"}],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"313e28be-841f-476e-ad0a-b65e1bb231bc","name":"Appointment Offerings","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Appointment Offerings","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"32be13a7-819e-4efd-9a5e-fba81ad914ef","name":"Button or Link Click","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":"a,button,[class*='button'],[class*='Button'],[class*='btn']","negate":false}]},"description":"","snapshots":[],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"e6bd98ae-a20b-4db6-8be5-a2823b0128f8","name":"Call: (517) 263-9022","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: (517) 263-9022","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"7dfb88c5-c890-4f5d-a4c8-6945d9163bc7","name":"Call: (574) 293-8744","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: (574) 293-8744","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"bfa4b1ec-7c15-4c6b-bc7a-eb1dd79b7e7d","name":"Call: 80629TODAY","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: 80629TODAY","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"3e4f9f06-05bb-41cf-903a-0c9a40a28b02","name":"Call: (843) 491-6444","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: (843) 491-6444","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"9690f95f-829c-42e0-b8e5-43a63a805bea","name":"Call: (904) 278-6229","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: (904) 278-6229","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"a4ac1196-b9a6-4050-9c7c-525d52200256","name":"Call: (920) 725-5584","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: (920) 725-5584","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"7679534e-bb51-4470-82c3-19818f9e36f4","name":"Call: Ad Extension","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Ad Extension","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"bdbde6fb-fd2e-43da-9bbd-552d1417a8b2","name":"Call: Adliance AdWords","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Adliance AdWords","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"5ff7ba27-acd7-469c-8045-b96a3a672e38","name":"Call: Audio ad","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Audio ad","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"91800115-0987-4b7f-ac08-74046caae0e7","name":"Call: Billboard","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Billboard","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"29b8a1e3-f0ee-4db2-ab9c-c1507f95834e","name":"Call: Brownstown OLV","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Brownstown OLV","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"ec3a313a-b320-4ee9-a220-2fe34949ad56","name":"Call: Brownstown OTT","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Brownstown OTT","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"3e840930-e0d2-420f-b41b-fa73e8a23b8b","name":"Call: Brownstown Website Pool","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Brownstown Website Pool","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"9b6ce318-de37-4ff1-8e5d-7110f29ee0c8","name":"Call: Facebook Ads Pool","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Facebook Ads Pool","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"098ff7e1-c883-460b-87b2-7c5ccc3ed11d","name":"Call: FB Click to Call","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: FB Click to Call","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"3227aa0e-1de2-4656-8a84-af498b06998c","name":"Call: GMB","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: GMB","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"a6d0075c-9b95-4058-87a5-b8fe50f5faff","name":"Call: GMB ","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: GMB ","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"55d48f42-eb28-41d3-b332-d04c73d17117","name":"Call: GMB Extension","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: GMB Extension","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"122f20f8-a995-4a5c-a63e-426ba308dcb7","name":"Call: GMB Number","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: GMB Number","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"0d541d01-0334-4ba6-b512-a3e5e45f0564","name":"Call: GMB Tracking","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: GMB Tracking","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"a136c6c2-5e2e-4a53-a3f7-698b487d52c5","name":"Call: Google Ad","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google Ad","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"1b52fe62-2a66-406a-b7d6-43159613da4c","name":"Call: Google Ad Extension","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google Ad Extension","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"96d8ea06-08a1-467c-8bd0-dd637334988c","name":"Call: Google Ad Extension 2","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google Ad Extension 2","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"d1f38350-968b-45c4-9bbe-045758be27b9","name":"Call: Google Ads","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google Ads","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"e0551afa-dd2b-49a7-a500-c87e30a2f437","name":"Call: Google Ads ","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google Ads ","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"0a97c962-9885-4a70-b5c5-6988ca0506d9","name":"Call: Google Ads Assets","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google Ads Assets","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"fa54f14b-f0ee-4297-a423-72aee16bb7e8","name":"Call: Google Ads Call Extension","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google Ads Call Extension","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"477eac2b-b8d5-42d9-91a9-5d1c337e901b","name":"Call: Google Ads Call Extension (Invisalign Promotion)","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google Ads Call Extension (Invisalign Promotion)","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"ddee1c23-8efe-479a-a358-198bfc7d6b20","name":"Call: Google ads Extension","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google ads Extension","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"0d9946bc-f879-4284-ac10-ec72d1ad03cf","name":"Call: Google Ads Extension","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google Ads Extension","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"132bbb45-da69-4988-87d4-99846168fec2","name":"Call: Google Local Services Ads","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google Local Services Ads","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"4f4d8633-f692-46c2-b7e2-a82aee12bce2","name":"Call: Google LSA","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google LSA","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"00498370-504b-4a45-bcc2-098aa2b30f25","name":"Call: Google LSAs","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Google LSAs","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"069fc860-4a19-4d19-b4cc-599c10419bdb","name":"Call: keyword pool","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: keyword pool","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"7332b211-4501-4612-b2c2-9bfb5de08461","name":"Call: Keyword Pool","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Keyword Pool","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"79664f1a-421b-42f6-a91a-f3197bb353d4","name":"Call: KLTY","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: KLTY","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"50f1bd38-4cb7-4c2b-9971-54b68340038b","name":"Call: Main  Number","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Main  Number","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"ef858a35-8da3-4ce3-8dbf-867105f0c934","name":"Call: Microsoft Ad Extension","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Microsoft Ad Extension","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"02208bfd-0892-40c1-ae41-d8676d7c4eb0","name":"Call: Microsoft Ads Call Extension","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Microsoft Ads Call Extension","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"66ad177b-045c-4799-bdbb-0e0305c92c9a","name":"Call: Number Pool ","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Number Pool ","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"fb50d477-bb88-43c4-86f1-37470d3d6062","name":"Call: OLV Ad","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: OLV Ad","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"b1676a11-a2c4-456a-89af-ff46c61ad26a","name":"Call: OOH","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: OOH","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"bba7b9b5-6de8-4f43-968d-a4e718591ad1","name":"Call: OTT Ad","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: OTT Ad","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"4765e199-4880-4cc5-a154-67b3c711dce4","name":"callrail","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"callrail","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"ed449e1f-d789-437d-8eb8-53d082d4694c","name":"Call: Streaming Audio","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Streaming Audio","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"4662096f-b9c9-4760-83d3-0254068ebdfc","name":"Call: Terraboost Kiosk","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Terraboost Kiosk","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"6e770c2c-9dd2-4a2e-abad-005170712776","name":"Call: Test Event","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Test Event","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"ada9f1ba-d839-44f6-9568-d50c46857170","name":"Call: WebMD Enhanced Profile","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: WebMD Enhanced Profile","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"fe362b28-06c5-4448-ba47-95c24e045b27","name":"Call: Website pool","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Website pool","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"5522c91e-be5b-4b1b-8f35-7a093a89e2e9","name":"Call: Website Pool","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Website Pool","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"0fdb2de2-3172-49b5-a6ac-67cf2876a876","name":"Call: Website Pool (Florida code)","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Website Pool (Florida code)","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"f92a71fe-9e87-44b2-bd47-48a6beecf3a6","name":"Call: Website Pool - Google Ads","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Website Pool - Google Ads","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"71b18bbf-ce28-46b6-8331-23155f622b6b","name":"Call: Website pool new DG","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Website pool new DG","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"5a267ccb-1673-4e55-80d1-4278f239daa1","name":"Call: West Highland Website Pool","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: West Highland Website Pool","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"02b797ba-a869-44c3-9205-9bb2ea259c5d","name":"Call: Willow Bend TV","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Willow Bend TV","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"e14f4a96-f151-497c-8f32-4e8666e5d038","name":"Call: Yelp Ads","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"call-rail","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Call: Yelp Ads","negate":false}]},"description":"","snapshots":[],"source":"call-rail","type":"call-rail","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"3ae3e78a-066e-4d70-98f0-7658c26afa84","name":"Click To Call","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":"[href^=\"tel\"]","negate":false}]},"description":"","snapshots":[{"name":"click_location","value":"if (!!event.target.closest(\"main\")) return \"main\";\nelse if (!!event.target.closest(\"header\")) return \"header\";\nelse if (!!event.target.closest(\"footer\")) return \"footer\";\nelse return \"other\";","type":"js_code"},{"name":"phone_number","value":"var link = event.target.closest(\"[href*='tel:']\").href.split(\"tel:\");\nreturn link[link.findLastIndex(x =\u003e x)];","type":"js_code"}],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"a751f4b2-48e7-49cd-968b-81ed4c038ab4","name":"Click to Call - OrahhCare","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":"[href*=\"tel\"]","negate":false},{"type":"prop_filter","op":"contains","prop":"$host","val":"orahhcare.com","negate":false}]},"description":"","snapshots":[],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"1bbdd081-5228-4c3a-8a30-71022eb4e4c6":true,"985118b8-dfa7-4550-9b80-c0240afade1c":true},"enabled_client_destinations":{}},{"id":"5b095384-cfeb-4cfe-8803-6028b8c5e695","name":"Feature Flags","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Feature Flags","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"e7649336-268e-4509-b30b-8b45bb80b52b","name":"File Download","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":"[href*='.pdf'],[href*='.doc'],[href*='.docx'],[href*='.xls'],[href*='.xlsx'],[href*='.ppt'],[href*='.csv'],[href*='.zip']","negate":false}]},"description":"","snapshots":[{"name":"file_name","value":"var name = event.target.getAttribute('href');\nreturn name.substr(name.lastIndexOf('/')+1);","type":"js_code"},{"name":"link_url","value":"var url = event.target.getAttribute('href');\nreturn url;","type":"js_code"},{"name":"file_extension","value":"var ext = event.target.getAttribute('href');\nreturn ext.substr(ext.lastIndexOf('.')+1);","type":"js_code"},{"name":"link_text","value":"var txt = event.target.innerText;\nreturn txt;","type":"js_code"}],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"64b14118-2f93-49d3-8d6b-0038d28ce887","name":"Form Start","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":"button.button.next:not([disabled])","negate":false},{"type":"prop_filter","op":"contains","prop":"$el_nested_text","val":"Your Info","negate":false}]},"description":"","snapshots":[{"name":"form_id","value":"var formId = event.target.closest('form').getAttribute('id');\nreturn formId;","type":"js_code"},{"name":"form_name","value":"var formName = event.target.closest('form').getAttribute('name');\nreturn formName;","type":"js_code"}],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"94ffb9c6-f273-49dc-9581-89791020d4c8","name":"Form Submit","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"pageview","negate":false},{"type":"prop_filter","op":"wildcard_matches","prop":"$pathname","val":"/make-appointment/","negate":false},{"type":"prop_filter","op":"contains","prop":"$current_url","val":"thank-you","negate":false}]},"description":"","snapshots":[{"name":"form_id","value":"var formId = event.target.closest('form').getAttribute('id');\nreturn formId;","type":"js_code"},{"name":"form_name","value":"var formName = event.target.closest('form').getAttribute('name');\nreturn formName;","type":"js_code"}],"source":"autotrack","type":"pageview","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"9e5ad96c-c87e-44e6-9b13-0f2b3b6a5077","name":"Google Rating Click","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":"[class$='-reviewsLink'], [class$='-reviewsLink'] *","negate":false}]},"description":"","snapshots":[],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"431bc9e4-a604-4609-baef-9245de2397c9","name":"HD TEST - Make Appointment CTA Clicked","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"HD TEST - Make Appointment CTA Clicked","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":true,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"94cd53e0-f9c7-45b1-a8ba-543e4942a05d","name":"Initial Chat Interaction","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Initial Chat Interaction","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"ab420009-e57a-43c1-a80e-38b59420b476","name":"Make an Appointment","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Make an Appointment","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"ee789ba4-060a-4a56-bdb0-59a30fb6f787","name":"Online Booking Success","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Online Booking Success","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"1bbdd081-5228-4c3a-8a30-71022eb4e4c6":true,"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"4ac47efe-2ec1-4d8d-9482-d3a92446554f":true,"9817dde5-da27-41d8-b754-dd813ee61665":true,"985118b8-dfa7-4550-9b80-c0240afade1c":true,"bcfad012-c653-4814-9481-69be5955a77e":true,"d89ed3c9-a815-49da-b165-adbe605971c9":true},"enabled_client_destinations":{}},{"id":"4c225129-49f5-4e57-a95e-e2cdd9a265b1","name":"Online Booking Success 50+","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Online Booking Success 50+","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"d24fc19a-43f8-4498-a8b8-e9ca497a32ca","name":"Online Booking Success - Doctor","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Online Booking Success - Doctor","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"24a73b80-1ff9-4d5c-95a3-8ccc000d90e2","name":"Online Booking Success - Hygiene","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Online Booking Success - Hygiene","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"4f36201d-108d-40f0-9faa-8eb02181817b","name":"Page View","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"pageview","negate":false},{"type":"prop_filter","op":"wildcard_matches","prop":"$pathname","val":"*","negate":false}]},"description":"","snapshots":[],"source":"autotrack","type":"pageview","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true},"enabled_client_destinations":{}},{"id":"62d367c8-573d-4d50-bab3-3b1af42882c1","name":"Page View","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Page View","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":true,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":true,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"d89ed3c9-a815-49da-b165-adbe605971c9":true},"enabled_client_destinations":{}},{"id":"6b925fd7-f534-4791-986d-31295cebfc7e","name":"Provider Referral Click","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":".specialty-referral a, .specialty-referral a *","negate":false}]},"description":"","snapshots":[],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"d8d55008-21fc-4810-b2e0-ca033ec2a34a","name":"Referral Form Download","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":"a","negate":false},{"type":"prop_filter","op":"=","prop":"$el_attr__href","val":"https://res.cloudinary.com/heartland-dental/documents/drw-referral.pdf","negate":false}]},"description":"","snapshots":[],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"73562293-29a5-42a7-a3cf-b0c018b096d3","name":"Schedule Appt CTA Click","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":"a[href*='make-appointment']","negate":false}]},"description":"","snapshots":[{"name":"link_classes","value":"return event.target.closest(\"a\").classList.toString().toLowerCase();","type":"js_code"},{"name":"link_url","value":"return event.target.closest(\"a\").getAttribute(\"href\");","type":"js_code"},{"name":"link_text","value":"return event.target.closest(\"a\").innerText.toLowerCase();","type":"js_code"},{"name":"link_region","value":"var x = event.target.closest(\"a\");\nif (!!x.closest(\".Hero\")) {\n    return \"hero\";\n  } else if (!!x.closest(\".Header-menu\")) {\n    return \"header menu\";\n  } else if (!!x.closest(\"header\")) {\n    return \"header\";\n  } else if (!!x.closest(\"footer\")) {\n    return \"footer\";\n  } else return \"other\";","type":"js_code"}],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"f9289d5b-2ccb-4dce-a1b4-78ce9e396588","name":"Schedule Appt CTA Click - OrahhCare","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":".button.cta[href*=\"/make-appointment\"]","negate":false},{"type":"prop_filter","op":"contains","prop":"$host","val":"orahhcare.com","negate":false}]},"description":"","snapshots":[],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"1bbdd081-5228-4c3a-8a30-71022eb4e4c6":true,"985118b8-dfa7-4550-9b80-c0240afade1c":true},"enabled_client_destinations":{}},{"id":"8a06d49d-f7b7-4a13-9dca-e3fe7bf16194","name":"Search","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Search","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true},"enabled_client_destinations":{}},{"id":"330f116f-74f2-499d-a8ec-bb0e14ada343","name":"Select Appointment","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Select Appointment","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"077775dc-bdb0-44d9-9512-8984481136bb","name":"Select Reason","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Select Reason","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true,"9817dde5-da27-41d8-b754-dd813ee61665":true},"enabled_client_destinations":{}},{"id":"4c23f408-8bbc-4b79-ac75-43b54dbe0d36","name":"Submit Zip - OrahhCare","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"click","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":"[aria-label=\"Submit Search\"]","negate":false},{"type":"prop_filter","op":"contains","prop":"$host","val":"orahhcare.com","negate":false}]},"description":"","snapshots":[],"source":"autotrack","type":"click","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{"37f688e0-8408-4c04-9d01-4bf06ebb799e":true},"enabled_client_destinations":{}},{"id":"deaa1043-2d9c-40c5-af2f-b5c2d62008ec","name":"Virtual Page View","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"Virtual Page View","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":true,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"31d4995e-34a4-4c73-9f8c-93eedb6442c7","name":"webhook_alert","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"mp_lib","val":"web","negate":false},{"type":"prop_filter","op":"=","prop":"$event_name","val":"webhook_alert","negate":false}]},"description":"","snapshots":[],"source":"manual_tracked","type":"manual_tracked","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}},{"id":"c0cd42f4-e475-4f1f-8a5d-5552cfb1e565","name":"zzz_test_mikes1","filter":{"type":"and","filters":[{"type":"prop_filter","op":"=","prop":"$event_type","val":"submit","negate":false},{"type":"prop_filter","op":"css_matches","prop":"$elements","val":"[class*=\"Complete Booking\"]","negate":false},{"type":"prop_filter","op":"contains","prop":"$pathname","val":"/make-appointment#/2/personal-details","negate":false}]},"description":"","snapshots":[],"source":"autotrack","type":"submit","segment_compatible":false,"is_starred":false,"deleted_at":null,"created_at":null,"updated_at":null,"created_by":null,"last_updated_by":null,"sql_query":null,"is_hidden":false,"tags":{},"enabled_dests":{},"enabled_server_destinations":{},"enabled_client_destinations":{}}],"networkCaptureConfig":{"allowlist":{"rules":[]}},"trackRequestType":"POST","transformation_sets":[{"destinationName":"Facebook Conversions API","eventDefId":"f9289d5b-2ccb-4dce-a1b4-78ce9e396588","eventType":"track","priority":4,"transformations":[{"operandValue":"event_action_11","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":"Facebook Conversions API","eventDefId":"a751f4b2-48e7-49cd-968b-81ed4c038ab4","eventType":"track","priority":4,"transformations":[{"operandValue":"event_action_10","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"261f6ef8-468b-4e7c-98d2-fdc750193730","eventType":"track","priority":4,"transformations":[{"operandValue":"click","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":null,"eventDefId":"4765e199-4880-4cc5-a154-67b3c711dce4","eventType":"track","priority":2,"transformations":[{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":"viant","eventDefId":"ee789ba4-060a-4a56-bdb0-59a30fb6f787","eventType":"track","priority":4,"transformations":[{"operandValue":"event_action_1","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":null,"eventDefId":"7679534e-bb51-4470-82c3-19818f9e36f4","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"96d8ea06-08a1-467c-8bd0-dd637334988c","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"9b6ce318-de37-4ff1-8e5d-7110f29ee0c8","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"91800115-0987-4b7f-ac08-74046caae0e7","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"bdbde6fb-fd2e-43da-9bbd-552d1417a8b2","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"6b925fd7-f534-4791-986d-31295cebfc7e","eventType":"track","priority":4,"transformations":[{"operandValue":"provider_referral_click","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":null,"eventDefId":"5a267ccb-1673-4e55-80d1-4278f239daa1","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"71b18bbf-ce28-46b6-8331-23155f622b6b","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"f92a71fe-9e87-44b2-bd47-48a6beecf3a6","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"0fdb2de2-3172-49b5-a6ac-67cf2876a876","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"5522c91e-be5b-4b1b-8f35-7a093a89e2e9","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"fe362b28-06c5-4448-ba47-95c24e045b27","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"ada9f1ba-d839-44f6-9568-d50c46857170","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"4662096f-b9c9-4760-83d3-0254068ebdfc","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"ed449e1f-d789-437d-8eb8-53d082d4694c","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"b1676a11-a2c4-456a-89af-ff46c61ad26a","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"66ad177b-045c-4799-bdbb-0e0305c92c9a","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"ef858a35-8da3-4ce3-8dbf-867105f0c934","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"50f1bd38-4cb7-4c2b-9971-54b68340038b","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"7332b211-4501-4612-b2c2-9bfb5de08461","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"069fc860-4a19-4d19-b4cc-599c10419bdb","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"00498370-504b-4a45-bcc2-098aa2b30f25","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"4f4d8633-f692-46c2-b7e2-a82aee12bce2","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"132bbb45-da69-4988-87d4-99846168fec2","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"0d9946bc-f879-4284-ac10-ec72d1ad03cf","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"ddee1c23-8efe-479a-a358-198bfc7d6b20","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"477eac2b-b8d5-42d9-91a9-5d1c337e901b","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"fa54f14b-f0ee-4297-a423-72aee16bb7e8","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"d1f38350-968b-45c4-9bbe-045758be27b9","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"1b52fe62-2a66-406a-b7d6-43159613da4c","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"a136c6c2-5e2e-4a53-a3f7-698b487d52c5","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"55d48f42-eb28-41d3-b332-d04c73d17117","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"a6d0075c-9b95-4058-87a5-b8fe50f5faff","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"3227aa0e-1de2-4656-8a84-af498b06998c","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"29b8a1e3-f0ee-4db2-ab9c-c1507f95834e","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"5ff7ba27-acd7-469c-8045-b96a3a672e38","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"a4ac1196-b9a6-4050-9c7c-525d52200256","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"9690f95f-829c-42e0-b8e5-43a63a805bea","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"3e4f9f06-05bb-41cf-903a-0c9a40a28b02","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"7dfb88c5-c890-4f5d-a4c8-6945d9163bc7","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"e6bd98ae-a20b-4db6-8be5-a2823b0128f8","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":null,"eventDefId":"0d541d01-0334-4ba6-b512-a3e5e45f0564","eventType":"track","priority":2,"transformations":[{"operandValue":"callrail","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"$current_url","operation":"replacePropertyKey","priority":6,"targetValue":"landing_page"}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"9e5ad96c-c87e-44e6-9b13-0f2b3b6a5077","eventType":"track","priority":4,"transformations":[{"operandValue":"google_rating_click","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"5b095384-cfeb-4cfe-8803-6028b8c5e695","eventType":"track","priority":4,"transformations":[{"operandValue":"feature_flags","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"313e28be-841f-476e-ad0a-b65e1bb231bc","eventType":"track","priority":4,"transformations":[{"operandValue":"appointment_offerings","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":"Webhooks","eventDefId":"31d4995e-34a4-4c73-9f8c-93eedb6442c7","eventType":"track","priority":4,"transformations":[{"operandValue":"attachments","operation":"replacePropertyKey","priority":6,"targetValue":"message"}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"8a06d49d-f7b7-4a13-9dca-e3fe7bf16194","eventType":"track","priority":4,"transformations":[{"operandValue":"search","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"73562293-29a5-42a7-a3cf-b0c018b096d3","eventType":"track","priority":4,"transformations":[{"operandValue":"click_location","operation":"replacePropertyKey","priority":6,"targetValue":"link_region"},{"operandValue":"appt_cta_click","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":"Google Ads Conversion API","eventDefId":"ee789ba4-060a-4a56-bdb0-59a30fb6f787","eventType":"track","priority":4,"transformations":[{"operandValue":"ctname","operation":"sendConstantProperty","priority":1,"targetValue":"\"event_action_2\""}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"94cd53e0-f9c7-45b1-a8ba-543e4942a05d","eventType":"track","priority":4,"transformations":[{"operandValue":"open_chat","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"value","operation":"sendConstantProperty","priority":1,"targetValue":"1"}]},{"destinationName":"Google AdWords New","eventDefId":"ee789ba4-060a-4a56-bdb0-59a30fb6f787","eventType":"track","priority":4,"transformations":[{"operandValue":"conversion_label","operation":"sendConstantProperty","priority":1,"targetValue":"\"AphWCNrPkOsYEIGjqqIC\""},{"operandValue":"event_action_1","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"user_type","operation":"replacePropertyKey","priority":6,"targetValue":"patient_type"}]},{"destinationName":"Bing Ads","eventDefId":"ee789ba4-060a-4a56-bdb0-59a30fb6f787","eventType":"track","priority":4,"transformations":[{"operandValue":"event_action_1","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"user_type","operation":"replacePropertyKey","priority":6,"targetValue":"patient_type"}]},{"destinationName":"Facebook Conversions API","eventDefId":"ee789ba4-060a-4a56-bdb0-59a30fb6f787","eventType":"track","priority":4,"transformations":[{"operandValue":"event_action_2","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"user_type","operation":"replacePropertyKey","priority":6,"targetValue":"patient_type"},{"operandValue":"email","operation":"replacePropertyKey","priority":6,"targetValue":"patient_email"},{"operandValue":"phone","operation":"replacePropertyKey","priority":6,"targetValue":"patient_phone"},{"operandValue":"first_name","operation":"replacePropertyKey","priority":6,"targetValue":"patient_firstName"},{"operandValue":"last_name","operation":"replacePropertyKey","priority":6,"targetValue":"patient_lastName"},{"operandValue":"dob","operation":"replacePropertyKey","priority":6,"targetValue":"patient_dob"}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"4f36201d-108d-40f0-9faa-8eb02181817b","eventType":"track","priority":4,"transformations":[{"operandValue":"page_view","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"077775dc-bdb0-44d9-9512-8984481136bb","eventType":"track","priority":4,"transformations":[{"operandValue":"select_reason","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"330f116f-74f2-499d-a8ec-bb0e14ada343","eventType":"track","priority":4,"transformations":[{"operandValue":"select_appointment","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"ab420009-e57a-43c1-a80e-38b59420b476","eventType":"track","priority":4,"transformations":[{"operandValue":"make_appointment","operation":"replaceName","priority":0,"targetValue":null}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"3ae3e78a-066e-4d70-98f0-7658c26afa84","eventType":"track","priority":4,"transformations":[{"operandValue":"click_to_call","operation":"replaceName","priority":0,"targetValue":null},{"operandValue":"scheduling_phone","operation":"replacePropertyKey","priority":6,"targetValue":"phone_number"},{"operandValue":"value","operation":"sendConstantProperty","priority":1,"targetValue":"1"}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":null,"eventType":"track","priority":3,"transformations":[{"operandValue":"page_title","operation":"sendBuiltinProperty","priority":2,"targetValue":"$title"}]},{"destinationName":"Google Analytics 4 Proxy","eventDefId":"ee789ba4-060a-4a56-bdb0-59a30fb6f787","eventType":"track","priority":4,"transformations":[{"operandValue":"online_booking_success","operation":"replaceName","priority":0,"targetValue":"true"},{"operandValue":"conversion","operation":"sendConstantProperty","priority":1,"targetValue":"true"},{"operandValue":"value","operation":"sendConstantProperty","priority":1,"targetValue":"1"}]}],"version":7,"webSDKConfig":{"env_id":"dd3ac6a7-a042-4264-ba8a-40d6b33355ec","cross_domain_tracking":{"domains":["104thfamilydental.com","1stadvantagedentalamherst.com","1stadvantagedentalbethlehem.com","1stadvantagedentalcliftonpark.com","1stadvantagedentalcolonie.com","1stadvantagedentalglenville.com","1stadvantagedentallatham.com","1stadvantagedentalniskayuna.com","1stadvantagedentalqueensbury.com","1stadvantagedentalsaratogasprings.com","21stspringfield.com","360dentaltulsa.com","370dentalcare.com","83rdmarketplacedentalcare.com","8to8familydentalcare.com","9thavedentalcare.com","aberdeendentalcare.com","absolutedentalcareva.com","accuradentalcare.com","adamsdairyfamilydentalcare.com","adamsdentalcenter.com","adcchandler.com","adcorthoglendale.com","adcscottsdale.com","adcstreetsboro.com","adcsuncity.com","adctucsoneastcarondelet.com","adctucsonnorthcampbell.com","adctucsonsouthmission.com","adctucsonwestina.com","addisoncenterdentalcare.com","admiraldentalcare.com","adsfranklin.com","adsmayfair.com","adsstoneridge.com","advanceddentalcaretlh.com","advanceddentalconcept.com","advanceddentalhealthcenter.com","advanceddentistryatwindhaven.com","advanceddentistryhomosassa.com","advanceddentistrylecanto.com","advanceddentistryschaumburg.com","aestheticdentalinnovationstx.com","afdbartlett.com","afdcollierville.com","afdcordova.com","afdeastmemphiskirby.com","afdgermantown.com","afdkingstonpike.com","afdmemphispoplar.com","afdmountaingrove.com","afdolivebranch.com","afdraleigh.com","afdsouthaven.com","affordabledentistrybloomington.com","affordabledentistryrockford.com","afiniadentaleastgate.com","afiniadentalmason.com","afiniadentalorchardhill.com","afiniadentalwestchester.com","airlineroaddentalcare.com","albertvillefamilydental.com","alegredentalbosque.com","alegredentalpetroglyphs.com","alfaindentistry.com","alliancedentalcenter.org","alliancedentalgroup.com","allisonparkdentistry.com","allsmilesnw.com","americanfamilydental.com","americasfamilydentaltomballtexas.com","anderson-dental.com","andersonscdentists.com","andersonsmiles.com","annapolisdentistdds.com","apalacheefamilydental.com","applevalleyfamilydentistrymn.com","arborlakesdental.com","archdentalofmanhattan.com","areasontosmileboise.com","armedforcesdentalcenter.com","arnolddentalcenter.com","arrowheadcreeksidedental.com","artesiandentalonlaceyblvd.com","artisticsmilesnwa.com","artisticsmilesofga.com","artsdistrictdentalga.com","ashbyparkrestorative.com","aspenviewdental.com","atlanticfamilydentalfl.com","audubondentalcenter.com","audubondentalgroupmemphis.com","austellfamilydentalcare.com","autumndentalnc.com","avenuedentalpa.com","aviddentallindenhurst.com","avilesdentalcare.com","avondentalcare.com","badgerhillsdentalcare.com","bakerroaddentalcare.com","baldwinparkfamilydental.com","balharboursmiles.com","banyandentalcarenaples.com","barracksroaddentalcare.com","barrelandvinedentalcare.com","bartlettdentalassociates.com","bartramfamilydental.com","bayarbordentalcare.com","bayareadentalcaretx.com","bayberrydental.com","baycreekdentalcarega.com","baysidesmilesdentalcare.com","baytreefamilydental.com","bayviewdentalcarefl.com","beach-dental.com","beachsidefamilydentalcare.com","beaconhillfamilydentistry.com","bearbranchdental.com","bearcanyondental.com","beardstownfamilydental.com","beautifulsmilesbydesign.com","beavercreekcommonsdental.com","bedfordavenuedentistry.com","bedfordpasmiles.com","belairdentalassociates.com","bellairebaydentalcare.com","bellepointdental.com","belltowerdentalcare.com","beltonfamilydentalcare.com","berkshiredentalgroup.com","bernwoodparkdentalcare.com","berrygooddental.com","bickfordfamilydentalcare.com","bigbenddentalcare.com","biltmoredentistry.com","blackmanfamilydental.com","blackmountaindentalcare.com","bloomingdaledentalcarefl.com","blossomparkdentalcare.com","bluebonnetdentalcare.com","bluebonnetdentalcaretx.com","blueherondentalcare.com","bluehorizondentalcare.com","bluemountaindentalcare.com","blueridgefamilydentistry.com","bluespringdentalcare.com","bocaparkdentallasvegas.com","boggycreekdentalcare.com","bonitadentalarts.com","bonitaesterodental.com","bouldercorridordentalcare.com","bouldercountysmiles.com","boulevardplacedentalcare.com","bowlinggreenfamilydental.com","boyntonbeachpremierdental.com","brackenhilldentalcare.com","bradentonsmilesdentistry.com","bradfordvilledentalcare.com","brazosfamilydentistry.com","breakfastpointdentalcare.com","bretonbaydentistry.com","briarwoodparkdentalcare.com","brightonparkdentalcare.com","bristolheightsdental.com","broadlandscompletedental.com","broadmoordental.com","broadstreetdc.com","broadwaydentalarts.com","brookschooldentalcare.com","brookslakedental.com","brownsborostationdentalcare.com","brownstowndentalcare.com","buckcreekfamilydental.com","budafuldentalcare.com","buffalovalleydentalcare.com","bullfrogcreekdentalcare.com","burtonsvilledentalcare.com","buttermilkdentistry.com","byronfamilydentalcare.com","cambridgefamilydentistry.com","cambyfamilydentistry.com","caminorealdentaltx.com","camphilldentist.com","caneridgedentist.com","cannoncrossroadsdentalcare.com","canoecreekfamilydental.com","canyoncreekfamily.com","canyonspringsfamilydental.com","canyonviewdentalcare.com","capegirardeaudentalcare.com","capesmilesdentistry.com","capitalavenuedentalcare.com","capitalsmiles.com","capstonedentalnc.com","cardinaldentalcaretx.com","carillonparkdental.com","carnesdental.com","carolinadentalgroup.com","carolinagentledental.com","cartervilledental.com","carusatascocita.com","carusbelton.com","carusbrodielane.com","caruscedarpark.com","carusgeorgetownuniversity.com","carusgeorgetownwildwood.com","carushutto.com","caruskilleen.com","caruskingwood.com","carusnorthaustinmedicalcenter.com","carusorthoatascocita.com","carusorthokilleen.com","carusorthoroundrock.com","carusroundrock.com","carussalado.com","carussanmarcos.com","carussmithville.com","carussouthcentral.com","carusspringkuykendahl.com","carussurgicalcenterroundrock.com","carustemple.com","caruswoodlands.com","casadydentalcare.com","casadysquareorthodontics.com","cascadedentallongview.com","catawbaspringsdentalcare.com","catoctincornerdentistry.com","cdatpaddockpark.com","cdbelleview.com","cdocalasouthwest.com","cdofindianharbourbeach.com","cdofmeadowcrest.com","cdofmerrittisland.com","cdofsebastian.com","cdofsuntree.com","cdofviera.com","cdofwilliston.com","cdsebastianhighway.com","cdserviceseastgate.com","cdservicesedgewoodky.com","cdservicesfairfield.com","cdservicesflorenceky.com","cdserviceslanden.com","cdservicesmilford.com","cdserviceswestchester.com","cedarbenddentalcare.com","cedarcitydentalcare.com","cedarcreekdentalcare.com","cedarfamilydentistry.com","cedarlakesdentalcare.com","cedarviewdentalcare.com","centerforcosmeticandfamilydentistry.com","centerplacedentalcare.com","centerstreetfamilydentistry.com","centralavenuedentalcare.com","centralillinoisoral.com","centralinperio.com","certusdentalcare.com","champaigndentalgroup.com","championsgatedentistry.com","chandlersmiles.com","chapelhillfamilydentistrywa.com","chapelhillfcd.com","charlestoncosmeticdentistry.com","charmingsmilesofnaples.com","chdcranberrycommons.com","chdindiana.com","chdjohnstownrichland.com","chdmccandlesscovenant.com","chdmonroeville.com","chdmtpleasant.com","chdmurrysville.com","chdpittsburghshadyside.com","chdpittsburghsqhill.com","chdwarrenstreet.com","chehalisdentalcare.com","cherrycreekdentalcare.com","cherrywaydental.com","chesapeakecompletedentistry.com","chesleyfamilydental.com","chesterfieldparkdental.com","chiquitadentalcare.com","choosemoderndentistry.com","churchcreekdentalcare.com","churchvillefamilydentistry.com","citrusfallsdentalcare.com","citrusgrovedentalcare.com","citrustowerfamilydental.com","citysedgedentalcare.com","citysmilesdc.com","clairmontsmiles.com","clarksondentalco.com","clarksvillefamilydental.com","clearlakecitydentistry.com","clermontendodontics.com","clovercreekdentalcare.com","coalcreekfamilydental.com","coalmountaindentalcare.com","coastalcarolinadentalcare.com","coastalcosmeticdental.com","coastaldentalcareofmilford.com","coconutcreekwinningsmiles.com","coconutpointdentalcare.com","coddlecreekdentalcare.com","colbycrossingdentalcare.com","collegeavedental.com","colonialdrivepcd.com","coltoncompletedental.com","columbiaprodental.com","columbinedental.com","columbuspikedentalcare.com","comfortablecareclark.com","comfortablecaresouthtrail.com","comfortablecarevenice.com","comfortdentistsofplantation.com","completedentalatlakeside.com","completedentalcareatwestbird.com","completedentalcarefl.com","completedentalcaremansfield.com","completedentalcareofnaples.com","completedentalcarerichmond.com","completedentalcaresouthflorida.com","completedentallakecity.com","completedentalofcountryside.com","completedentalofeaston.com","completedentalofyork.com","completedentistryestero.com","completefamilydentistryelkhart.com","completesmilestx.com","comprehensivedentalcarefl.com","comprehensivedentalnc.com","concordpointfamilydentistry.com","concoursedentalcare.com","connertondentalcare.com","conversedentist.com","cookcrossingdentalcare.com","coolidgecourtdentalcare.com","copdo.com","copperfieldcrossingtx.com","copperheaddentalcare.com","coralridgedentalarts.com","cornerlakefamilydental.com","cosmeticdentistbaltimore.com","cosmeticdentistryofnaples.com","cosmeticdentistrytampabay.com","cottonridgedentalcare.com","countryclubdentalcareil.com","countrysidedental.com","courseyfamilydental.com","creatingsmilescfd.com","creativesmileschampaign.com","creativesmilesdentalcare.com","creativesmilesgreenfield.com","creativesmilesmurfreesboro.com","creativesmileswinghaven.com","creeksidecommonsdentistry.com","creeksidedentalcaretx.com","creekviewdentalcare.com","creekwooddental.com","crescenthilldentalcare.com","crescentparkdentalcare.com","crestwooddentalcare.com","croftondentalsuite.com","crosscreekdentalcare.com","crosspointfamilydental.com","crossroadsdentaldallas.com","crossroadsdentistrytn.com","crossroadsfamilydentalcare.com","crosstimbersfamilydental.com","crosswaterdentalcare.com","crowfielddental.com","crownpointdentalcaresalem.com","crowvalleydental.com","crystallakedentalassociates.com","cumberlandriverdentalcare.com","cypresscreekdentalcarefl.com","cypressdentalexcellence.com","danieladental.com","darringtondentalcare.com","darwinfamilydentalcare.com","daviedental.com","ddsassociates.com","debarydentalcare.com","deercreekdental.com","deercreekfamilydentalcare.com","deervalleyfamilydentistry.com","deerwoodorthoappleton.com","deerwoodorthobayshore.com","deerwoodorthofranklin.com","deerwoodorthogreenbay.com","deerwoodorthostoneridge.com","defiancecenterfordentistry.com","dekalbdentalgroup.com","delanydentalcare.com","dellagiodentist.com","denarodentalcare.com","denhamspringsdentalcarela.com","dentalartsofaurora.com","dentalartsofgettysburg.com","dentalartsofminneapolis.com","dentalartsofoliversprings.com","dentalartsofpalmharbor.com","dentalartsofsayville.com","dentalartsofsurprise.com","dentalassociatesofgrovetown.com","dentalassociateswaldenwoods.com","dentalcareataddisonplace.com","dentalcareatalamancecrossing.com","dentalcareatarcadiafarms.com","dentalcareatautumnrun.com","dentalcareatavamarcrossing.com","dentalcareatbabcockranch.com","dentalcareatbannermanvillage.com","dentalcareatbarrowcrossing.com","dentalcareatbartramcrossings.com","dentalcareatbelmont.com","dentalcareatbentslanding.com","dentalcareatberewick.com","dentalcareatbrushprairie.com","dentalcareatcartwheelbay.com","dentalcareatcascades.com","dentalcareatcaseykey.com","dentalcareatcedarbreaks.com","dentalcareatcedarcrossing.com","dentalcareatchampionscrossing.com","dentalcareatchancellorcrossing.com","dentalcareatclearcrossings.com","dentalcareatcollegestation.com","dentalcareatcolumbuscrossing.com","dentalcareatcompasscreek.com","dentalcareatcompasspark.com","dentalcareatcosbyvillage.com","dentalcareatcoventry.com","dentalcareatcrosspointe.com","dentalcareatcrystalpark.com","dentalcareateaglelanding.com","dentalcareateldersburgcommons.com","dentalcareatelliscrossing.com","dentalcareatestrellacrossroads.com","dentalcareatfishhawkcommons.com","dentalcareatforestcrossing.com","dentalcareatfoxbank.com","dentalcareatgastonday.com","dentalcareatgatewaycommons.com","dentalcareatgordencrossing.com","dentalcareatgrandeoak.com","dentalcareatgreenvalley.com","dentalcareatharriscrossing.com","dentalcareathudsonstation.com","dentalcareathuntersgreen.com","dentalcareatibis.com","dentalcareatjohnslake.com","dentalcareatjordanranch.com","dentalcareatlakeingram.com","dentalcareatlakemoorcommons.com","dentalcareatlakeshores.com","dentalcareatlakewoodwalk.com","dentalcareatlandstarcommons.com","dentalcareatledgerock.com","dentalcareatlelandtowncenter.com","dentalcareatlittleriver.com","dentalcareatlivingstonmarketplace.com","dentalcareatloughmancrossing.com","dentalcareatmaderavista.com","dentalcareatmagnoliaplaza.com","dentalcareatmarleysquare.com","dentalcareatmeadowridge.com","dentalcareatmidpoint.com","dentalcareatmidtown.com","dentalcareatmillcreek.com","dentalcareatmiramesa.com","dentalcareatmonumentridge.com","dentalcareatmullinscolony.com","dentalcareatnapleslakes.com","dentalcareatnorthcreek.com","dentalcareato-townwest.com","dentalcareatoakmont.com","dentalcareatpalladium.com","dentalcareatpalmerranch.com","dentalcareatplainfieldcrossing.com","dentalcareatplantationsquare.com","dentalcareatpleasanthill.com","dentalcareatpoint24.com","dentalcareatpolarispointe.com","dentalcareatprairiecrossing.com","dentalcareatprestonlegacy.com","dentalcareatprettypond.com","dentalcareatprovidence.com","dentalcareatquailhollow.com","dentalcareatreedscrossing.com","dentalcareatriverlights.com","dentalcareatriverridge.com","dentalcareatrosecreek.com","dentalcareatroyalcreek.com","dentalcareatsayebrook.com","dentalcareatseaplum.com","dentalcareatseminoleridge.com","dentalcareatsierranorth.com","dentalcareatsouthcommons.com","dentalcareatsouthcrest.com","dentalcareatstarkeyranch.com","dentalcareatsummerfieldcrossing.com","dentalcareattecheridge.com","dentalcareatthecourtyards.com","dentalcareatthecrossroads.com","dentalcareatthefountains.com","dentalcareatthelanding.com","dentalcareatthemark.com","dentalcareattheplex.com","dentalcareattowncenter.com","dentalcareattreatyoaks.com","dentalcareattrinitylakes.com","dentalcareattriplecrown.com","dentalcareattumbleweedpass.com","dentalcareatvenicegardens.com","dentalcareatverandah.com","dentalcareatverona.com","dentalcareatvillagewalk.com","dentalcareatwardlake.com","dentalcareatwaterset.com","dentalcareatwellenpark.com","dentalcareatwestport.com","dentalcareatwestridge.com","dentalcareatwestsideshoppes.com","dentalcareatwhiteeaglefl.com","dentalcareatwoodlandcrest.com","dentalcarebeyondsmiles.com","dentalcarecamden.com","dentalcareofaloma.com","dentalcareofanthemcrossroads.com","dentalcareofbellevue.com","dentalcareofbixby.com","dentalcareofboilingsprings.com","dentalcareofbonaire.com","dentalcareofbraselton.com","dentalcareofbrooklynpark.com","dentalcareofcanby.com","dentalcareofcitrusgroves.com","dentalcareofcolumbia.com","dentalcareofcookeville.com","dentalcareofcrossville.com","dentalcareofdavenport.com","dentalcareofdeltona.com","dentalcareofeagleridge.com","dentalcareofeaglevalley.com","dentalcareofedmond.com","dentalcareofelkton.com","dentalcareoffairfield.com","dentalcareoffatevillage.com","dentalcareoffranklintownship.com","dentalcareoffuquayvarina.com","dentalcareofgrafton.com","dentalcareofgrandview.com","dentalcareofhampstead.com","dentalcareofhampton.com","dentalcareofharrisburg.com","dentalcareofhendersonville.com","dentalcareofhoover.com","dentalcareofhuntley.com","dentalcareofhuntsville.com","dentalcareoflakewylie.com","dentalcareoflehighacres.com","dentalcareoflightfoot.com","dentalcareofmenomoneefalls.com","dentalcareofminneola.com","dentalcareofminooka.com","dentalcareofmtvernon.com","dentalcareofnorman.com","dentalcareofnorthfortmyers.com","dentalcareofpatchogue.com","dentalcareofpearland.com","dentalcareofpecangrove.com","dentalcareofpewaukee.com","dentalcareofpflugerville.com","dentalcareofpowell.com","dentalcareofprincefrederick.com","dentalcareofraymore.com","dentalcareofriverbend.com","dentalcareofrolesville.com","dentalcareofroundlakebeach.com","dentalcareofsalem.com","dentalcareofsanford.com","dentalcareofsapulpa.com","dentalcareofshelbyville.com","dentalcareofsherrillsford.com","dentalcareofsolon.com","dentalcareofsouthaiken.com","dentalcareofsouthelgin.com","dentalcareofsouthernpalm.com","dentalcareofsouthpuyallup.com","dentalcareofspringhill.com","dentalcareofstjoseph.com","dentalcareofveteransparkway.com","dentalcareofvieraeast.com","dentalcareofwaukesha.com","dentalcareofwendellfalls.com","dentalcareofwestmelbourne.com","dentalcareofwestminster.com","dentalcareofwestoverhills.com","dentalcareofwoodloch.com","dentalcareon4thand4th.com","dentalcareon7.com","dentalcareonashleycircle.com","dentalcareonballentrae.com","dentalcareonbryant.com","dentalcareoncauseway.com","dentalcareoncookingham.com","dentalcareoncorkscrew.com","dentalcareoneastmain.com","dentalcareonfennell.com","dentalcareonfernwooddrive.com","dentalcareonfrontierparkway.com","dentalcareonhollyhill.com","dentalcareonlonemountain.com","dentalcareonlongleaf.com","dentalcareonmacon.com","dentalcareonmcclain.com","dentalcareonnorthavenue.com","dentalcareonparkview.com","dentalcareonportroyal.com","dentalcareonquebec.com","dentalcareonsanantonio.com","dentalcareonsmileway.com","dentalcareonstanhaven.com","dentalcareontuckerton.com","dentalcareonwatson.com","dentalcareonyellowbluff.com","dentalcareoysterpoint.com","dentalcares.com","dentalcarescordova.com","dentaldesignslakeland.com","dentaldesignslakesidevillage.com","dentaldesignslasvegas.com","dentaldesignsofglenburnie.com","dentaldesignsonpoplar.com","dentaldesignsvancouverwa.com","dentalgroupbourbonnais.com","dentalgroupcarbondale.com","dentalgrouprockford.com","dentalgroupspringfield.com","dentalpluslogansport.com","dentalprofessionalsplc.com","dentalsolutionsofmiami.com","dentalsolutionsonline.com","dentalstudiowest.com","dentalvillagesierravista.com","dentist-in-tulsa.com","dentistarkadelphia.com","dentistgainesvilletx.com","dentistinclearwater.com","dentistinftmyers.com","dentistingainesvillega.com","dentistinjoplin.com","dentistinlawton.com","dentistinnaples.com","dentistnapervilleil.com","dentistnavarre.com","dentistpanamacitybeach.com","dentistplymouthnh.com","dentistquincy.com","dentistryathagerstown.com","dentistryatsaddlecreek.com","dentistryatsmithvillemarketplace.com","dentistryforhealthomaha.com","dentistryofmiami.com","dentistryon77th.com","dentistryonwalnutgrove.com","dentistrypluslexington.com","dentistsinwinchester.com","dentiststrongsville.com","desertsmilesdentistry.com","desertspringsdental.com","destindentist.com","devinedentalcare.com","devinedentistry.com","devinedentistrysc.com","dexterfamilydentists.com","dfdentistry.com","diamondvalleydental.com","dicksondentalcare.com","discoverydentalcarefl.com","distinctivedentalsolutions.com","distinctivedmd.com","dixonparkdental.com","dogwooddentalcarecarbondale.com","dorseyfamilydental.com","downtowndentaljax.com","drakeshiredental.com","drchrisharman.com","drdanielharper.com","dreamteamdentistryfl.com","drgodet.com","driftwooddentalcarefl.com","drpaulkinsey.com","drterrizweberdds.com","drvanslate.com","drycreekdentalcare.com","dublindentalcenterpa.com","duckprairiedentalcare.com","ducktowndentalcare.com","duggapfamilydentistry.com","dunedindentalcare.com","durbincreekdentalcare.com","duvallfamilydental.com","eaglecreekdental.com","eagleslandingdentalcare.com","easleydentist.com","eastavenuedentalcare.com","eastbrewsterdental.com","eastbroadfamilydentistry.com","eastcreekdentalcare.com","eastcressdentalcare.com","eastlakesdentalcare.com","eastmaindentalpa.com","eastridgedentalcare.com","eastrochesterfamilydentistry.com","eastsandidgedental.com","eastsidegeneraldentistry.com","eastviewfamilydentalne.com","edgewaterfamilydental.com","edgewoodfamilydental.com","edgewoodfamilydentist.com","edisonfamilydentalcare.com","effinghamdentalgroup.com","electriccitydentalcare.com","embreymilldentalcare.com","emeraldwatersdentalcare.com","empireoms.com","enclavedentalcare.com","ensodentistry.com","essingtondental.com","eugenedentalassociates.com","evansvillefamilydental.com","eventidefamilydentistry.com","exquisitedentalcareoh.com","fairchildoaksdentalcare.com","fairfieldfamilydentaloh.com","fairviewdentalcolumbia.com","fairwaydentalcarefl.com","falconpointdentalcare.com","familycaredentistryky.com","familydentalabq.com","familydentalatalafayacrossings.com","familydentalatdublinheights.com","familydentalatwildlight.com","familydentalcarechampaign.com","familydentalcareeastpeoria.com","familydentalcareoffitchburg.com","familydentalcareofmedina.com","familydentalcareofmuskego.com","familydentalcareofolathe.com","familydentalcareofowasso.com","familydentalcareofpowdersville.com","familydentalcareofrogers.com","familydentalcareofsmyrna.com","familydentalcareofwarrenton.com","familydentalcareonwashington.com","familydentalcaresouthbradenton.com","familydentalcaresouthlakeland.com","familydentalcaresycamore.com","familydentalfortmyers.com","familydentalofbelair.com","familydentalofcanton.com","familydentalofcedarpark.com","familydentaloflexington.com","familydentalofseabrook.com","familydentalofthornton.com","familydentalonlouetta.com","familydentalorlandpark.com","familydentalshawnee.com","familydentalwilmington.com","familydentistryarnold.com","familydentistryatriversidecrossing.com","familydentistryatsouthwood.com","familydentistryofellisville.com","familydentistryoforangegroves.com","familydentistryofpoplarbluff.com","familydentistryofshortpump.com","familydentistryofyukon.com","familydentistryonfreedom.com","familyoralhealth.com","farabeefamilydentalcare.com","farmingtondentalcare.com","farmingtonvillagedentalcare.com","farrowparkwaydentalcare.com","fcdentalcarechambersburg.com","fcdentalcarewaynesboro.com","fdappleton.com","fdashburn.com","fdashburnortho.com","fdbethesda.com","fdbrookfield.com","fdbrowndeer.com","fdclarksvilleortho.com","fdcolumbiaclarksville.com","fddelafield.com","fdeldersburgortho.com","fdeldersburgsykesville.com","fdforesthome.com","fdfranklin.com","fdglendale.com","fdgreenbay.com","fdhalescorners.com","fdjanesville.com","fdkenosha.com","fdmadisoneast.com","fdmadisonwest.com","fdmenomoneefalls.com","fdmequon.com","fdmukwonago.com","fdmuskego.com","fdnewberlin.com","fdoakcreek.com","fdoconomowoc.com","fdracine.com","fdreston.com","fdsunprairie.com","fdwaldorf.com","fdwaldorfortho.com","fdwaukeshastoneridge.com","fdwestallis.com","festusdental.com","firstcoastsmiles.com","firstimpressionssmilecenter.com","fishkillsmiles.com","fivepointsdentalal.com","florencefamilydentistryky.com","flowerscrossroadsdental.com","flsmiles.com","flynnorthodontics.com","foleydentaloffice.com","follyroaddentalcare.com","foresidefamilydental.com","forestvilleroaddentalcare.com","forthamerdentalcare.com","fortsmithdentist.com","fortsmithsmiles.com","fortworthsmilestudio.com","fortworthtxdentist.com","forumdentallaurie.com","forumdentallebanon.com","forumdentalrolla.com","forumdentalstlouis.com","forumdentalstrobert.com","fountainhillsdentalcare.com","fountainhillsdentistry.com","fourlakesfamilydental.com","foxgardendentalcare.com","foxlakedentalcare.com","foxwooddentalcare.com","franklindentalcare.com","friendlydentalmn.com","friendshipdentalcare.com","frontstreetfamilydentistry.com","fultonfamilydentalcare.com","fuquayfamilydentistry.com","gainesvillefamilydentalcare.com","gainesvillesmilesdentalcare.com","gallatindentalcare.com","galleriadentalhenderson.com","gankindental.com","garnersferrydentistry.com","gatewaydentalcarewi.com","gatewayofnaplesdental.com","gatewaysmilesdentistry.com","gattisschoolroaddental.com","gavilanpeakdentalcare.com","geistdentalcare.com","gentledentistrycarrollton.com","georgiadentalcenter.com","gerardvalentinidds.com","germantowndentalcare.com","getahealthysmile.com","ggsdentalcenter.com","gibsoniadentalcare.com","gildercreekdentalcare.com","gilmoredentalcare.com","glenburniedentalcare.com","glencarbonfamilydentistry.com","glendaleaestheticdentistry.com","glistendental.com","gluckstadtfamilydentistry.com","granburydentalcenter.com","grandcypressdentalcare.com","granddentistryfl.com","grandlelydentalcare.com","grandmapledentalcare.com","grandovervillagedentalcare.com","grandridgedental.net","grandtraversedentalcare.com","greaterpittsburghdentalgroup.com","greatmillsfamilydental.com","greatoaksdentalcare.com","greatplainsfamilydentistryenid.com","greatsouthernsmiles.com","greenhillsfamilydentistry.com","greenmountfamilydentistry.com","greensburgdentalcare.com","greenstreetdentalcare.com","greenvalleydentalcaretx.com","greenvillagedentalcare.com","greenwaycenterdentistry.com","greenwoodfamilydental.com","greerfamilydentalcare.com","grmetrodental.com","grovelanddentalcare.com","gumspringsdentalcare.com","gwinnettdentist.com","hallscrossroadsdentalcare.com","hamlingrovesdentalcare.com","hammockgardensdentalcare.com","hammondfamilydental.com","hamptonlakedentalcare.com","hanburydentalcare.com","hanfieldvillagedentalcare.com","happyvalleydentistry.com","harbisonhilldentistry.com","harborpointdentalcare.com","harpethdentalcare.com","harrisonbridgedentalcare.com","harrisonburgsmilemakers.com","hartlandfamilydentalcare.com","hartsvilledentistsc.com","havensdentalcare.com","hawkesbaydentalcare.com","haynesbridgedentalcare.com","healthysmilesdental.net","heartlandcrossingdentalcare.com","heartlandfamilydentalcare.com","heartoftexasperioandimplantology.com","heightsdc.com","helenaroaddentalcare.com","heritagedental.com","heritagedentalgroup.com","hernandosmiles.com","heronspringsdentalcare.com","herowaydentalcare.com","hersheydentalgroup.com","hersheyplazadental.com","hesselparkdentistry.com","hewlettdental.com","hickmanmillsdentalcare.com","hickorycommonsdentalcare.com","hickorycreekfamilydentistry.com","hickorytreedentalcare.com","hiddencreekdentalcare.com","hiddencreekpremierdentistry.com","hiddenmeadowsdentalcare.com","highbrookwaydentalcare.com","highlandavedentistrybc.com","highlandcitydentalcare.com","highlandilfamilydentistry.com","highpointedentalcare.com","hightidesdentalcare.com","highwaykdentalcare.com","highwinddentalcare.com","hillviewfamilydental.com","hollywoodparkdental.com","holmestowncommonsdentalcare.com","honeygrovefamilydentistry.com","hoptowndental.com","horizondentalcenter.com","houghtonfamilydentalcare.com","howellbranchdentalcare.com","huesdentalgroup.com","hunterdentistry.com","idealdentistryfl.com","ifdww.com","imperialdentalbonita.com","imperiallakesdentalcare.com","implantdds.com","implantdentisttampa.net","independencedentalcare.com","independencefdc.com","indianapolisdentaldesigns.com","indianlakefamilydental.com","indianlanddentalcare.com","indianriverdentistry.com","innerharbordental.com","innovativedentalcareofmuncie.com","innovativedentistryofrockville.com","innovativeorthocenters.com","innovativepediatricdentistry.com","inspiredentalapex.com","inspiredentalcary.com","inspiredentalchapelhill.com","instylesmiles.com","integrateddentistry.com","ironrosedentalcare.com","irwinminidentalimplants.com","islandsidedentalcare.com","islandwalkdentalcare.com","ivycreekdentalcare.com","jacarandadentalcare.com","jacksondentaltampa.com","jamesacrouchdds.com","jameswmassa.com","jandadentistry.com","janesvillefamilydentalcare.com","jbdentalcare.com","johnscreekdentalexcellence.com","junctiondentalcareil.com","jungermanndentalcare.com","jwvalentinedmd.com","kandordental.com","kathleendentalcare.com","katyfamilydentists.com","kelleytowndentalcare.com","kenmoredentistry.com","kennesawcompletedental.com","keywestcrossingdental.com","killeendentalhealthcenter.com","killianhilldentalcare.com","killianroaddentalcare.com","kinddentistry.com","kingsoakdentalcare.com","lakeavenueco.com","lakebrittdentalcare.com","lakegibsondental.com","lakehancockdentalcare.com","lakejesupdentalcare.com","lakejoydentalcare.com","lakejulianadentalcare.com","lakelandfldentistry.com","lakemionadentalcare.com","lakenonafamilydentistry.com","lakepointedentistrytx.com","lakeridgedc.com","lakeridgedentalcareva.com","lakesaintlouisdentist.com","lakesidedentalcareaz.com","lakesidedentalcenter.com","lakesidedentalne.com","lakesidedentaltuscaloosa.com","lakesidefamilydentistry.com","lakesidevillagedentist.com","lakestlouisdentalcare.com","laketexomasmiles.com","lakeviewfamilydental.com","lakewalesdentistry.com","lakewestdental.com","landmarkdentalcare.com","landmarkfamilydentalcare.com","landstowndentalcare.com","lansingelitedentist.com","laurelviewdentistry.com","lebanondentalcare.com","ledgestonedentalcare.com","leevistadental.com","legacydentalcarepa.com","legacydrivedental.com","legacylandingdentistry.com","lexingtondentist.com","libertycommonsfamilydental.com","libertydentalcaremo.com","lifetimedentalcareoffrostburg.com","lifetimedentalofflowermound.com","lifetimedentalofnorman.com","lifetimedentalwoodlands.com","lifetimedentistryatshortpump.com","lifetimedentistrybradenton.com","lifetimedentistryladylake.com","lifetimedentistryofchickasha.com","lifetimedentistryofportorange.com","lifetimedentistryofroyalpalm.com","lifetimedentistryofsouthtulsa.com","lifetimefamilydental.com","lifetimefamilydentalva.com","lifetimesmilesdentalcare.com","lifetimesmilesoakpark.com","lifetimestpeters.com","limelightdentalcare.com","limestonesmiles.com","lincolndentalcenteril.com","linderhofdental.com","linecreekdentalcare.com","litchfieldfamilydentistry.com","littlebullrundental.com","littleriverdentalcare.com","littleriverfamilydental.com","littleroaddentalcare.com","livoniadentalcare.com","lochridgedentalcare.com","lodgedentalcare.com","londonbridgesmiles.com","londondentalcenter.com","longbowdentalcare.com","longcreekdentalcare.com","longstonplacedental.com","longwaterdentalcare.com","longwoodfamilydentistry.com","lorraineroaddentalcare.com","lortondental.com","louisvillemetrodental.com","loxahatcheedentalcare.com","lwsschesapeake.com","lwssfirstcolonial.com","lwsskempsville.com","lwsskempsvilleortho.com","lwssnorfolk.com","lwssredmill.com","lwsssuffolk.com","lwsswardscorner.com","macedoniadentalarts.com","machesneyparkfamilydental.com","macombdentalcenter.com","magnoliafamilydentistryla.com","mahanvillagedentalcare.com","mainstreetdentalcaremonroe.com","mallardcreekdentalcare.com","manordentalny.com","mansfield-dentalcare.com","maples-dental.com","marinashoresftpierce.com","marinashoresportstlucie.com","marinervillagedentalcare.com","marionfamilydental.com","markartzerdds.com","marketplacedentalcare.com","marketsquaredentalcare.com","marketstreetdentalcare.com","marketwalkdentalcare.com","marklandfamilydental.com","marshfielddental.com","marysvilleperioandimplants.com","mastershanddental.com","mayrivercrossingdental.com","mcalesterlifetimedentistry.com","mckinneydentist.com","mdalbertville.com","mdapplevalleycedar.com","mdapplevalleyflorencetrail.com","mdblainepheasantridge.com","mdbloomington.com","mdbrooklyncenter.com","mdchanhassen.com","mdchaska.com","mdchildrensdentistryburnsville.com","mdcottagegrove.com","mddowntownminneapolis.com","mdeaganwest.com","mdedenprairie.com","mdelkriver.com","mdinvergroveheights.com","mdlakeland.com","mdlakevilleidealic.com","mdmaplegrovebasslake.com","mdmaplegrovegrovecircle.com","mdmaplewood.com","mdminnetonka.com","mdosseo.com","mdrichfield.com","mdroseville.com","mdscburnsvilleoralsurgery.com","mdscburnsvilleperiodontics.com","mdscmaplegroveoralsurgery.com","mdscmaplegroveperiodontics.com","mdscrichfieldendodontics.com","mdscrichfieldoralsurgery.com","mdscrichfieldperiodontics.com","mdshakopee.com","mdstlouispark.com","mdstpaulmidway.com","mdweststpaul.com","mdwoodbury.com","meadowcreekdentalcare.com","meadowfarmsdentalcare.com","meadowoaksdentalcare.com","meadowranchdentalcare.com","meadowsspringdentalcare.com","mechanicsburgfamilydentistry.com","melbournefamilydental.com","merchantswaydentalcare.com","meridiandentalcentre.com","meridiandentalfalcon.com","mesaridgedental.com","metrodentalcareburnsville.com","metromndental.com","metroparkdentalarts.com","metrowestfamilydentistry.com","middleburgfamilydentalcare.com","middlesexdentalcarect.com","midlothiandentist.com","midtowndentalassociates.com","midtowndentalcare.com","millcreekdentalcarefl.com","millwoodfamilydental.com","miltonfamilydentalcare.com","miraclecitydentistry.com","miradamarketdentalcare.com","miramarparkwaydentalcare.com","mirasolwalkdentalcare.com","mirrorterracedentalcare.com","missionhillsdentistry.com","missionlakesdentalcare.com","moderndentaleastvalley.com","modernfamilydentistry.org","modernsmilesdentistry.com","mokenacrossingsfamilydental.com","molinefamilydental.com","monocacyriverdentalcare.com","montgomeryfamilydentalcare.com","montgomeryplazadental.com","montourdental.com","moorecompletedental.com","morgantonparkdentalcare.com","morningsidefamilydentalil.com","mortonfamilydental.com","mosaicdentalapplevalley.com","mosaicdentalmn.com","mosaicdentalnicollet.com","mosaicdentalridges.com","moultriedentalcare.com","mountaincrestdental.com","mountainpassdentalcare.com","mountainrangedentistry.com","mountainridgedentalcare.com","mountainstatedentalcare.com","mousecreekdentalcare.com","msmainstreetdental.com","mtsterlingsmiles.com","muddybranchdentalgroupmd.com","muirdental.com","murrellsinletdentistry.com","mycharlestondentist.com","myclearwaterdentistry.com","mycrossroadsdentist.com","mydentistada.com","mydentistardmore.com","mydentistbrokenarrow.com","mydentistduncan.com","mydentistftsmith.com","mydentistmuskogee.com","mydentistparis.com","mydentistspringfield.com","mydentistweatherfordtx.com","mygranddental.com","mynewportricheydentistry.com","myontariodentist.com","myportorangedentist.com","myriverviewdentistry.com","myseminoledentistry.com","mysmartdentalchoice.com","mystonebridgedentist.com","mytampadentistry.com","mytotalcaredental.com","myvicksburgdentist.com","mywildwooddentist.com","naplesperiodontist.com","naplespremierdentistry.com","narcoosseedentalcare.com","naturecoastdentalcare.com","ndscare.com","neibauerdentalbowie.com","neibauerdentalbrandywine.com","neibauerdentalcentralpark.com","neibauerdentalcosnerscorner.com","neibauerdentalculpeper.com","neibauerdentaldalecity.com","neibauerdentaldumfries.com","neibauerdentalfalmouth.com","neibauerdentalfortbelvoir.com","neibauerdentalgarrisonville.com","neibauerdentalharrisoncrossing.com","neibauerdentallaplata.com","neibauerdentalmanassas.com","neibauerdentaloxonhill.com","neibauerdentalsouthriding.com","neibauerdentalwaldorf.com","neibauerdentalwoodbridge.com","neshannockdental.com","newmarkdentalcare.com","newtowndentalarts.net","newvalleydental.com","nhdcsmiles.com","nineeaglesdentalcare.com","nobhilldentalcenter.com","nokomisdentalcare.com","nonaplacedentalcare.com","norfolkdentalcare.com","northarlingtondentalcare.com","northauroralifetimedentistry.com","northbrowarddentalcare.com","northbullittfamilydental.com","northcharlestonfamilydental.com","northcolumbusdentalcare.com","northcreekvillagedental.com","northeastdentistry.com","northgatefamilydental.com","northhilldentistry.com","northhillsfamilydental.com","northloopfd.com","northmayfamilydental.com","northmyrtlebeachdentistry.com","northpointedentalcarein.com","northportoralsurgeryanddentalcare.com","northranchdentalcare.com","northriverdental.com","northspringsdentalcare.com","northtarrantdentalcare.com","northwashingtondental.com","northwaydentalhouston.com","northwestokcdentalcare.com","nybergdentistry.com","oakfielddentalfl.com","oakgrovedentalcarenv.com","oakhillsdentalcarebr.com","oakhillsfamilydental.com","oakleaffamilydental.com","oakleaffamilydentistry.com","oakmeadowsvillagedental.com","oakopeningsdental.com","oakridgedentalcare.com","oakriverdentalcare.com","oakvalleydentalcare.com","oakwoodfamilydentalcare.com","oceanbaydentalcare.com","ofallondental.com","okaloosafamilydentistry.com","okddelcity.com","okdsouthokc.com","okdyukon.com","okeechobeedentalcare.com","oldemillfamilydental.com","oldetownlaureldental.com","oldkingsdentalcare.com","oldtowndentalwa.com","oldtownkatydental.com","olytumwaterdentist.com","optimumdentistrycoralsprings.com","orahhcare.com","orangetreedentalcare.com","orchardvalleydentalaurora.com","oregondentist.com","osceoladentalcare.com","oswegocommonsfamilydental.com","owendrivefamilydental.com","pacedentalcare.com","palmcoastdentalcare.com","palmcreekdentalcare.com","palmettocoastdental.com","palmettodentalhealth.com","palmettodentalpcb.com","palmpointedentistry.com","palmroyaldentalcare.com","panamacitysmiles.com","panolafamilydental.com","papilliondentalcare.com","paradisedentalpc.com","park100dc.com","parklandfamilydentistry.com","parkplacedentalin.com","parkridgedentalcarefl.com","parkstonedentalcare.com","parkwaydentalcare.com","parkwayvillagedentalcare.com","parkwoodranchdentalcare.com","partnersindentalcaremi.com","pavilioncrossingdentalcare.com","pdpcentralwestend.com","pdpchesterfield.com","pdpdowntown.com","pdpnorthcounty.com","pdpofallon.com","pdpsouthcountyfenton.com","pdpwentzville.com","pdpwestcountyoldballas.com","pdpwestcountyoldballasoralsurgery.com","pdpwestcountyoliveblvd.com","peakdentaloflakewood.com","pearlywhitesfamilydentistry.com","pebblecreekdental.com","pelicanparkdentalcare.com","pelicanpreservedentalcare.com","penfielddentistry.com","pennpremierdental.com","peoriafamilydental.com","peppertreedental.com","perfectsmilesdental.com","picayunedentalclinic.com","pickeringtonfamilydental.com","pilotknobdentalcare.com","pinearbordentalcare.com","pinehavendentalcare.com","pineislandroaddentalcare.com","pinelakedentalcarefl.com","pinerockdentalcare.com","pioneercrossingdentalcare.com","piperhilldentistry.com","pittsburghdentalimplants.com","planosmiledesign.com","plantationdentalcare.net","plantationpointedental.com","plantcitydentistry.com","plazaboulevarddental.com","plazacollinadentalcare.com","plazahealthdentistry.com","pleasantgrovedentaltn.com","plymouthmeetingfamilydental.com","pointerfamilydental.com","pointhopedentalcaresc.com","pompanobeachfamilydental.com","poolerparkwaydentalcare.com","poplartreedentalcare.com","porterdentalcenter.com","portofinobaydentalcare.com","potomacstationdentalcare.com","poughkeepsiedentalny.com","prairielakesdentalcare.com","prairieplacefamilydental.com","prairieridgedentalcare.com","prairieviewfamilydental.com","prattvilledentalcare.com","premierdentistryofblythewood.com","premierdentistryofwakeforest.com","preservedentalcare.com","prestigedentaldds.com","prestondentalcenter.com","prestwickpointedental.com","pricecreekdentistry.com","princecreekdentalcare.com","princetondl.com","providence-smiles.com","puschpeakfamilydental.com","puschridgedentalaz.com","pvpdental.com","pwdentalarts.com","quailhollowfamilydentistry.com","quailspringsdentalcare.com","quarrysmiles.com","queensroaddentistry.com","quirtfamilydentistry-merrill.com","quirtfamilydentistry-plover.com","quirtfamilydentistry-schofield.com","quirtfamilydentistry-wausau.com","rahndentalgroup.com","raintreefamilydentalcare.com","ramseydentalcenter.com","raytowndentalcaremo.com","rayviewdentalhealth.com","redbirddental.com","redcedardentalcare.com","redhawkdentalcare.com","redrosefamilydental.com","redwingdentalcare.com","reedybranchfamilydentistry.com","reemspointedentalcare.com","reflectiondentallittleriver.com","reflectiondentalmanassas.com","regalvalleydentalcare.com","reservoircommonsdental.com","reservoirdentalgroup.com","ricecreekfamilydentistry.com","richardwallacedds.com","richmondfamilydental.com","ridgefieldvillagedentalcare.com","ridgepikedentalcare.com","ridgeviewfamilydental.com","rioranchodentistnm.com","riverbendvillagedentalcare.com","riverbreezedentalcare.com","rivercrestcommonsfamilydental.com","rivercrossingdentalcare.com","rivergatedentalcarenc.com","riversdentalcare.com","riversidecrossingdentalcare.com","riversidedentalnc.com","riversidevalleydentalcare.com","riverviewsmilesdental.com","riverwooddentalcare.com","rljdentalappleton.com","rljdentalgreenbay.com","rljdentalmenasha.com","rljdentalneenah.com","rljdentaloshkosh.com","rljdentalwestallis.com","roanokerapidsdentalcare.com","rockhilldentalcaretx.com","rockhillsdentalcare.com","rockinghamdentalgroupepping.com","rockinghamdentalgroupexeter.com","rockvalleydentalcare.com","rockymountsmilemakers.com","rollinghillsdentalcare.com","rollingridgedentalcare.com","romeovillesmilesdentistry.com","rooseveltcommonsdentalcare.com","royaloaksdental.com","rtdental.com","russellvilledentalgroup.com","sacramentooralsurgery.com","saintandrewsdentalcare.com","salemdentalcareva.com","sanantoniodentalcarefl.com","sancarlosdentalcarefl.com","sandalwooddentalcarefl.com","sandoakdentalcare.com","sangredecristodentalcare.com","santanmountaindental.com","sarasotacompletedental.com","sardisdentalcare.com","savannahquartersdentalcare.com","sawgrasscompletedentistry.com","sazperio.com","schertzfamilydental.com","sdshouston.com","seahavendentalcare.com","seaplanedentalcare.com","seasidelifetimedentistry.com","seasonsfamilydentalcare.com","sebastiandentalspa.net","secondcreekdentalcare.com","secordentalassociates.com","secretcitydentalcare.com","sedonadentalcare.com","selectdentalcarefl.com","serenovadentalcare.com","settlerswalkdentalcare.com","severnaparkdentalcare.com","shadowbrookdentist.com","shadybrookfamilydental.com","sharpsburgdentalcare.com","shorehavendentistry.com","shorelinedentistryofwayzata.com","sienahillsfamilydental.com","siennadental.com","signaturesmilesbrighton.com","signaturesmilesbroadway.com","signaturesmilesmi.com","silvercreekdentalcare.com","silverleafdentalcare.com","sixmilecypressdentalcare.com","skymarksfamilydentalcare.com","skyridgevalleydentalcare.com","smilecda.com","smilecentrevenice.com","smiledesigndental.com","smileforlifedental.com","smileforlifedentalcare.com","smilejoplin.com","smileokc.com","smilesatbeauregardsquare.com","smilesatcarolinaforest.com","smilesatgoosecreek.com","smilesatheathbrook.com","smilesathunterscreek.com","smilesatjulingtoncreek.com","smilesatlakewoodranch.com","smilesbydesign.cc","smilesdentistryofmitchellville.com","smilesforliferichmond.com","smilesofkaty.com","smilesonbeachboulevard.com","smilesoncalumet.com","smilesoncypresspoint.com","smilesondelaware.com","smilesoneastbay.com","smilestudioonline.com","smiletodaydentistry.com","smilewright.com","smithcrossingdentalcare.com","smokyhilldental.com","softtouchdentistryco.com","somersetdentalcarefl.com","songstaddentalgroup.com","sonrisasandsmiles.com","sorrentoeastdental.com","southaustindentist.com","southbenddental.com","southbrowarddentistryandprosthodontics.com","southcarolinadentalcenter.com","southcharlottedentistry.com","southcornerdentalcare.com","southeastdentist.com","southerndentalcenter.com","southernhillsdentalcare.com","southfloridasedationdentistry.com","southhillperio.com","southkiplingdentalcare.com","southlakedentalcarefl.com","southlakefamilydentalsc.com","southleesburgdentalcare.com","southmountaindentalcare.com","southpointdentalcenter.com","southpointecompletedental.com","southsidevillagedentalcarefl.com","southtampadentistry.com","southtexassmiles.com","southwestvegassmiles.com","southwoodsmilesdentalcare.com","spearsmarketdentalcare.com","spiritasranchdentalcare.com","springfielddc.com","springhousefamilydentistry.com","springridgedentalcare.com","springstreetfamilydentistry.com","springvalleydentist.com","springviewdentalcare.com","springwoodsmarketdentalcare.com","ssdgsmiles.com","stablevalleydentistry.com","stadiumfamilydentistry.com","standifordplazadentalcare.com","starrsmilldentalcare.com","stationsidedentalcare.com","staugustinedentistry.com","stauntondentist.com","stcloudfamilyandcosmeticdentistry.com","steamboatparkwaydentalcare.com","steelyarddentalcare.com","sterlingcreekdentalcare.com","sterlingfamilydental.com","stevenscrossingdentalcare.com","stewartcreekdentalcare.com","stluciefamilydental.com","stluciewestdentalcare.com","stmatthewsdental.com","stonebridgeranchsmiles.com","stonebrookdentalcare.com","stonecreekfamilydentistry.com","stonecrestdentalcare.com","stonecrossingdentalcare.com","stonelakefamilydentistry.com","stowepointdentalcare.com","stpauloralsurgery.com","stpeteoralsurgery.com","stratforddental.com","streetsofstcharlesdental.com","suffolkcompletedentalcare.com","sullivanfamilydentistry.com","summerfielddentalcare.com","summerlindentalcare.com","summitfairdentalcare.com","summitplazadentalcare.com","sumterdentalcare.com","suncreekfamilydentistry.com","sundomecrossingdentalcare.com","sunnysidedentist.com","sunridgedentalcareoregon.com","sunsetavenuedental.com","sunsethillsdental.com","sunshinedentalofgulfbreeze.com","sunstonedental.com","sunwooddentalcare.com","suwaneedentalcare.com","swiftcreekdentalcare.com","sylvanvalleydental.com","tamayadentalcare.com","tanyardspringsfamilydentistry.com","tartanspringsdentalcare.com","tealridgedentalcare.com","teelparkwaydentalcare.com","tenderdentalcare.com","tennysonlakedental.com","terracedentalassociates.com","terracinadentalcare.com","terrehautedental.com","tfdbinghamfarms.com","tfdclintontownship.com","tfdcrystallake.com","tfdelmwoodpark.com","tfdjoliet.com","tfdlapeer.com","tfdlitchfield.com","tfdlivonia.com","tfdpaloshills.com","tfdportland.com","tfdsterlingheights.com","tfdtemperance.com","tfdwarren.com","tfdwestchester.com","thecrossroadsdentalcare.com","thedentistofcolorado.com","thedentistplaceocala.com","thedentistplaceorangepark.com","thedentistplacespringhill.com","thedentistplacespringhillkids.com","thedesignersmile.com","thelakesdentalcare.com","theloopdentalcare.com","themilldentalcare.com","theranchdentalcare.com","therightsmilefl.com","thesmilecentre.net","thesmiledesignarcadia.com","thesmiledesignboyntonbeach.com","thesmiledesigncapecoral.com","thesmiledesigncarrollwood.com","thesmiledesignclearwater.com","thesmiledesignclermont.com","thesmiledesignconnerton.com","thesmiledesigncountryside.com","thesmiledesigndadecity.com","thesmiledesigndavenport.com","thesmiledesigndowntown.com","thesmiledesignfletcher.com","thesmiledesignfourthstreet.com","thesmiledesigngainesville.com","thesmiledesigngoldenacres.com","thesmiledesignhernando.com","thesmiledesigninverness.com","thesmiledesignladylake.com","thesmiledesignlakeland.com","thesmiledesignlakemary.com","thesmiledesignlakewales.com","thesmiledesignlaurelridge.com","thesmiledesignleesburg.com","thesmiledesignlithia.com","thesmiledesignlutz.com","thesmiledesignmountdora.com","thesmiledesignmulberrygrove.com","thesmiledesignocala.com","thesmiledesignocoee.com","thesmiledesignorangeblossom.com","thesmiledesignorangecity.com","thesmiledesignospreycove.com","thesmiledesignpalmharbor.com","thesmiledesignportrichey.com","thesmiledesignriverview.com","thesmiledesignsancarlos.com","thesmiledesignsandlake.com","thesmiledesignsebring.com","thesmiledesignsilversprings.com","thesmiledesignspringhill.com","thesmiledesigntampapalms.com","thesmiledesigntarponsprings.com","thesmiledesigntoledoblade.com","thesmiledesigntrinity.com","thesmiledesignvillages.com","thesmiledesignwestchase.com","thesmiledesignwillasprings.com","thomastondental.com","thomasvilleroaddentalcare.com","thornrundentalcare.com","tiffindentalcare.com","tigerdentistry.com","timberspringsdentalcare.com","timberviewdentalcare.com","timothyroaddentalcare.com","tinkercreekdentalcare.com","titusvillesmilesdentistry.com","todaysdentistryjax.com","todaysfamilydentalwaco.com","toledofamilydentalcare.com","tomokafamilydentistry.com","totalhealthdentistryfl.com","towerdentalassociates.com","towncenterdentalcaremn.com","towncenterdentallasvegas.com","towncenterdentistry.com","tpdental.com","traditiondentalcarenc.com","traditionparkwaydentalcare.com","trailridgedentalcare.com","trailsideparkdentalcare.com","trailwindsdentalcare.com","tropeadentalcare.com","truesmilesonline.com","tulsahillsdentalcare.com","tumwaterfamilydentistry.com","turkeycreekdentalcare.com","turtlecreekdentalcare.com","twinlakedentistry.com","twinriversdentalcare.com","twinsburgdental.com","tymbercreekdentalcare.com","tyronefamilydentistry.com","udadentistry.com","ultimatedentalstudio.com","unbridleddentalcare.com","unforgettablesmiles.com","universaldentalcenter.net","universityfamilydentistry.com","universityparkwaydental.com","universityplacedental.com","uptown.dental","v2dentistry.com","v2dentistrymcminnville.com","valleydentalgroupmn.com","valleyparkdentalcare.com","valleysmilesdentalcare.com","valleyvistadentalcare.com","valparaisodental.com","vanburenfamilydentistry.com","vanderbiltestates.dental","vermilionfamilydental.com","veronadentalcare.com","viennadentalcentreva.com","vieradental.com","villagecrestfamilydental.com","villagefallsdentalcare.com","villagegrovedentalcare.com","villageplazadentaldesigns.com","virginiaparkwaydental.com","vistatraildentalcare.com","wainwrightdds.com","wakeforestdentalarts.com","waldorforthodontics.com","walkerdentalcaremi.com","walkshoresdentalcare.com","wallace-dentistry.com","wallawalladentalcare.com","walledlakejacobsondentalgroup.com","warfielddentalcenter.com","warnerrobinsfamilydentistry.com","washingtonfamilydentalcare.com","waterfordfamilydentistry.com","waterfordlakesdentistry.com","waterfrontdentalcare.com","watergrassdentalcare.com","watertowerdentalcareco.com","waterviewtowndentalcare.com","waterwaydentalcare.com","waterwaypassagedentalcare.com","waterwheeldentalcare.com","wdentalgroup.com","weatherfordcompletedental.com","weatherfordorthodontist.net","wecare4smiles.com","wedgewoodsquaredental.com","weekiwacheedentalcare.com","westalamodentalcare.com","westbeachesdentalcare.com","westbradentondental.com","westcanyondentalcare.com","westcapefamilydental.com","westcolumbiafamilydentistry.com","westedgedentalcare.com","westenddentalcarewi.com","westfallschurchdental.com","westfielddentalcenter.com","westhamptondentalcare.com","westhighlanddentalcare.com","westlakesdentalcare.com","westmeredentalcare.com","westpascodental.com","westportdentalcare.com","westportdentistry.com","westridgedentalcare.com","westtowndentalcaresc.com","westvillagesdentalcare.com","westyorkdentalcare.com","wexforddentalarts.com","wheatfamilydental.com","wheatlandfamilydental.com","whispercreekdentalcare.com","whisperingoaksfamilydental.com","whitehousefamilydentalcare.com","whiteoakdentist.com","whitepinedc.com","whiteriverdental.com","whitewatervalleydental.com","whittakerroaddental.com","wholelifedental.com","wildernesscanyondentalcare.com","wildernessdentalcare.com","wildrosedentalcare.com","williamsburgcosmeticdentistry.com","williamsburgdentalhealth.com","williamsonroaddentalcare.com","willowbenddental.com","willowgrovedentalcare.com","willowknollsdental.com","wimaumadentalcare.com","windcrestcosmeticdental.com","windermerevillagedentalcare.com","wintergardenvillagedental.com","wiregrassfamilydentalcare.com","wnydental.com","wnydentallancaster.com","wolfcreekdental.com","woodedhillsdentalcare.com","woodlakeorthodontics.com","woodlanddentalcarefl.com","woodlandfamilydentalcare.com","woodlandheightsfamilydental.com","woodmontfamilydentistry.com","wtndental.com","www.104thfamilydental.com","www.1stadvantagedentalamherst.com","www.1stadvantagedentalbethlehem.com","www.1stadvantagedentalcliftonpark.com","www.1stadvantagedentalcolonie.com","www.1stadvantagedentalglenville.com","www.1stadvantagedentallatham.com","www.1stadvantagedentalniskayuna.com","www.1stadvantagedentalqueensbury.com","www.1stadvantagedentalsaratogasprings.com","www.21stspringfield.com","www.360dentaltulsa.com","www.370dentalcare.com","www.83rdmarketplacedentalcare.com","www.8to8familydentalcare.com","www.9thavedentalcare.com","www.aberdeendentalcare.com","www.absolutedentalcareva.com","www.accuradentalcare.com","www.adamsdairyfamilydentalcare.com","www.adamsdentalcenter.com","www.adcchandler.com","www.adcorthoglendale.com","www.adcscottsdale.com","www.adcstreetsboro.com","www.adcsuncity.com","www.adctucsoneastcarondelet.com","www.adctucsonnorthcampbell.com","www.adctucsonsouthmission.com","www.adctucsonwestina.com","www.addisoncenterdentalcare.com","www.admiraldentalcare.com","www.adsfranklin.com","www.adsmayfair.com","www.adsstoneridge.com","www.advanceddentalcaretlh.com","www.advanceddentalconcept.com","www.advanceddentalhealthcenter.com","www.advanceddentistryatwindhaven.com","www.advanceddentistryhomosassa.com","www.advanceddentistrylecanto.com","www.advanceddentistryschaumburg.com","www.aestheticdentalinnovationstx.com","www.afdbartlett.com","www.afdcollierville.com","www.afdcordova.com","www.afdeastmemphiskirby.com","www.afdgermantown.com","www.afdkingstonpike.com","www.afdmemphispoplar.com","www.afdmountaingrove.com","www.afdolivebranch.com","www.afdraleigh.com","www.afdsouthaven.com","www.affordabledentistrybloomington.com","www.affordabledentistryrockford.com","www.afiniadentaleastgate.com","www.afiniadentalmason.com","www.afiniadentalorchardhill.com","www.afiniadentalwestchester.com","www.airlineroaddentalcare.com","www.albertvillefamilydental.com","www.alegredentalbosque.com","www.alegredentalpetroglyphs.com","www.alfaindentistry.com","www.alliancedentalcenter.org","www.alliancedentalgroup.com","www.allisonparkdentistry.com","www.allsmilesnw.com","www.americanfamilydental.com","www.americasfamilydentaltomballtexas.com","www.anderson-dental.com","www.andersonscdentists.com","www.andersonsmiles.com","www.annapolisdentistdds.com","www.apalacheefamilydental.com","www.applevalleyfamilydentistrymn.com","www.arborlakesdental.com","www.archdentalofmanhattan.com","www.areasontosmileboise.com","www.armedforcesdentalcenter.com","www.arnolddentalcenter.com","www.arrowheadcreeksidedental.com","www.artesiandentalonlaceyblvd.com","www.artisticsmilesnwa.com","www.artisticsmilesofga.com","www.artsdistrictdentalga.com","www.ashbyparkrestorative.com","www.aspenviewdental.com","www.atlanticfamilydentalfl.com","www.audubondentalcenter.com","www.audubondentalgroupmemphis.com","www.austellfamilydentalcare.com","www.autumndentalnc.com","www.avenuedentalpa.com","www.aviddentallindenhurst.com","www.avilesdentalcare.com","www.avondentalcare.com","www.badgerhillsdentalcare.com","www.bakerroaddentalcare.com","www.baldwinparkfamilydental.com","www.balharboursmiles.com","www.banyandentalcarenaples.com","www.barracksroaddentalcare.com","www.barrelandvinedentalcare.com","www.bartlettdentalassociates.com","www.bartramfamilydental.com","www.bayarbordentalcare.com","www.bayareadentalcaretx.com","www.bayberrydental.com","www.baycreekdentalcarega.com","www.baysidesmilesdentalcare.com","www.baytreefamilydental.com","www.bayviewdentalcarefl.com","www.beach-dental.com","www.beachsidefamilydentalcare.com","www.beaconhillfamilydentistry.com","www.bearbranchdental.com","www.bearcanyondental.com","www.beardstownfamilydental.com","www.beautifulsmilesbydesign.com","www.beavercreekcommonsdental.com","www.bedfordavenuedentistry.com","www.bedfordpasmiles.com","www.belairdentalassociates.com","www.bellairebaydentalcare.com","www.bellepointdental.com","www.belltowerdentalcare.com","www.beltonfamilydentalcare.com","www.berkshiredentalgroup.com","www.bernwoodparkdentalcare.com","www.berrygooddental.com","www.bickfordfamilydentalcare.com","www.bigbenddentalcare.com","www.biltmoredentistry.com","www.blackmanfamilydental.com","www.blackmountaindentalcare.com","www.bloomingdaledentalcarefl.com","www.blossomparkdentalcare.com","www.bluebonnetdentalcare.com","www.bluebonnetdentalcaretx.com","www.blueherondentalcare.com","www.bluehorizondentalcare.com","www.bluemountaindentalcare.com","www.blueridgefamilydentistry.com","www.bluespringdentalcare.com","www.bocaparkdentallasvegas.com","www.boggycreekdentalcare.com","www.bonitadentalarts.com","www.bonitaesterodental.com","www.bouldercorridordentalcare.com","www.bouldercountysmiles.com","www.boulevardplacedentalcare.com","www.bowlinggreenfamilydental.com","www.boyntonbeachpremierdental.com","www.brackenhilldentalcare.com","www.bradentonsmilesdentistry.com","www.bradfordvilledentalcare.com","www.brazosfamilydentistry.com","www.breakfastpointdentalcare.com","www.bretonbaydentistry.com","www.briarwoodparkdentalcare.com","www.brightonparkdentalcare.com","www.bristolheightsdental.com","www.broadlandscompletedental.com","www.broadmoordental.com","www.broadstreetdc.com","www.broadwaydentalarts.com","www.brookschooldentalcare.com","www.brookslakedental.com","www.brownsborostationdentalcare.com","www.brownstowndentalcare.com","www.buckcreekfamilydental.com","www.budafuldentalcare.com","www.buffalovalleydentalcare.com","www.bullfrogcreekdentalcare.com","www.burtonsvilledentalcare.com","www.buttermilkdentistry.com","www.byronfamilydentalcare.com","www.cambridgefamilydentistry.com","www.cambyfamilydentistry.com","www.caminorealdentaltx.com","www.camphilldentist.com","www.caneridgedentist.com","www.cannoncrossroadsdentalcare.com","www.canoecreekfamilydental.com","www.canyoncreekfamily.com","www.canyonspringsfamilydental.com","www.canyonviewdentalcare.com","www.capegirardeaudentalcare.com","www.capesmilesdentistry.com","www.capitalavenuedentalcare.com","www.capitalsmiles.com","www.capstonedentalnc.com","www.cardinaldentalcaretx.com","www.carillonparkdental.com","www.carnesdental.com","www.carolinadentalgroup.com","www.carolinagentledental.com","www.cartervilledental.com","www.carusatascocita.com","www.carusbelton.com","www.carusbrodielane.com","www.caruscedarpark.com","www.carusgeorgetownuniversity.com","www.carusgeorgetownwildwood.com","www.carushutto.com","www.caruskilleen.com","www.caruskingwood.com","www.carusnorthaustinmedicalcenter.com","www.carusorthoatascocita.com","www.carusorthokilleen.com","www.carusorthoroundrock.com","www.carusroundrock.com","www.carussalado.com","www.carussanmarcos.com","www.carussmithville.com","www.carussouthcentral.com","www.carusspringkuykendahl.com","www.carussurgicalcenterroundrock.com","www.carustemple.com","www.caruswoodlands.com","www.casadydentalcare.com","www.casadysquareorthodontics.com","www.cascadedentallongview.com","www.catawbaspringsdentalcare.com","www.catoctincornerdentistry.com","www.cdatpaddockpark.com","www.cdbelleview.com","www.cdocalasouthwest.com","www.cdofindianharbourbeach.com","www.cdofmeadowcrest.com","www.cdofmerrittisland.com","www.cdofsebastian.com","www.cdofsuntree.com","www.cdofviera.com","www.cdofwilliston.com","www.cdsebastianhighway.com","www.cdserviceseastgate.com","www.cdservicesedgewoodky.com","www.cdservicesfairfield.com","www.cdservicesflorenceky.com","www.cdserviceslanden.com","www.cdservicesmilford.com","www.cdserviceswestchester.com","www.cedarbenddentalcare.com","www.cedarcitydentalcare.com","www.cedarcreekdentalcare.com","www.cedarfamilydentistry.com","www.cedarlakesdentalcare.com","www.cedarviewdentalcare.com","www.centerforcosmeticandfamilydentistry.com","www.centerplacedentalcare.com","www.centerstreetfamilydentistry.com","www.centralavenuedentalcare.com","www.centralillinoisoral.com","www.centralinperio.com","www.certusdentalcare.com","www.champaigndentalgroup.com","www.championsgatedentistry.com","www.chandlersmiles.com","www.chapelhillfamilydentistrywa.com","www.chapelhillfcd.com","www.charlestoncosmeticdentistry.com","www.charmingsmilesofnaples.com","www.chdcranberrycommons.com","www.chdindiana.com","www.chdjohnstownrichland.com","www.chdmccandlesscovenant.com","www.chdmonroeville.com","www.chdmtpleasant.com","www.chdmurrysville.com","www.chdpittsburghshadyside.com","www.chdpittsburghsqhill.com","www.chdwarrenstreet.com","www.chehalisdentalcare.com","www.cherrycreekdentalcare.com","www.cherrywaydental.com","www.chesapeakecompletedentistry.com","www.chesleyfamilydental.com","www.chesterfieldparkdental.com","www.chiquitadentalcare.com","www.choosemoderndentistry.com","www.churchcreekdentalcare.com","www.churchvillefamilydentistry.com","www.citrusfallsdentalcare.com","www.citrusgrovedentalcare.com","www.citrustowerfamilydental.com","www.citysedgedentalcare.com","www.citysmilesdc.com","www.clairmontsmiles.com","www.clarksondentalco.com","www.clarksvillefamilydental.com","www.clearlakecitydentistry.com","www.clermontendodontics.com","www.clovercreekdentalcare.com","www.coalcreekfamilydental.com","www.coalmountaindentalcare.com","www.coastalcarolinadentalcare.com","www.coastalcosmeticdental.com","www.coastaldentalcareofmilford.com","www.coconutcreekwinningsmiles.com","www.coconutpointdentalcare.com","www.coddlecreekdentalcare.com","www.colbycrossingdentalcare.com","www.collegeavedental.com","www.colonialdrivepcd.com","www.coltoncompletedental.com","www.columbiaprodental.com","www.columbinedental.com","www.columbuspikedentalcare.com","www.comfortablecareclark.com","www.comfortablecaresouthtrail.com","www.comfortablecarevenice.com","www.comfortdentistsofplantation.com","www.completedentalatlakeside.com","www.completedentalcareatwestbird.com","www.completedentalcarefl.com","www.completedentalcaremansfield.com","www.completedentalcareofnaples.com","www.completedentalcarerichmond.com","www.completedentalcaresouthflorida.com","www.completedentallakecity.com","www.completedentalofcountryside.com","www.completedentalofeaston.com","www.completedentalofyork.com","www.completedentistryestero.com","www.completefamilydentistryelkhart.com","www.completesmilestx.com","www.comprehensivedentalcarefl.com","www.comprehensivedentalnc.com","www.concordpointfamilydentistry.com","www.concoursedentalcare.com","www.connertondentalcare.com","www.conversedentist.com","www.cookcrossingdentalcare.com","www.coolidgecourtdentalcare.com","www.copdo.com","www.copperfieldcrossingtx.com","www.copperheaddentalcare.com","www.coralridgedentalarts.com","www.cornerlakefamilydental.com","www.cosmeticdentistbaltimore.com","www.cosmeticdentistryofnaples.com","www.cosmeticdentistrytampabay.com","www.cottonridgedentalcare.com","www.countryclubdentalcareil.com","www.countrysidedental.com","www.courseyfamilydental.com","www.creatingsmilescfd.com","www.creativesmileschampaign.com","www.creativesmilesdentalcare.com","www.creativesmilesgreenfield.com","www.creativesmilesmurfreesboro.com","www.creativesmileswinghaven.com","www.creeksidecommonsdentistry.com","www.creeksidedentalcaretx.com","www.creekviewdentalcare.com","www.creekwooddental.com","www.crescenthilldentalcare.com","www.crescentparkdentalcare.com","www.crestwooddentalcare.com","www.croftondentalsuite.com","www.crosscreekdentalcare.com","www.crosspointfamilydental.com","www.crossroadsdentaldallas.com","www.crossroadsdentistrytn.com","www.crossroadsfamilydentalcare.com","www.crosstimbersfamilydental.com","www.crosswaterdentalcare.com","www.crowfielddental.com","www.crownpointdentalcaresalem.com","www.crowvalleydental.com","www.crystallakedentalassociates.com","www.cumberlandriverdentalcare.com","www.cypresscreekdentalcarefl.com","www.cypressdentalexcellence.com","www.danieladental.com","www.darringtondentalcare.com","www.darwinfamilydentalcare.com","www.daviedental.com","www.ddsassociates.com","www.debarydentalcare.com","www.deercreekdental.com","www.deercreekfamilydentalcare.com","www.deervalleyfamilydentistry.com","www.deerwoodorthoappleton.com","www.deerwoodorthobayshore.com","www.deerwoodorthofranklin.com","www.deerwoodorthogreenbay.com","www.deerwoodorthostoneridge.com","www.defiancecenterfordentistry.com","www.dekalbdentalgroup.com","www.delanydentalcare.com","www.dellagiodentist.com","www.denarodentalcare.com","www.denhamspringsdentalcarela.com","www.dentalartsofaurora.com","www.dentalartsofgettysburg.com","www.dentalartsofminneapolis.com","www.dentalartsofoliversprings.com","www.dentalartsofpalmharbor.com","www.dentalartsofsayville.com","www.dentalartsofsurprise.com","www.dentalassociatesofgrovetown.com","www.dentalassociateswaldenwoods.com","www.dentalcareataddisonplace.com","www.dentalcareatalamancecrossing.com","www.dentalcareatarcadiafarms.com","www.dentalcareatautumnrun.com","www.dentalcareatavamarcrossing.com","www.dentalcareatbabcockranch.com","www.dentalcareatbannermanvillage.com","www.dentalcareatbarrowcrossing.com","www.dentalcareatbartramcrossings.com","www.dentalcareatbelmont.com","www.dentalcareatbentslanding.com","www.dentalcareatberewick.com","www.dentalcareatbrushprairie.com","www.dentalcareatcartwheelbay.com","www.dentalcareatcascades.com","www.dentalcareatcaseykey.com","www.dentalcareatcedarbreaks.com","www.dentalcareatcedarcrossing.com","www.dentalcareatchampionscrossing.com","www.dentalcareatchancellorcrossing.com","www.dentalcareatclearcrossings.com","www.dentalcareatcollegestation.com","www.dentalcareatcolumbuscrossing.com","www.dentalcareatcompasscreek.com","www.dentalcareatcompasspark.com","www.dentalcareatcosbyvillage.com","www.dentalcareatcoventry.com","www.dentalcareatcrosspointe.com","www.dentalcareatcrystalpark.com","www.dentalcareateaglelanding.com","www.dentalcareateldersburgcommons.com","www.dentalcareatelliscrossing.com","www.dentalcareatestrellacrossroads.com","www.dentalcareatfishhawkcommons.com","www.dentalcareatforestcrossing.com","www.dentalcareatfoxbank.com","www.dentalcareatgastonday.com","www.dentalcareatgatewaycommons.com","www.dentalcareatgordencrossing.com","www.dentalcareatgrandeoak.com","www.dentalcareatgreenvalley.com","www.dentalcareatharriscrossing.com","www.dentalcareathudsonstation.com","www.dentalcareathuntersgreen.com","www.dentalcareatibis.com","www.dentalcareatjohnslake.com","www.dentalcareatjordanranch.com","www.dentalcareatlakeingram.com","www.dentalcareatlakemoorcommons.com","www.dentalcareatlakeshores.com","www.dentalcareatlakewoodwalk.com","www.dentalcareatlandstarcommons.com","www.dentalcareatledgerock.com","www.dentalcareatlelandtowncenter.com","www.dentalcareatlittleriver.com","www.dentalcareatlivingstonmarketplace.com","www.dentalcareatloughmancrossing.com","www.dentalcareatmaderavista.com","www.dentalcareatmagnoliaplaza.com","www.dentalcareatmarleysquare.com","www.dentalcareatmeadowridge.com","www.dentalcareatmidpoint.com","www.dentalcareatmidtown.com","www.dentalcareatmillcreek.com","www.dentalcareatmiramesa.com","www.dentalcareatmonumentridge.com","www.dentalcareatmullinscolony.com","www.dentalcareatnapleslakes.com","www.dentalcareatnorthcreek.com","www.dentalcareato-townwest.com","www.dentalcareatoakmont.com","www.dentalcareatpalladium.com","www.dentalcareatpalmerranch.com","www.dentalcareatplainfieldcrossing.com","www.dentalcareatplantationsquare.com","www.dentalcareatpleasanthill.com","www.dentalcareatpoint24.com","www.dentalcareatpolarispointe.com","www.dentalcareatprairiecrossing.com","www.dentalcareatprestonlegacy.com","www.dentalcareatprettypond.com","www.dentalcareatprovidence.com","www.dentalcareatquailhollow.com","www.dentalcareatreedscrossing.com","www.dentalcareatriverlights.com","www.dentalcareatriverridge.com","www.dentalcareatrosecreek.com","www.dentalcareatroyalcreek.com","www.dentalcareatsayebrook.com","www.dentalcareatseaplum.com","www.dentalcareatseminoleridge.com","www.dentalcareatsierranorth.com","www.dentalcareatsouthcommons.com","www.dentalcareatsouthcrest.com","www.dentalcareatstarkeyranch.com","www.dentalcareatsummerfieldcrossing.com","www.dentalcareattecheridge.com","www.dentalcareatthecourtyards.com","www.dentalcareatthecrossroads.com","www.dentalcareatthefountains.com","www.dentalcareatthelanding.com","www.dentalcareatthemark.com","www.dentalcareattheplex.com","www.dentalcareattowncenter.com","www.dentalcareattreatyoaks.com","www.dentalcareattrinitylakes.com","www.dentalcareattriplecrown.com","www.dentalcareattumbleweedpass.com","www.dentalcareatvenicegardens.com","www.dentalcareatverandah.com","www.dentalcareatverona.com","www.dentalcareatvillagewalk.com","www.dentalcareatwardlake.com","www.dentalcareatwaterset.com","www.dentalcareatwellenpark.com","www.dentalcareatwestport.com","www.dentalcareatwestridge.com","www.dentalcareatwestsideshoppes.com","www.dentalcareatwhiteeaglefl.com","www.dentalcareatwoodlandcrest.com","www.dentalcarebeyondsmiles.com","www.dentalcarecamden.com","www.dentalcareofaloma.com","www.dentalcareofanthemcrossroads.com","www.dentalcareofbellevue.com","www.dentalcareofbixby.com","www.dentalcareofboilingsprings.com","www.dentalcareofbonaire.com","www.dentalcareofbraselton.com","www.dentalcareofbrooklynpark.com","www.dentalcareofcanby.com","www.dentalcareofcitrusgroves.com","www.dentalcareofcolumbia.com","www.dentalcareofcookeville.com","www.dentalcareofcrossville.com","www.dentalcareofdavenport.com","www.dentalcareofdeltona.com","www.dentalcareofeagleridge.com","www.dentalcareofeaglevalley.com","www.dentalcareofedmond.com","www.dentalcareofelkton.com","www.dentalcareoffairfield.com","www.dentalcareoffatevillage.com","www.dentalcareoffranklintownship.com","www.dentalcareoffuquayvarina.com","www.dentalcareofgrafton.com","www.dentalcareofgrandview.com","www.dentalcareofhampstead.com","www.dentalcareofhampton.com","www.dentalcareofharrisburg.com","www.dentalcareofhendersonville.com","www.dentalcareofhoover.com","www.dentalcareofhuntley.com","www.dentalcareofhuntsville.com","www.dentalcareoflakewylie.com","www.dentalcareoflehighacres.com","www.dentalcareoflightfoot.com","www.dentalcareofmenomoneefalls.com","www.dentalcareofminneola.com","www.dentalcareofminooka.com","www.dentalcareofmtvernon.com","www.dentalcareofnorman.com","www.dentalcareofnorthfortmyers.com","www.dentalcareofpatchogue.com","www.dentalcareofpearland.com","www.dentalcareofpecangrove.com","www.dentalcareofpewaukee.com","www.dentalcareofpflugerville.com","www.dentalcareofpowell.com","www.dentalcareofprincefrederick.com","www.dentalcareofraymore.com","www.dentalcareofriverbend.com","www.dentalcareofrolesville.com","www.dentalcareofroundlakebeach.com","www.dentalcareofsalem.com","www.dentalcareofsanford.com","www.dentalcareofsapulpa.com","www.dentalcareofshelbyville.com","www.dentalcareofsherrillsford.com","www.dentalcareofsolon.com","www.dentalcareofsouthaiken.com","www.dentalcareofsouthelgin.com","www.dentalcareofsouthernpalm.com","www.dentalcareofsouthpuyallup.com","www.dentalcareofspringhill.com","www.dentalcareofstjoseph.com","www.dentalcareofveteransparkway.com","www.dentalcareofvieraeast.com","www.dentalcareofwaukesha.com","www.dentalcareofwendellfalls.com","www.dentalcareofwestmelbourne.com","www.dentalcareofwestminster.com","www.dentalcareofwestoverhills.com","www.dentalcareofwoodloch.com","www.dentalcareon4thand4th.com","www.dentalcareon7.com","www.dentalcareonashleycircle.com","www.dentalcareonballentrae.com","www.dentalcareonbryant.com","www.dentalcareoncauseway.com","www.dentalcareoncookingham.com","www.dentalcareoncorkscrew.com","www.dentalcareoneastmain.com","www.dentalcareonfennell.com","www.dentalcareonfernwooddrive.com","www.dentalcareonfrontierparkway.com","www.dentalcareonhollyhill.com","www.dentalcareonlonemountain.com","www.dentalcareonlongleaf.com","www.dentalcareonmacon.com","www.dentalcareonmcclain.com","www.dentalcareonnorthavenue.com","www.dentalcareonparkview.com","www.dentalcareonportroyal.com","www.dentalcareonquebec.com","www.dentalcareonsanantonio.com","www.dentalcareonsmileway.com","www.dentalcareonstanhaven.com","www.dentalcareontuckerton.com","www.dentalcareonwatson.com","www.dentalcareonyellowbluff.com","www.dentalcareoysterpoint.com","www.dentalcares.com","www.dentalcarescordova.com","www.dentaldesignslakeland.com","www.dentaldesignslakesidevillage.com","www.dentaldesignslasvegas.com","www.dentaldesignsofglenburnie.com","www.dentaldesignsonpoplar.com","www.dentaldesignsvancouverwa.com","www.dentalgroupbourbonnais.com","www.dentalgroupcarbondale.com","www.dentalgrouprockford.com","www.dentalgroupspringfield.com","www.dentalpluslogansport.com","www.dentalprofessionalsplc.com","www.dentalsolutionsofmiami.com","www.dentalsolutionsonline.com","www.dentalstudiowest.com","www.dentalvillagesierravista.com","www.dentist-in-tulsa.com","www.dentistarkadelphia.com","www.dentistgainesvilletx.com","www.dentistinclearwater.com","www.dentistinftmyers.com","www.dentistingainesvillega.com","www.dentistinjoplin.com","www.dentistinlawton.com","www.dentistinnaples.com","www.dentistnapervilleil.com","www.dentistnavarre.com","www.dentistpanamacitybeach.com","www.dentistplymouthnh.com","www.dentistquincy.com","www.dentistryathagerstown.com","www.dentistryatsaddlecreek.com","www.dentistryatsmithvillemarketplace.com","www.dentistryforhealthomaha.com","www.dentistryofmiami.com","www.dentistryon77th.com","www.dentistryonwalnutgrove.com","www.dentistrypluslexington.com","www.dentistsinwinchester.com","www.dentiststrongsville.com","www.desertsmilesdentistry.com","www.desertspringsdental.com","www.destindentist.com","www.devinedentalcare.com","www.devinedentistry.com","www.devinedentistrysc.com","www.dexterfamilydentists.com","www.dfdentistry.com","www.diamondvalleydental.com","www.dicksondentalcare.com","www.discoverydentalcarefl.com","www.distinctivedentalsolutions.com","www.distinctivedmd.com","www.dixonparkdental.com","www.dogwooddentalcarecarbondale.com","www.dorseyfamilydental.com","www.downtowndentaljax.com","www.drakeshiredental.com","www.drchrisharman.com","www.drdanielharper.com","www.dreamteamdentistryfl.com","www.drgodet.com","www.driftwooddentalcarefl.com","www.drpaulkinsey.com","www.drterrizweberdds.com","www.drvanslate.com","www.drycreekdentalcare.com","www.dublindentalcenterpa.com","www.duckprairiedentalcare.com","www.ducktowndentalcare.com","www.duggapfamilydentistry.com","www.dunedindentalcare.com","www.durbincreekdentalcare.com","www.duvallfamilydental.com","www.eaglecreekdental.com","www.eagleslandingdentalcare.com","www.easleydentist.com","www.eastavenuedentalcare.com","www.eastbrewsterdental.com","www.eastbroadfamilydentistry.com","www.eastcreekdentalcare.com","www.eastcressdentalcare.com","www.eastlakesdentalcare.com","www.eastmaindentalpa.com","www.eastridgedentalcare.com","www.eastrochesterfamilydentistry.com","www.eastsandidgedental.com","www.eastsidegeneraldentistry.com","www.eastviewfamilydentalne.com","www.edgewaterfamilydental.com","www.edgewoodfamilydental.com","www.edgewoodfamilydentist.com","www.edisonfamilydentalcare.com","www.effinghamdentalgroup.com","www.electriccitydentalcare.com","www.embreymilldentalcare.com","www.emeraldwatersdentalcare.com","www.empireoms.com","www.enclavedentalcare.com","www.ensodentistry.com","www.essingtondental.com","www.eugenedentalassociates.com","www.evansvillefamilydental.com","www.eventidefamilydentistry.com","www.exquisitedentalcareoh.com","www.fairchildoaksdentalcare.com","www.fairfieldfamilydentaloh.com","www.fairviewdentalcolumbia.com","www.fairwaydentalcarefl.com","www.falconpointdentalcare.com","www.familycaredentistryky.com","www.familydentalabq.com","www.familydentalatalafayacrossings.com","www.familydentalatdublinheights.com","www.familydentalatwildlight.com","www.familydentalcarechampaign.com","www.familydentalcareeastpeoria.com","www.familydentalcareoffitchburg.com","www.familydentalcareofmedina.com","www.familydentalcareofmuskego.com","www.familydentalcareofolathe.com","www.familydentalcareofowasso.com","www.familydentalcareofpowdersville.com","www.familydentalcareofrogers.com","www.familydentalcareofsmyrna.com","www.familydentalcareofwarrenton.com","www.familydentalcareonwashington.com","www.familydentalcaresouthbradenton.com","www.familydentalcaresouthlakeland.com","www.familydentalcaresycamore.com","www.familydentalfortmyers.com","www.familydentalofbelair.com","www.familydentalofcanton.com","www.familydentalofcedarpark.com","www.familydentaloflexington.com","www.familydentalofseabrook.com","www.familydentalofthornton.com","www.familydentalonlouetta.com","www.familydentalorlandpark.com","www.familydentalshawnee.com","www.familydentalwilmington.com","www.familydentistryarnold.com","www.familydentistryatriversidecrossing.com","www.familydentistryatsouthwood.com","www.familydentistryofellisville.com","www.familydentistryoforangegroves.com","www.familydentistryofpoplarbluff.com","www.familydentistryofshortpump.com","www.familydentistryofyukon.com","www.familydentistryonfreedom.com","www.familyoralhealth.com","www.farabeefamilydentalcare.com","www.farmingtondentalcare.com","www.farmingtonvillagedentalcare.com","www.farrowparkwaydentalcare.com","www.fcdentalcarechambersburg.com","www.fcdentalcarewaynesboro.com","www.fdappleton.com","www.fdashburn.com","www.fdashburnortho.com","www.fdbethesda.com","www.fdbrookfield.com","www.fdbrowndeer.com","www.fdclarksvilleortho.com","www.fdcolumbiaclarksville.com","www.fddelafield.com","www.fdeldersburgortho.com","www.fdeldersburgsykesville.com","www.fdforesthome.com","www.fdfranklin.com","www.fdglendale.com","www.fdgreenbay.com","www.fdhalescorners.com","www.fdjanesville.com","www.fdkenosha.com","www.fdmadisoneast.com","www.fdmadisonwest.com","www.fdmenomoneefalls.com","www.fdmequon.com","www.fdmukwonago.com","www.fdmuskego.com","www.fdnewberlin.com","www.fdoakcreek.com","www.fdoconomowoc.com","www.fdracine.com","www.fdreston.com","www.fdsunprairie.com","www.fdwaldorf.com","www.fdwaldorfortho.com","www.fdwaukeshastoneridge.com","www.fdwestallis.com","www.festusdental.com","www.firstcoastsmiles.com","www.firstimpressionssmilecenter.com","www.fishkillsmiles.com","www.fivepointsdentalal.com","www.florencefamilydentistryky.com","www.flowerscrossroadsdental.com","www.flsmiles.com","www.flynnorthodontics.com","www.foleydentaloffice.com","www.follyroaddentalcare.com","www.foresidefamilydental.com","www.forestvilleroaddentalcare.com","www.forthamerdentalcare.com","www.fortsmithdentist.com","www.fortsmithsmiles.com","www.fortworthsmilestudio.com","www.fortworthtxdentist.com","www.forumdentallaurie.com","www.forumdentallebanon.com","www.forumdentalrolla.com","www.forumdentalstlouis.com","www.forumdentalstrobert.com","www.fountainhillsdentalcare.com","www.fountainhillsdentistry.com","www.fourlakesfamilydental.com","www.foxgardendentalcare.com","www.foxlakedentalcare.com","www.foxwooddentalcare.com","www.franklindentalcare.com","www.friendlydentalmn.com","www.friendshipdentalcare.com","www.frontstreetfamilydentistry.com","www.fultonfamilydentalcare.com","www.fuquayfamilydentistry.com","www.gainesvillefamilydentalcare.com","www.gainesvillesmilesdentalcare.com","www.gallatindentalcare.com","www.galleriadentalhenderson.com","www.gankindental.com","www.garnersferrydentistry.com","www.gatewaydentalcarewi.com","www.gatewayofnaplesdental.com","www.gatewaysmilesdentistry.com","www.gattisschoolroaddental.com","www.gavilanpeakdentalcare.com","www.geistdentalcare.com","www.gentledentistrycarrollton.com","www.georgiadentalcenter.com","www.gerardvalentinidds.com","www.germantowndentalcare.com","www.getahealthysmile.com","www.ggsdentalcenter.com","www.gibsoniadentalcare.com","www.gildercreekdentalcare.com","www.gilmoredentalcare.com","www.glenburniedentalcare.com","www.glencarbonfamilydentistry.com","www.glendaleaestheticdentistry.com","www.glistendental.com","www.gluckstadtfamilydentistry.com","www.granburydentalcenter.com","www.grandcypressdentalcare.com","www.granddentistryfl.com","www.grandlelydentalcare.com","www.grandmapledentalcare.com","www.grandovervillagedentalcare.com","www.grandridgedental.net","www.grandtraversedentalcare.com","www.greaterpittsburghdentalgroup.com","www.greatmillsfamilydental.com","www.greatoaksdentalcare.com","www.greatplainsfamilydentistryenid.com","www.greatsouthernsmiles.com","www.greenhillsfamilydentistry.com","www.greenmountfamilydentistry.com","www.greensburgdentalcare.com","www.greenstreetdentalcare.com","www.greenvalleydentalcaretx.com","www.greenvillagedentalcare.com","www.greenwaycenterdentistry.com","www.greenwoodfamilydental.com","www.greerfamilydentalcare.com","www.grmetrodental.com","www.grovelanddentalcare.com","www.gumspringsdentalcare.com","www.gwinnettdentist.com","www.hallscrossroadsdentalcare.com","www.hamlingrovesdentalcare.com","www.hammockgardensdentalcare.com","www.hammondfamilydental.com","www.hamptonlakedentalcare.com","www.hanburydentalcare.com","www.hanfieldvillagedentalcare.com","www.happyvalleydentistry.com","www.harbisonhilldentistry.com","www.harborpointdentalcare.com","www.harpethdentalcare.com","www.harrisonbridgedentalcare.com","www.harrisonburgsmilemakers.com","www.hartlandfamilydentalcare.com","www.hartsvilledentistsc.com","www.havensdentalcare.com","www.hawkesbaydentalcare.com","www.haynesbridgedentalcare.com","www.healthysmilesdental.net","www.heartlandcrossingdentalcare.com","www.heartlandfamilydentalcare.com","www.heartoftexasperioandimplantology.com","www.heightsdc.com","www.helenaroaddentalcare.com","www.heritagedental.com","www.heritagedentalgroup.com","www.hernandosmiles.com","www.heronspringsdentalcare.com","www.herowaydentalcare.com","www.hersheydentalgroup.com","www.hersheyplazadental.com","www.hesselparkdentistry.com","www.hewlettdental.com","www.hickmanmillsdentalcare.com","www.hickorycommonsdentalcare.com","www.hickorycreekfamilydentistry.com","www.hickorytreedentalcare.com","www.hiddencreekdentalcare.com","www.hiddencreekpremierdentistry.com","www.hiddenmeadowsdentalcare.com","www.highbrookwaydentalcare.com","www.highlandavedentistrybc.com","www.highlandcitydentalcare.com","www.highlandilfamilydentistry.com","www.highpointedentalcare.com","www.hightidesdentalcare.com","www.highwaykdentalcare.com","www.highwinddentalcare.com","www.hillviewfamilydental.com","www.hollywoodparkdental.com","www.holmestowncommonsdentalcare.com","www.honeygrovefamilydentistry.com","www.hoptowndental.com","www.horizondentalcenter.com","www.houghtonfamilydentalcare.com","www.howellbranchdentalcare.com","www.huesdentalgroup.com","www.hunterdentistry.com","www.idealdentistryfl.com","www.ifdww.com","www.imperialdentalbonita.com","www.imperiallakesdentalcare.com","www.implantdds.com","www.implantdentisttampa.net","www.independencedentalcare.com","www.independencefdc.com","www.indianapolisdentaldesigns.com","www.indianlakefamilydental.com","www.indianlanddentalcare.com","www.indianriverdentistry.com","www.innerharbordental.com","www.innovativedentalcareofmuncie.com","www.innovativedentistryofrockville.com","www.innovativeorthocenters.com","www.innovativepediatricdentistry.com","www.inspiredentalapex.com","www.inspiredentalcary.com","www.inspiredentalchapelhill.com","www.instylesmiles.com","www.integrateddentistry.com","www.ironrosedentalcare.com","www.irwinminidentalimplants.com","www.islandsidedentalcare.com","www.islandwalkdentalcare.com","www.ivycreekdentalcare.com","www.jacarandadentalcare.com","www.jacksondentaltampa.com","www.jamesacrouchdds.com","www.jameswmassa.com","www.jandadentistry.com","www.janesvillefamilydentalcare.com","www.jbdentalcare.com","www.johnscreekdentalexcellence.com","www.junctiondentalcareil.com","www.jungermanndentalcare.com","www.jwvalentinedmd.com","www.kandordental.com","www.kathleendentalcare.com","www.katyfamilydentists.com","www.kelleytowndentalcare.com","www.kenmoredentistry.com","www.kennesawcompletedental.com","www.keywestcrossingdental.com","www.killeendentalhealthcenter.com","www.killianhilldentalcare.com","www.killianroaddentalcare.com","www.kinddentistry.com","www.kingsoakdentalcare.com","www.lakeavenueco.com","www.lakebrittdentalcare.com","www.lakegibsondental.com","www.lakehancockdentalcare.com","www.lakejesupdentalcare.com","www.lakejoydentalcare.com","www.lakejulianadentalcare.com","www.lakelandfldentistry.com","www.lakemionadentalcare.com","www.lakenonafamilydentistry.com","www.lakepointedentistrytx.com","www.lakeridgedc.com","www.lakeridgedentalcareva.com","www.lakesaintlouisdentist.com","www.lakesidedentalcareaz.com","www.lakesidedentalcenter.com","www.lakesidedentalne.com","www.lakesidedentaltuscaloosa.com","www.lakesidefamilydentistry.com","www.lakesidevillagedentist.com","www.lakestlouisdentalcare.com","www.laketexomasmiles.com","www.lakeviewfamilydental.com","www.lakewalesdentistry.com","www.lakewestdental.com","www.landmarkdentalcare.com","www.landmarkfamilydentalcare.com","www.landstowndentalcare.com","www.lansingelitedentist.com","www.laurelviewdentistry.com","www.lebanondentalcare.com","www.ledgestonedentalcare.com","www.leevistadental.com","www.legacydentalcarepa.com","www.legacydrivedental.com","www.legacylandingdentistry.com","www.lexingtondentist.com","www.libertycommonsfamilydental.com","www.libertydentalcaremo.com","www.lifetimedentalcareoffrostburg.com","www.lifetimedentalofflowermound.com","www.lifetimedentalofnorman.com","www.lifetimedentalwoodlands.com","www.lifetimedentistryatshortpump.com","www.lifetimedentistrybradenton.com","www.lifetimedentistryladylake.com","www.lifetimedentistryofchickasha.com","www.lifetimedentistryofportorange.com","www.lifetimedentistryofroyalpalm.com","www.lifetimedentistryofsouthtulsa.com","www.lifetimefamilydental.com","www.lifetimefamilydentalva.com","www.lifetimesmilesdentalcare.com","www.lifetimesmilesoakpark.com","www.lifetimestpeters.com","www.limelightdentalcare.com","www.limestonesmiles.com","www.lincolndentalcenteril.com","www.linderhofdental.com","www.linecreekdentalcare.com","www.litchfieldfamilydentistry.com","www.littlebullrundental.com","www.littleriverdentalcare.com","www.littleriverfamilydental.com","www.littleroaddentalcare.com","www.livoniadentalcare.com","www.lochridgedentalcare.com","www.lodgedentalcare.com","www.londonbridgesmiles.com","www.londondentalcenter.com","www.longbowdentalcare.com","www.longcreekdentalcare.com","www.longstonplacedental.com","www.longwaterdentalcare.com","www.longwoodfamilydentistry.com","www.lorraineroaddentalcare.com","www.lortondental.com","www.louisvillemetrodental.com","www.loxahatcheedentalcare.com","www.lwsschesapeake.com","www.lwssfirstcolonial.com","www.lwsskempsville.com","www.lwsskempsvilleortho.com","www.lwssnorfolk.com","www.lwssredmill.com","www.lwsssuffolk.com","www.lwsswardscorner.com","www.macedoniadentalarts.com","www.machesneyparkfamilydental.com","www.macombdentalcenter.com","www.magnoliafamilydentistryla.com","www.mahanvillagedentalcare.com","www.mainstreetdentalcaremonroe.com","www.mallardcreekdentalcare.com","www.manordentalny.com","www.mansfield-dentalcare.com","www.maples-dental.com","www.marinashoresftpierce.com","www.marinashoresportstlucie.com","www.marinervillagedentalcare.com","www.marionfamilydental.com","www.markartzerdds.com","www.marketplacedentalcare.com","www.marketsquaredentalcare.com","www.marketstreetdentalcare.com","www.marketwalkdentalcare.com","www.marklandfamilydental.com","www.marshfielddental.com","www.marysvilleperioandimplants.com","www.mastershanddental.com","www.mayrivercrossingdental.com","www.mcalesterlifetimedentistry.com","www.mckinneydentist.com","www.mdalbertville.com","www.mdapplevalleycedar.com","www.mdapplevalleyflorencetrail.com","www.mdblainepheasantridge.com","www.mdbloomington.com","www.mdbrooklyncenter.com","www.mdchanhassen.com","www.mdchaska.com","www.mdchildrensdentistryburnsville.com","www.mdcottagegrove.com","www.mddowntownminneapolis.com","www.mdeaganwest.com","www.mdedenprairie.com","www.mdelkriver.com","www.mdinvergroveheights.com","www.mdlakeland.com","www.mdlakevilleidealic.com","www.mdmaplegrovebasslake.com","www.mdmaplegrovegrovecircle.com","www.mdmaplewood.com","www.mdminnetonka.com","www.mdosseo.com","www.mdrichfield.com","www.mdroseville.com","www.mdscburnsvilleoralsurgery.com","www.mdscburnsvilleperiodontics.com","www.mdscmaplegroveoralsurgery.com","www.mdscmaplegroveperiodontics.com","www.mdscrichfieldendodontics.com","www.mdscrichfieldoralsurgery.com","www.mdscrichfieldperiodontics.com","www.mdshakopee.com","www.mdstlouispark.com","www.mdstpaulmidway.com","www.mdweststpaul.com","www.mdwoodbury.com","www.meadowcreekdentalcare.com","www.meadowfarmsdentalcare.com","www.meadowoaksdentalcare.com","www.meadowranchdentalcare.com","www.meadowsspringdentalcare.com","www.mechanicsburgfamilydentistry.com","www.melbournefamilydental.com","www.merchantswaydentalcare.com","www.meridiandentalcentre.com","www.meridiandentalfalcon.com","www.mesaridgedental.com","www.metrodentalcareburnsville.com","www.metromndental.com","www.metroparkdentalarts.com","www.metrowestfamilydentistry.com","www.middleburgfamilydentalcare.com","www.middlesexdentalcarect.com","www.midlothiandentist.com","www.midtowndentalassociates.com","www.midtowndentalcare.com","www.millcreekdentalcarefl.com","www.millwoodfamilydental.com","www.miltonfamilydentalcare.com","www.miraclecitydentistry.com","www.miradamarketdentalcare.com","www.miramarparkwaydentalcare.com","www.mirasolwalkdentalcare.com","www.mirrorterracedentalcare.com","www.missionhillsdentistry.com","www.missionlakesdentalcare.com","www.moderndentaleastvalley.com","www.modernfamilydentistry.org","www.modernsmilesdentistry.com","www.mokenacrossingsfamilydental.com","www.molinefamilydental.com","www.monocacyriverdentalcare.com","www.montgomeryfamilydentalcare.com","www.montgomeryplazadental.com","www.montourdental.com","www.moorecompletedental.com","www.morgantonparkdentalcare.com","www.morningsidefamilydentalil.com","www.mortonfamilydental.com","www.mosaicdentalapplevalley.com","www.mosaicdentalmn.com","www.mosaicdentalnicollet.com","www.mosaicdentalridges.com","www.moultriedentalcare.com","www.mountaincrestdental.com","www.mountainpassdentalcare.com","www.mountainrangedentistry.com","www.mountainridgedentalcare.com","www.mountainstatedentalcare.com","www.mousecreekdentalcare.com","www.msmainstreetdental.com","www.mtsterlingsmiles.com","www.muddybranchdentalgroupmd.com","www.muirdental.com","www.murrellsinletdentistry.com","www.mycharlestondentist.com","www.myclearwaterdentistry.com","www.mycrossroadsdentist.com","www.mydentistada.com","www.mydentistardmore.com","www.mydentistbrokenarrow.com","www.mydentistduncan.com","www.mydentistftsmith.com","www.mydentistmuskogee.com","www.mydentistparis.com","www.mydentistspringfield.com","www.mydentistweatherfordtx.com","www.mygranddental.com","www.mynewportricheydentistry.com","www.myontariodentist.com","www.myportorangedentist.com","www.myriverviewdentistry.com","www.myseminoledentistry.com","www.mysmartdentalchoice.com","www.mystonebridgedentist.com","www.mytampadentistry.com","www.mytotalcaredental.com","www.myvicksburgdentist.com","www.mywildwooddentist.com","www.naplesperiodontist.com","www.naplespremierdentistry.com","www.narcoosseedentalcare.com","www.naturecoastdentalcare.com","www.ndscare.com","www.neibauerdentalbowie.com","www.neibauerdentalbrandywine.com","www.neibauerdentalcentralpark.com","www.neibauerdentalcosnerscorner.com","www.neibauerdentalculpeper.com","www.neibauerdentaldalecity.com","www.neibauerdentaldumfries.com","www.neibauerdentalfalmouth.com","www.neibauerdentalfortbelvoir.com","www.neibauerdentalgarrisonville.com","www.neibauerdentalharrisoncrossing.com","www.neibauerdentallaplata.com","www.neibauerdentalmanassas.com","www.neibauerdentaloxonhill.com","www.neibauerdentalsouthriding.com","www.neibauerdentalwaldorf.com","www.neibauerdentalwoodbridge.com","www.neshannockdental.com","www.newmarkdentalcare.com","www.newtowndentalarts.net","www.newvalleydental.com","www.nhdcsmiles.com","www.nineeaglesdentalcare.com","www.nobhilldentalcenter.com","www.nokomisdentalcare.com","www.nonaplacedentalcare.com","www.norfolkdentalcare.com","www.northarlingtondentalcare.com","www.northauroralifetimedentistry.com","www.northbrowarddentalcare.com","www.northbullittfamilydental.com","www.northcharlestonfamilydental.com","www.northcolumbusdentalcare.com","www.northcreekvillagedental.com","www.northeastdentistry.com","www.northgatefamilydental.com","www.northhilldentistry.com","www.northhillsfamilydental.com","www.northloopfd.com","www.northmayfamilydental.com","www.northmyrtlebeachdentistry.com","www.northpointedentalcarein.com","www.northportoralsurgeryanddentalcare.com","www.northranchdentalcare.com","www.northriverdental.com","www.northspringsdentalcare.com","www.northtarrantdentalcare.com","www.northwashingtondental.com","www.northwaydentalhouston.com","www.northwestokcdentalcare.com","www.nybergdentistry.com","www.oakfielddentalfl.com","www.oakgrovedentalcarenv.com","www.oakhillsdentalcarebr.com","www.oakhillsfamilydental.com","www.oakleaffamilydental.com","www.oakleaffamilydentistry.com","www.oakmeadowsvillagedental.com","www.oakopeningsdental.com","www.oakridgedentalcare.com","www.oakriverdentalcare.com","www.oakvalleydentalcare.com","www.oakwoodfamilydentalcare.com","www.oceanbaydentalcare.com","www.ofallondental.com","www.okaloosafamilydentistry.com","www.okddelcity.com","www.okdsouthokc.com","www.okdyukon.com","www.okeechobeedentalcare.com","www.oldemillfamilydental.com","www.oldetownlaureldental.com","www.oldkingsdentalcare.com","www.oldtowndentalwa.com","www.oldtownkatydental.com","www.olytumwaterdentist.com","www.optimumdentistrycoralsprings.com","www.orahhcare.com","www.orangetreedentalcare.com","www.orchardvalleydentalaurora.com","www.oregondentist.com","www.osceoladentalcare.com","www.oswegocommonsfamilydental.com","www.owendrivefamilydental.com","www.pacedentalcare.com","www.palmcoastdentalcare.com","www.palmcreekdentalcare.com","www.palmettocoastdental.com","www.palmettodentalhealth.com","www.palmettodentalpcb.com","www.palmpointedentistry.com","www.palmroyaldentalcare.com","www.panamacitysmiles.com","www.panolafamilydental.com","www.papilliondentalcare.com","www.paradisedentalpc.com","www.park100dc.com","www.parklandfamilydentistry.com","www.parkplacedentalin.com","www.parkridgedentalcarefl.com","www.parkstonedentalcare.com","www.parkwaydentalcare.com","www.parkwayvillagedentalcare.com","www.parkwoodranchdentalcare.com","www.partnersindentalcaremi.com","www.pavilioncrossingdentalcare.com","www.pdpcentralwestend.com","www.pdpchesterfield.com","www.pdpdowntown.com","www.pdpnorthcounty.com","www.pdpofallon.com","www.pdpsouthcountyfenton.com","www.pdpwentzville.com","www.pdpwestcountyoldballas.com","www.pdpwestcountyoldballasoralsurgery.com","www.pdpwestcountyoliveblvd.com","www.peakdentaloflakewood.com","www.pearlywhitesfamilydentistry.com","www.pebblecreekdental.com","www.pelicanparkdentalcare.com","www.pelicanpreservedentalcare.com","www.penfielddentistry.com","www.pennpremierdental.com","www.peoriafamilydental.com","www.peppertreedental.com","www.perfectsmilesdental.com","www.picayunedentalclinic.com","www.pickeringtonfamilydental.com","www.pilotknobdentalcare.com","www.pinearbordentalcare.com","www.pinehavendentalcare.com","www.pineislandroaddentalcare.com","www.pinelakedentalcarefl.com","www.pinerockdentalcare.com","www.pioneercrossingdentalcare.com","www.piperhilldentistry.com","www.pittsburghdentalimplants.com","www.planosmiledesign.com","www.plantationdentalcare.net","www.plantationpointedental.com","www.plantcitydentistry.com","www.plazaboulevarddental.com","www.plazacollinadentalcare.com","www.plazahealthdentistry.com","www.pleasantgrovedentaltn.com","www.plymouthmeetingfamilydental.com","www.pointerfamilydental.com","www.pointhopedentalcaresc.com","www.pompanobeachfamilydental.com","www.poolerparkwaydentalcare.com","www.poplartreedentalcare.com","www.porterdentalcenter.com","www.portofinobaydentalcare.com","www.potomacstationdentalcare.com","www.poughkeepsiedentalny.com","www.prairielakesdentalcare.com","www.prairieplacefamilydental.com","www.prairieridgedentalcare.com","www.prairieviewfamilydental.com","www.prattvilledentalcare.com","www.premierdentistryofblythewood.com","www.premierdentistryofwakeforest.com","www.preservedentalcare.com","www.prestigedentaldds.com","www.prestondentalcenter.com","www.prestwickpointedental.com","www.pricecreekdentistry.com","www.princecreekdentalcare.com","www.princetondl.com","www.providence-smiles.com","www.puschpeakfamilydental.com","www.puschridgedentalaz.com","www.pvpdental.com","www.pwdentalarts.com","www.quailhollowfamilydentistry.com","www.quailspringsdentalcare.com","www.quarrysmiles.com","www.queensroaddentistry.com","www.quirtfamilydentistry-merrill.com","www.quirtfamilydentistry-plover.com","www.quirtfamilydentistry-schofield.com","www.quirtfamilydentistry-wausau.com","www.rahndentalgroup.com","www.raintreefamilydentalcare.com","www.ramseydentalcenter.com","www.raytowndentalcaremo.com","www.rayviewdentalhealth.com","www.redbirddental.com","www.redcedardentalcare.com","www.redhawkdentalcare.com","www.redrosefamilydental.com","www.redwingdentalcare.com","www.reedybranchfamilydentistry.com","www.reemspointedentalcare.com","www.reflectiondentallittleriver.com","www.reflectiondentalmanassas.com","www.regalvalleydentalcare.com","www.reservoircommonsdental.com","www.reservoirdentalgroup.com","www.ricecreekfamilydentistry.com","www.richardwallacedds.com","www.richmondfamilydental.com","www.ridgefieldvillagedentalcare.com","www.ridgepikedentalcare.com","www.ridgeviewfamilydental.com","www.rioranchodentistnm.com","www.riverbendvillagedentalcare.com","www.riverbreezedentalcare.com","www.rivercrestcommonsfamilydental.com","www.rivercrossingdentalcare.com","www.rivergatedentalcarenc.com","www.riversdentalcare.com","www.riversidecrossingdentalcare.com","www.riversidedentalnc.com","www.riversidevalleydentalcare.com","www.riverviewsmilesdental.com","www.riverwooddentalcare.com","www.rljdentalappleton.com","www.rljdentalgreenbay.com","www.rljdentalmenasha.com","www.rljdentalneenah.com","www.rljdentaloshkosh.com","www.rljdentalwestallis.com","www.roanokerapidsdentalcare.com","www.rockhilldentalcaretx.com","www.rockhillsdentalcare.com","www.rockinghamdentalgroupepping.com","www.rockinghamdentalgroupexeter.com","www.rockvalleydentalcare.com","www.rockymountsmilemakers.com","www.rollinghillsdentalcare.com","www.rollingridgedentalcare.com","www.romeovillesmilesdentistry.com","www.rooseveltcommonsdentalcare.com","www.royaloaksdental.com","www.rtdental.com","www.russellvilledentalgroup.com","www.sacramentooralsurgery.com","www.saintandrewsdentalcare.com","www.salemdentalcareva.com","www.sanantoniodentalcarefl.com","www.sancarlosdentalcarefl.com","www.sandalwooddentalcarefl.com","www.sandoakdentalcare.com","www.sangredecristodentalcare.com","www.santanmountaindental.com","www.sarasotacompletedental.com","www.sardisdentalcare.com","www.savannahquartersdentalcare.com","www.sawgrasscompletedentistry.com","www.sazperio.com","www.schertzfamilydental.com","www.sdshouston.com","www.seahavendentalcare.com","www.seaplanedentalcare.com","www.seasidelifetimedentistry.com","www.seasonsfamilydentalcare.com","www.sebastiandentalspa.net","www.secondcreekdentalcare.com","www.secordentalassociates.com","www.secretcitydentalcare.com","www.sedonadentalcare.com","www.selectdentalcarefl.com","www.serenovadentalcare.com","www.settlerswalkdentalcare.com","www.severnaparkdentalcare.com","www.shadowbrookdentist.com","www.shadybrookfamilydental.com","www.sharpsburgdentalcare.com","www.shorehavendentistry.com","www.shorelinedentistryofwayzata.com","www.sienahillsfamilydental.com","www.siennadental.com","www.signaturesmilesbrighton.com","www.signaturesmilesbroadway.com","www.signaturesmilesmi.com","www.silvercreekdentalcare.com","www.silverleafdentalcare.com","www.sixmilecypressdentalcare.com","www.skymarksfamilydentalcare.com","www.skyridgevalleydentalcare.com","www.smilecda.com","www.smilecentrevenice.com","www.smiledesigndental.com","www.smileforlifedental.com","www.smileforlifedentalcare.com","www.smilejoplin.com","www.smileokc.com","www.smilesatbeauregardsquare.com","www.smilesatcarolinaforest.com","www.smilesatgoosecreek.com","www.smilesatheathbrook.com","www.smilesathunterscreek.com","www.smilesatjulingtoncreek.com","www.smilesatlakewoodranch.com","www.smilesbydesign.cc","www.smilesdentistryofmitchellville.com","www.smilesforliferichmond.com","www.smilesofkaty.com","www.smilesonbeachboulevard.com","www.smilesoncalumet.com","www.smilesoncypresspoint.com","www.smilesondelaware.com","www.smilesoneastbay.com","www.smilestudioonline.com","www.smiletodaydentistry.com","www.smilewright.com","www.smithcrossingdentalcare.com","www.smokyhilldental.com","www.softtouchdentistryco.com","www.somersetdentalcarefl.com","www.songstaddentalgroup.com","www.sonrisasandsmiles.com","www.sorrentoeastdental.com","www.southaustindentist.com","www.southbenddental.com","www.southbrowarddentistryandprosthodontics.com","www.southcarolinadentalcenter.com","www.southcharlottedentistry.com","www.southcornerdentalcare.com","www.southeastdentist.com","www.southerndentalcenter.com","www.southernhillsdentalcare.com","www.southfloridasedationdentistry.com","www.southhillperio.com","www.southkiplingdentalcare.com","www.southlakedentalcarefl.com","www.southlakefamilydentalsc.com","www.southleesburgdentalcare.com","www.southmountaindentalcare.com","www.southpointdentalcenter.com","www.southpointecompletedental.com","www.southsidevillagedentalcarefl.com","www.southtampadentistry.com","www.southtexassmiles.com","www.southwestvegassmiles.com","www.southwoodsmilesdentalcare.com","www.spearsmarketdentalcare.com","www.spiritasranchdentalcare.com","www.springfielddc.com","www.springhousefamilydentistry.com","www.springridgedentalcare.com","www.springstreetfamilydentistry.com","www.springvalleydentist.com","www.springviewdentalcare.com","www.springwoodsmarketdentalcare.com","www.ssdgsmiles.com","www.stablevalleydentistry.com","www.stadiumfamilydentistry.com","www.standifordplazadentalcare.com","www.starrsmilldentalcare.com","www.stationsidedentalcare.com","www.staugustinedentistry.com","www.stauntondentist.com","www.stcloudfamilyandcosmeticdentistry.com","www.steamboatparkwaydentalcare.com","www.steelyarddentalcare.com","www.sterlingcreekdentalcare.com","www.sterlingfamilydental.com","www.stevenscrossingdentalcare.com","www.stewartcreekdentalcare.com","www.stluciefamilydental.com","www.stluciewestdentalcare.com","www.stmatthewsdental.com","www.stonebridgeranchsmiles.com","www.stonebrookdentalcare.com","www.stonecreekfamilydentistry.com","www.stonecrestdentalcare.com","www.stonecrossingdentalcare.com","www.stonelakefamilydentistry.com","www.stowepointdentalcare.com","www.stpauloralsurgery.com","www.stpeteoralsurgery.com","www.stratforddental.com","www.streetsofstcharlesdental.com","www.suffolkcompletedentalcare.com","www.sullivanfamilydentistry.com","www.summerfielddentalcare.com","www.summerlindentalcare.com","www.summitfairdentalcare.com","www.summitplazadentalcare.com","www.sumterdentalcare.com","www.suncreekfamilydentistry.com","www.sundomecrossingdentalcare.com","www.sunnysidedentist.com","www.sunridgedentalcareoregon.com","www.sunsetavenuedental.com","www.sunsethillsdental.com","www.sunshinedentalofgulfbreeze.com","www.sunstonedental.com","www.sunwooddentalcare.com","www.suwaneedentalcare.com","www.swiftcreekdentalcare.com","www.sylvanvalleydental.com","www.tamayadentalcare.com","www.tanyardspringsfamilydentistry.com","www.tartanspringsdentalcare.com","www.tealridgedentalcare.com","www.teelparkwaydentalcare.com","www.tenderdentalcare.com","www.tennysonlakedental.com","www.terracedentalassociates.com","www.terracinadentalcare.com","www.terrehautedental.com","www.tfdbinghamfarms.com","www.tfdclintontownship.com","www.tfdcrystallake.com","www.tfdelmwoodpark.com","www.tfdjoliet.com","www.tfdlapeer.com","www.tfdlitchfield.com","www.tfdlivonia.com","www.tfdpaloshills.com","www.tfdportland.com","www.tfdsterlingheights.com","www.tfdtemperance.com","www.tfdwarren.com","www.tfdwestchester.com","www.thecrossroadsdentalcare.com","www.thedentistofcolorado.com","www.thedentistplaceocala.com","www.thedentistplaceorangepark.com","www.thedentistplacespringhill.com","www.thedentistplacespringhillkids.com","www.thedesignersmile.com","www.thelakesdentalcare.com","www.theloopdentalcare.com","www.themilldentalcare.com","www.theranchdentalcare.com","www.therightsmilefl.com","www.thesmilecentre.net","www.thesmiledesignarcadia.com","www.thesmiledesignboyntonbeach.com","www.thesmiledesigncapecoral.com","www.thesmiledesigncarrollwood.com","www.thesmiledesignclearwater.com","www.thesmiledesignclermont.com","www.thesmiledesignconnerton.com","www.thesmiledesigncountryside.com","www.thesmiledesigndadecity.com","www.thesmiledesigndavenport.com","www.thesmiledesigndowntown.com","www.thesmiledesignfletcher.com","www.thesmiledesignfourthstreet.com","www.thesmiledesigngainesville.com","www.thesmiledesigngoldenacres.com","www.thesmiledesignhernando.com","www.thesmiledesigninverness.com","www.thesmiledesignladylake.com","www.thesmiledesignlakeland.com","www.thesmiledesignlakemary.com","www.thesmiledesignlakewales.com","www.thesmiledesignlaurelridge.com","www.thesmiledesignleesburg.com","www.thesmiledesignlithia.com","www.thesmiledesignlutz.com","www.thesmiledesignmountdora.com","www.thesmiledesignmulberrygrove.com","www.thesmiledesignocala.com","www.thesmiledesignocoee.com","www.thesmiledesignorangeblossom.com","www.thesmiledesignorangecity.com","www.thesmiledesignospreycove.com","www.thesmiledesignpalmharbor.com","www.thesmiledesignportrichey.com","www.thesmiledesignriverview.com","www.thesmiledesignsancarlos.com","www.thesmiledesignsandlake.com","www.thesmiledesignsebring.com","www.thesmiledesignsilversprings.com","www.thesmiledesignspringhill.com","www.thesmiledesigntampapalms.com","www.thesmiledesigntarponsprings.com","www.thesmiledesigntoledoblade.com","www.thesmiledesigntrinity.com","www.thesmiledesignvillages.com","www.thesmiledesignwestchase.com","www.thesmiledesignwillasprings.com","www.thomastondental.com","www.thomasvilleroaddentalcare.com","www.thornrundentalcare.com","www.tiffindentalcare.com","www.tigerdentistry.com","www.timberspringsdentalcare.com","www.timberviewdentalcare.com","www.timothyroaddentalcare.com","www.tinkercreekdentalcare.com","www.titusvillesmilesdentistry.com","www.todaysdentistryjax.com","www.todaysfamilydentalwaco.com","www.toledofamilydentalcare.com","www.tomokafamilydentistry.com","www.totalhealthdentistryfl.com","www.towerdentalassociates.com","www.towncenterdentalcaremn.com","www.towncenterdentallasvegas.com","www.towncenterdentistry.com","www.tpdental.com","www.traditiondentalcarenc.com","www.traditionparkwaydentalcare.com","www.trailridgedentalcare.com","www.trailsideparkdentalcare.com","www.trailwindsdentalcare.com","www.tropeadentalcare.com","www.truesmilesonline.com","www.tulsahillsdentalcare.com","www.tumwaterfamilydentistry.com","www.turkeycreekdentalcare.com","www.turtlecreekdentalcare.com","www.twinlakedentistry.com","www.twinriversdentalcare.com","www.twinsburgdental.com","www.tymbercreekdentalcare.com","www.tyronefamilydentistry.com","www.udadentistry.com","www.ultimatedentalstudio.com","www.unbridleddentalcare.com","www.unforgettablesmiles.com","www.universaldentalcenter.net","www.universityfamilydentistry.com","www.universityparkwaydental.com","www.universityplacedental.com","www.uptown.dental","www.v2dentistry.com","www.v2dentistrymcminnville.com","www.valleydentalgroupmn.com","www.valleyparkdentalcare.com","www.valleysmilesdentalcare.com","www.valleyvistadentalcare.com","www.valparaisodental.com","www.vanburenfamilydentistry.com","www.vanderbiltestates.dental","www.vermilionfamilydental.com","www.veronadentalcare.com","www.viennadentalcentreva.com","www.vieradental.com","www.villagecrestfamilydental.com","www.villagefallsdentalcare.com","www.villagegrovedentalcare.com","www.villageplazadentaldesigns.com","www.virginiaparkwaydental.com","www.vistatraildentalcare.com","www.wainwrightdds.com","www.wakeforestdentalarts.com","www.waldorforthodontics.com","www.walkerdentalcaremi.com","www.walkshoresdentalcare.com","www.wallace-dentistry.com","www.wallawalladentalcare.com","www.walledlakejacobsondentalgroup.com","www.warfielddentalcenter.com","www.warnerrobinsfamilydentistry.com","www.washingtonfamilydentalcare.com","www.waterfordfamilydentistry.com","www.waterfordlakesdentistry.com","www.waterfrontdentalcare.com","www.watergrassdentalcare.com","www.watertowerdentalcareco.com","www.waterviewtowndentalcare.com","www.waterwaydentalcare.com","www.waterwaypassagedentalcare.com","www.waterwheeldentalcare.com","www.wdentalgroup.com","www.weatherfordcompletedental.com","www.weatherfordorthodontist.net","www.wecare4smiles.com","www.wedgewoodsquaredental.com","www.weekiwacheedentalcare.com","www.westalamodentalcare.com","www.westbeachesdentalcare.com","www.westbradentondental.com","www.westcanyondentalcare.com","www.westcapefamilydental.com","www.westcolumbiafamilydentistry.com","www.westedgedentalcare.com","www.westenddentalcarewi.com","www.westfallschurchdental.com","www.westfielddentalcenter.com","www.westhamptondentalcare.com","www.westhighlanddentalcare.com","www.westlakesdentalcare.com","www.westmeredentalcare.com","www.westpascodental.com","www.westportdentalcare.com","www.westportdentistry.com","www.westridgedentalcare.com","www.westtowndentalcaresc.com","www.westvillagesdentalcare.com","www.westyorkdentalcare.com","www.wexforddentalarts.com","www.wheatfamilydental.com","www.wheatlandfamilydental.com","www.whispercreekdentalcare.com","www.whisperingoaksfamilydental.com","www.whitehousefamilydentalcare.com","www.whiteoakdentist.com","www.whitepinedc.com","www.whiteriverdental.com","www.whitewatervalleydental.com","www.whittakerroaddental.com","www.wholelifedental.com","www.wildernesscanyondentalcare.com","www.wildernessdentalcare.com","www.wildrosedentalcare.com","www.williamsburgcosmeticdentistry.com","www.williamsburgdentalhealth.com","www.williamsonroaddentalcare.com","www.willowbenddental.com","www.willowgrovedentalcare.com","www.willowknollsdental.com","www.wimaumadentalcare.com","www.windcrestcosmeticdental.com","www.windermerevillagedentalcare.com","www.wintergardenvillagedental.com","www.wiregrassfamilydentalcare.com","www.wnydental.com","www.wnydentallancaster.com","www.wolfcreekdental.com","www.woodedhillsdentalcare.com","www.woodlakeorthodontics.com","www.woodlanddentalcarefl.com","www.woodlandfamilydentalcare.com","www.woodlandheightsfamilydental.com","www.woodmontfamilydentistry.com","www.wtndental.com","www.wyliedental.com","www.youngsvilledentalcare.com","www.yourdanvilledentist.com","www.yourraleighdentist.com","www.yourwilmingtondentist.com","www.zangstreetdentalcare.com","www.zumbehldentalcare.com","wyliedental.com","youngsvilledentalcare.com","yourdanvilledentist.com","yourraleighdentist.com","yourwilmingtondentist.com","zangstreetdentalcare.com","zumbehldentalcare.com"],"fpIDParams":["$session_id","$device_id"],"adParams":["msclkid","viant_clid","gclid","fbclid","wbraid","gbraid"],"utmParams":["utm_campaign","utm_content","utm_medium","utm_source","utm_term"],"referrerParams":["$initial_referrer","$referrer"]},"epic_share_link":{},"UpdatedAt":"2026-01-26T20:25:34Z"}}