diff --git a/src/actions/actionHistory.tsx b/src/actions/actionHistory.tsx
index 8daef488..c23a8e73 100644
--- a/src/actions/actionHistory.tsx
+++ b/src/actions/actionHistory.tsx
@@ -3,7 +3,7 @@ import React from "react";
 import { undo, redo } from "../components/icons";
 import { ToolButton } from "../components/ToolButton";
 import { t } from "../i18n";
-import { SceneHistory } from "../history";
+import { SceneHistory, HistoryEntry } from "../history";
 import { ExcalidrawElement } from "../element/types";
 import { AppState } from "../types";
 import { KEYS } from "../keys";
@@ -13,10 +13,7 @@ import { newElementWith } from "../element/mutateElement";
 const writeData = (
   prevElements: readonly ExcalidrawElement[],
   appState: AppState,
-  updater: () => {
-    elements: ExcalidrawElement[];
-    appState: AppState;
-  } | null,
+  updater: () => HistoryEntry | null,
 ): ActionResult => {
   const commitToHistory = false;
   if (
@@ -52,6 +49,7 @@ const writeData = (
         ),
       appState: { ...appState, ...data.appState },
       commitToHistory,
+      syncHistory: true,
     };
   }
   return { commitToHistory };
diff --git a/src/actions/types.ts b/src/actions/types.ts
index 7d5e9d20..1f94f172 100644
--- a/src/actions/types.ts
+++ b/src/actions/types.ts
@@ -6,6 +6,7 @@ export type ActionResult = {
   elements?: readonly ExcalidrawElement[] | null;
   appState?: AppState | null;
   commitToHistory: boolean;
+  syncHistory?: boolean;
 };
 
 type ActionFn = (
diff --git a/src/appState.ts b/src/appState.ts
index 506e3f34..eb6af942 100644
--- a/src/appState.ts
+++ b/src/appState.ts
@@ -70,26 +70,6 @@ export const clearAppStateForLocalStorage = (appState: AppState) => {
   return exportedState;
 };
 
-export const clearAppStatePropertiesForHistory = (
-  appState: AppState,
-): Partial<AppState> => {
-  return {
-    selectedElementIds: appState.selectedElementIds,
-    exportBackground: appState.exportBackground,
-    shouldAddWatermark: appState.shouldAddWatermark,
-    currentItemStrokeColor: appState.currentItemStrokeColor,
-    currentItemBackgroundColor: appState.currentItemBackgroundColor,
-    currentItemFillStyle: appState.currentItemFillStyle,
-    currentItemStrokeWidth: appState.currentItemStrokeWidth,
-    currentItemRoughness: appState.currentItemRoughness,
-    currentItemOpacity: appState.currentItemOpacity,
-    currentItemFont: appState.currentItemFont,
-    currentItemTextAlign: appState.currentItemTextAlign,
-    viewBackgroundColor: appState.viewBackgroundColor,
-    name: appState.name,
-  };
-};
-
 export const cleanAppStateForExport = (appState: AppState) => {
   return {
     viewBackgroundColor: appState.viewBackgroundColor,
diff --git a/src/components/App.tsx b/src/components/App.tsx
index 1ef7b4b0..bfc3e81e 100644
--- a/src/components/App.tsx
+++ b/src/components/App.tsx
@@ -276,12 +276,23 @@ class App extends React.Component<any, AppState> {
       if (res.commitToHistory) {
         history.resumeRecording();
       }
-      this.setState((state) => ({
-        ...res.appState,
-        editingElement: editingElement || res.appState?.editingElement || null,
-        isCollaborating: state.isCollaborating,
-        collaborators: state.collaborators,
-      }));
+      this.setState(
+        (state) => ({
+          ...res.appState,
+          editingElement:
+            editingElement || res.appState?.editingElement || null,
+          isCollaborating: state.isCollaborating,
+          collaborators: state.collaborators,
+        }),
+        () => {
+          if (res.syncHistory) {
+            history.setCurrentState(
+              this.state,
+              globalSceneState.getElementsIncludingDeleted(),
+            );
+          }
+        },
+      );
     }
   });
 
diff --git a/src/data/restore.ts b/src/data/restore.ts
index ebcfc604..d174565a 100644
--- a/src/data/restore.ts
+++ b/src/data/restore.ts
@@ -74,6 +74,7 @@ export const restore = (
         // all elements must have version > 0 so getDrawingVersion() will pick up newly added elements
         version: element.version || 1,
         id: element.id || randomId(),
+        isDeleted: false,
         fillStyle: element.fillStyle || "hachure",
         strokeWidth: element.strokeWidth || 1,
         strokeStyle: element.strokeStyle ?? "solid",
diff --git a/src/history.ts b/src/history.ts
index 6fd8b0be..e5d40374 100644
--- a/src/history.ts
+++ b/src/history.ts
@@ -1,18 +1,28 @@
 import { AppState } from "./types";
 import { ExcalidrawElement } from "./element/types";
-import { clearAppStatePropertiesForHistory } from "./appState";
 import { newElementWith } from "./element/mutateElement";
 import { isLinearElement } from "./element/typeChecks";
 
-type Result = {
-  appState: AppState;
+export type HistoryEntry = {
+  appState: ReturnType<typeof clearAppStatePropertiesForHistory>;
   elements: ExcalidrawElement[];
 };
 
+type HistoryEntrySerialized = string;
+
+const clearAppStatePropertiesForHistory = (appState: AppState) => {
+  return {
+    selectedElementIds: appState.selectedElementIds,
+    viewBackgroundColor: appState.viewBackgroundColor,
+    name: appState.name,
+  };
+};
+
 export class SceneHistory {
   private recording: boolean = true;
-  private stateHistory: string[] = [];
-  private redoStack: string[] = [];
+  private stateHistory: HistoryEntrySerialized[] = [];
+  private redoStack: HistoryEntrySerialized[] = [];
+  private lastEntry: HistoryEntry | null = null;
 
   getSnapshotForTest() {
     return {
@@ -25,6 +35,20 @@ export class SceneHistory {
   clear() {
     this.stateHistory.length = 0;
     this.redoStack.length = 0;
+    this.lastEntry = null;
+  }
+
+  private parseEntry(
+    entrySerialized: HistoryEntrySerialized | undefined,
+  ): HistoryEntry | null {
+    if (entrySerialized === undefined) {
+      return null;
+    }
+    try {
+      return JSON.parse(entrySerialized);
+    } catch {
+      return null;
+    }
   }
 
   private generateEntry = (
@@ -48,57 +72,96 @@ export class SceneHistory {
             return elements;
           }
 
-          elements.push(
-            newElementWith(element, {
-              // don't store last point if not committed
-              points:
-                element.lastCommittedPoint !==
-                element.points[element.points.length - 1]
-                  ? element.points.slice(0, -1)
-                  : element.points,
-              // don't regenerate versionNonce else this will short-circuit our
-              //  bail-on-no-change logic in pushEntry()
-              versionNonce: element.versionNonce,
-            }),
-          );
+          elements.push({
+            ...element,
+            // don't store last point if not committed
+            points:
+              element.lastCommittedPoint !==
+              element.points[element.points.length - 1]
+                ? element.points.slice(0, -1)
+                : element.points,
+          });
         } else {
-          elements.push(
-            newElementWith(element, { versionNonce: element.versionNonce }),
-          );
+          elements.push(element);
         }
         return elements;
       }, [] as Mutable<typeof elements>),
     });
 
-  pushEntry(appState: AppState, elements: readonly ExcalidrawElement[]) {
-    const newEntry = this.generateEntry(appState, elements);
-    if (
-      this.stateHistory.length > 0 &&
-      this.stateHistory[this.stateHistory.length - 1] === newEntry
-    ) {
-      // If the last entry is the same as this one, ignore it
-      return;
+  shouldCreateEntry(nextEntry: HistoryEntry): boolean {
+    const { lastEntry } = this;
+
+    if (!lastEntry) {
+      return true;
     }
 
-    this.stateHistory.push(newEntry);
+    if (nextEntry.elements.length !== lastEntry.elements.length) {
+      return true;
+    }
 
-    // As a new entry was pushed, we invalidate the redo stack
-    this.clearRedoStack();
+    // loop from right to left as changes are likelier to happen on new elements
+    for (let i = nextEntry.elements.length - 1; i > -1; i--) {
+      const prev = nextEntry.elements[i];
+      const next = lastEntry.elements[i];
+      if (
+        !prev ||
+        !next ||
+        prev.id !== next.id ||
+        prev.version !== next.version ||
+        prev.versionNonce !== next.versionNonce
+      ) {
+        return true;
+      }
+    }
+
+    // note: this is safe because entry's appState is guaranteed no excess props
+    let key: keyof typeof nextEntry.appState;
+    for (key in nextEntry.appState) {
+      if (key === "selectedElementIds") {
+        continue;
+      }
+      if (nextEntry.appState[key] !== lastEntry.appState[key]) {
+        return true;
+      }
+    }
+
+    return false;
   }
 
-  restoreEntry(entry: string) {
-    try {
-      return JSON.parse(entry);
-    } catch {
-      return null;
+  pushEntry(appState: AppState, elements: readonly ExcalidrawElement[]) {
+    const newEntrySerialized = this.generateEntry(appState, elements);
+    const newEntry: HistoryEntry | null = this.parseEntry(newEntrySerialized);
+
+    if (newEntry) {
+      if (!this.shouldCreateEntry(newEntry)) {
+        return;
+      }
+
+      this.stateHistory.push(newEntrySerialized);
+      this.lastEntry = newEntry;
+      // As a new entry was pushed, we invalidate the redo stack
+      this.clearRedoStack();
     }
   }
 
+  private restoreEntry(
+    entrySerialized: HistoryEntrySerialized,
+  ): HistoryEntry | null {
+    const entry = this.parseEntry(entrySerialized);
+    if (entry) {
+      entry.elements = entry.elements.map((element) => {
+        // renew versions
+        return newElementWith(element, {});
+      });
+    }
+    return entry;
+  }
+
   clearRedoStack() {
     this.redoStack.splice(0, this.redoStack.length);
   }
 
-  redoOnce(): Result | null {
+  redoOnce(): HistoryEntry | null {
     if (this.redoStack.length === 0) {
       return null;
     }
@@ -113,7 +176,7 @@ export class SceneHistory {
     return null;
   }
 
-  undoOnce(): Result | null {
+  undoOnce(): HistoryEntry | null {
     if (this.stateHistory.length === 1) {
       return null;
     }
@@ -130,6 +193,19 @@ export class SceneHistory {
     return null;
   }
 
+  /**
+   * Updates history's `lastEntry` to latest app state. This is necessary
+   *  when doing undo/redo which itself doesn't commit to history, but updates
+   *  app state in a way that would break `shouldCreateEntry` which relies on
+   *  `lastEntry` to reflect last comittable history state.
+   * We can't update `lastEntry` from within history when calling undo/redo
+   *  because the action potentially mutates appState/elements before storing
+   *  it.
+   */
+  setCurrentState(appState: AppState, elements: readonly ExcalidrawElement[]) {
+    this.lastEntry = this.parseEntry(this.generateEntry(appState, elements));
+  }
+
   // Suspicious that this is called so many places. Seems error-prone.
   resumeRecording() {
     this.recording = true;
diff --git a/src/tests/__snapshots__/move.test.tsx.snap b/src/tests/__snapshots__/move.test.tsx.snap
index 9c7119c0..28140a80 100644
--- a/src/tests/__snapshots__/move.test.tsx.snap
+++ b/src/tests/__snapshots__/move.test.tsx.snap
@@ -10,13 +10,13 @@ Object {
   "isDeleted": false,
   "opacity": 100,
   "roughness": 1,
-  "seed": 2019559783,
+  "seed": 401146281,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 4,
-  "versionNonce": 1150084233,
+  "versionNonce": 2019559783,
   "width": 30,
   "x": 30,
   "y": 20,
@@ -39,7 +39,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 5,
-  "versionNonce": 1014066025,
+  "versionNonce": 1116226695,
   "width": 30,
   "x": -10,
   "y": 60,
@@ -62,7 +62,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 3,
-  "versionNonce": 401146281,
+  "versionNonce": 453191,
   "width": 30,
   "x": 0,
   "y": 40,
diff --git a/src/tests/__snapshots__/multiPointCreate.test.tsx.snap b/src/tests/__snapshots__/multiPointCreate.test.tsx.snap
index ec26e50c..675b8c25 100644
--- a/src/tests/__snapshots__/multiPointCreate.test.tsx.snap
+++ b/src/tests/__snapshots__/multiPointCreate.test.tsx.snap
@@ -34,7 +34,7 @@ Object {
   "strokeWidth": 1,
   "type": "arrow",
   "version": 7,
-  "versionNonce": 1116226695,
+  "versionNonce": 1150084233,
   "width": 70,
   "x": 30,
   "y": 30,
@@ -75,7 +75,7 @@ Object {
   "strokeWidth": 1,
   "type": "line",
   "version": 7,
-  "versionNonce": 1116226695,
+  "versionNonce": 1150084233,
   "width": 70,
   "x": 30,
   "y": 30,
diff --git a/src/tests/__snapshots__/regressionTests.test.tsx.snap b/src/tests/__snapshots__/regressionTests.test.tsx.snap
index 07353ae1..9ac95364 100644
--- a/src/tests/__snapshots__/regressionTests.test.tsx.snap
+++ b/src/tests/__snapshots__/regressionTests.test.tsx.snap
@@ -58,13 +58,13 @@ Object {
   "isDeleted": false,
   "opacity": 100,
   "roughness": 1,
-  "seed": 2019559783,
+  "seed": 401146281,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 4,
-  "versionNonce": 1150084233,
+  "versionNonce": 2019559783,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -87,7 +87,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 3,
-  "versionNonce": 401146281,
+  "versionNonce": 453191,
   "width": 10,
   "x": 20,
   "y": 20,
@@ -101,23 +101,65 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 10,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
+          "version": 2,
+          "versionNonce": 1278240551,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 10,
+          "id": "id2",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 401146281,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
         Object {
           "angle": 0,
           "backgroundColor": "transparent",
@@ -133,69 +175,7 @@ Object {
           "strokeWidth": 1,
           "type": "rectangle",
           "version": 3,
-          "versionNonce": 1278240551,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id2",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 2019559783,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 5,
-          "versionNonce": 1150084233,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "versionNonce": 453191,
           "width": 10,
           "x": 20,
           "y": 20,
@@ -273,7 +253,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 8,
-  "versionNonce": 1014066025,
+  "versionNonce": 1116226695,
   "width": 10,
   "x": 9,
   "y": 9,
@@ -287,20 +267,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -318,7 +288,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -397,7 +367,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 8,
-  "versionNonce": 1604849351,
+  "versionNonce": 1116226695,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -411,20 +381,41 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 10,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
+          "version": 2,
+          "versionNonce": 1278240551,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+        },
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -443,7 +434,7 @@ Object {
           "strokeWidth": 1,
           "type": "rectangle",
           "version": 3,
-          "versionNonce": 1278240551,
+          "versionNonce": 449462985,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -452,26 +443,16 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
         Object {
           "angle": 0,
-          "backgroundColor": "transparent",
+          "backgroundColor": "#fa5252",
           "fillStyle": "hachure",
           "height": 10,
           "id": "id0",
@@ -483,8 +464,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 453191,
+          "version": 5,
+          "versionNonce": 401146281,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -493,20 +474,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "#fa5252",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -525,7 +496,7 @@ Object {
           "strokeWidth": 1,
           "type": "rectangle",
           "version": 6,
-          "versionNonce": 1150084233,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -534,61 +505,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "#fa5252",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "#fa5252",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 7,
-          "versionNonce": 1014066025,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "#fa5252",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#5f3dc4",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-        },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -606,8 +526,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 1604849351,
+          "version": 8,
+          "versionNonce": 1116226695,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -686,7 +606,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 3,
-  "versionNonce": 401146281,
+  "versionNonce": 453191,
   "width": 10,
   "x": 20,
   "y": 20,
@@ -700,20 +620,42 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 10,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
+          "version": 2,
+          "versionNonce": 1278240551,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+        },
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -732,49 +674,7 @@ Object {
           "strokeWidth": 1,
           "type": "rectangle",
           "version": 3,
-          "versionNonce": 1278240551,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "versionNonce": 453191,
           "width": 10,
           "x": 20,
           "y": 20,
@@ -854,7 +754,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 4,
-  "versionNonce": 1116226695,
+  "versionNonce": 2019559783,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -868,20 +768,42 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 10,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
+          "version": 2,
+          "versionNonce": 1278240551,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+        },
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -900,30 +822,21 @@ Object {
           "strokeWidth": 1,
           "type": "rectangle",
           "version": 3,
-          "versionNonce": 1278240551,
+          "versionNonce": 453191,
           "width": 10,
-          "x": 10,
-          "y": 10,
+          "x": 20,
+          "y": 20,
         },
       ],
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
+          "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -942,50 +855,7 @@ Object {
           "strokeWidth": 1,
           "type": "rectangle",
           "version": 4,
-          "versionNonce": 401146281,
-          "width": 10,
-          "x": 20,
-          "y": 20,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 5,
-          "versionNonce": 1116226695,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -1081,13 +951,13 @@ Object {
   "isDeleted": false,
   "opacity": 100,
   "roughness": 1,
-  "seed": 453191,
+  "seed": 449462985,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 2,
-  "versionNonce": 401146281,
+  "versionNonce": 453191,
   "width": 10,
   "x": 30,
   "y": 10,
@@ -1101,20 +971,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -1132,7 +992,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -1142,20 +1002,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -1173,7 +1023,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -1188,75 +1038,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
-          "versionNonce": 401146281,
-          "width": 10,
-          "x": 30,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id2": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 3,
-          "versionNonce": 1278240551,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id1",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 453191,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -1353,13 +1141,13 @@ Object {
   "isDeleted": false,
   "opacity": 100,
   "roughness": 1,
-  "seed": 453191,
+  "seed": 449462985,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 2,
-  "versionNonce": 401146281,
+  "versionNonce": 453191,
   "width": 10,
   "x": 30,
   "y": 10,
@@ -1376,13 +1164,13 @@ Object {
   "isDeleted": false,
   "opacity": 100,
   "roughness": 1,
-  "seed": 1116226695,
+  "seed": 401146281,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 2,
-  "versionNonce": 1014066025,
+  "versionNonce": 2019559783,
   "width": 10,
   "x": 50,
   "y": 10,
@@ -1396,20 +1184,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -1427,7 +1205,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -1437,20 +1215,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -1468,7 +1236,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -1483,13 +1251,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -1498,20 +1266,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -1529,7 +1287,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -1544,13 +1302,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -1564,96 +1322,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 1116226695,
+          "seed": 401146281,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
-          "versionNonce": 1014066025,
-          "width": 10,
-          "x": 50,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 3,
-          "versionNonce": 1278240551,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id1",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 453191,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 3,
-          "versionNonce": 401146281,
-          "width": 10,
-          "x": 30,
-          "y": 10,
-        },
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id2",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 1116226695,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 3,
-          "versionNonce": 1014066025,
+          "version": 2,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 50,
           "y": 10,
@@ -1748,13 +1423,13 @@ Object {
   "isDeleted": false,
   "opacity": 100,
   "roughness": 1,
-  "seed": 453191,
+  "seed": 449462985,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "diamond",
   "version": 2,
-  "versionNonce": 401146281,
+  "versionNonce": 453191,
   "width": 10,
   "x": 30,
   "y": 10,
@@ -1771,13 +1446,13 @@ Object {
   "isDeleted": false,
   "opacity": 100,
   "roughness": 1,
-  "seed": 1116226695,
+  "seed": 401146281,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "ellipse",
   "version": 2,
-  "versionNonce": 1014066025,
+  "versionNonce": 2019559783,
   "width": 10,
   "x": 50,
   "y": 10,
@@ -1805,13 +1480,13 @@ Object {
     ],
   ],
   "roughness": 1,
-  "seed": 1505387817,
+  "seed": 1150084233,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "arrow",
   "version": 3,
-  "versionNonce": 493213705,
+  "versionNonce": 1014066025,
   "width": 10,
   "x": 70,
   "y": 10,
@@ -1839,13 +1514,13 @@ Object {
     ],
   ],
   "roughness": 1,
-  "seed": 760410951,
+  "seed": 238820263,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "line",
   "version": 3,
-  "versionNonce": 289600103,
+  "versionNonce": 1604849351,
   "width": 10,
   "x": 90,
   "y": 10,
@@ -1873,13 +1548,13 @@ Object {
     ],
   ],
   "roughness": 1,
-  "seed": 1051383431,
+  "seed": 640725609,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "draw",
   "version": 3,
-  "versionNonce": 1279028647,
+  "versionNonce": 941653321,
   "width": 10,
   "x": 30,
   "y": 10,
@@ -1893,38 +1568,18 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {},
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [],
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -1942,7 +1597,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -1952,20 +1607,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -1983,7 +1628,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -1998,13 +1643,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "diamond",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -2013,20 +1658,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -2044,7 +1679,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -2059,13 +1694,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "diamond",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -2079,13 +1714,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 1116226695,
+          "seed": 401146281,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "ellipse",
-          "version": 3,
-          "versionNonce": 1014066025,
+          "version": 2,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 50,
           "y": 10,
@@ -2094,20 +1729,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id3": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -2125,7 +1750,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -2140,13 +1765,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "diamond",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -2160,13 +1785,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 1116226695,
+          "seed": 401146281,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "ellipse",
-          "version": 3,
-          "versionNonce": 1014066025,
+          "version": 2,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 50,
           "y": 10,
@@ -2191,13 +1816,13 @@ Object {
             ],
           ],
           "roughness": 1,
-          "seed": 1505387817,
+          "seed": 1150084233,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "arrow",
-          "version": 4,
-          "versionNonce": 493213705,
+          "version": 3,
+          "versionNonce": 1014066025,
           "width": 10,
           "x": 70,
           "y": 10,
@@ -2206,20 +1831,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -2237,7 +1852,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -2252,13 +1867,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "diamond",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -2272,13 +1887,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 1116226695,
+          "seed": 401146281,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "ellipse",
-          "version": 3,
-          "versionNonce": 1014066025,
+          "version": 2,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 50,
           "y": 10,
@@ -2303,13 +1918,13 @@ Object {
             ],
           ],
           "roughness": 1,
-          "seed": 1505387817,
+          "seed": 1150084233,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "arrow",
-          "version": 4,
-          "versionNonce": 493213705,
+          "version": 3,
+          "versionNonce": 1014066025,
           "width": 10,
           "x": 70,
           "y": 10,
@@ -2334,13 +1949,13 @@ Object {
             ],
           ],
           "roughness": 1,
-          "seed": 760410951,
+          "seed": 238820263,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "line",
-          "version": 4,
-          "versionNonce": 289600103,
+          "version": 3,
+          "versionNonce": 1604849351,
           "width": 10,
           "x": 90,
           "y": 10,
@@ -2349,20 +1964,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -2380,7 +1985,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -2395,13 +2000,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "diamond",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -2415,13 +2020,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 1116226695,
+          "seed": 401146281,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "ellipse",
-          "version": 3,
-          "versionNonce": 1014066025,
+          "version": 2,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 50,
           "y": 10,
@@ -2446,13 +2051,13 @@ Object {
             ],
           ],
           "roughness": 1,
-          "seed": 1505387817,
+          "seed": 1150084233,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "arrow",
-          "version": 4,
-          "versionNonce": 493213705,
+          "version": 3,
+          "versionNonce": 1014066025,
           "width": 10,
           "x": 70,
           "y": 10,
@@ -2477,13 +2082,13 @@ Object {
             ],
           ],
           "roughness": 1,
-          "seed": 760410951,
+          "seed": 238820263,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "line",
-          "version": 4,
-          "versionNonce": 289600103,
+          "version": 3,
+          "versionNonce": 1604849351,
           "width": 10,
           "x": 90,
           "y": 10,
@@ -2508,13 +2113,13 @@ Object {
             ],
           ],
           "roughness": 1,
-          "seed": 1051383431,
+          "seed": 640725609,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "draw",
-          "version": 4,
-          "versionNonce": 1279028647,
+          "version": 3,
+          "versionNonce": 941653321,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -2606,20 +2211,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -2637,7 +2232,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -2730,20 +2325,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -2761,7 +2346,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "diamond",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -2854,20 +2439,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -2885,7 +2460,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "ellipse",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -2989,20 +2564,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -3031,7 +2596,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "arrow",
-          "version": 4,
+          "version": 3,
           "versionNonce": 449462985,
           "width": 10,
           "x": 10,
@@ -3135,20 +2700,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -3177,7 +2732,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "line",
-          "version": 4,
+          "version": 3,
           "versionNonce": 449462985,
           "width": 10,
           "x": 10,
@@ -3281,20 +2836,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -3323,7 +2868,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "draw",
-          "version": 4,
+          "version": 3,
           "versionNonce": 449462985,
           "width": 10,
           "x": 10,
@@ -3427,20 +2972,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -3469,7 +3004,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "arrow",
-          "version": 4,
+          "version": 3,
           "versionNonce": 449462985,
           "width": 10,
           "x": 10,
@@ -3562,20 +3097,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -3593,7 +3118,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "diamond",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -3686,20 +3211,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -3717,7 +3232,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "ellipse",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -3821,20 +3336,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -3863,7 +3368,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "line",
-          "version": 4,
+          "version": 3,
           "versionNonce": 449462985,
           "width": 10,
           "x": 10,
@@ -3956,20 +3461,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -3987,7 +3482,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -4091,20 +3586,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4133,7 +3618,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "draw",
-          "version": 4,
+          "version": 3,
           "versionNonce": 449462985,
           "width": 10,
           "x": 10,
@@ -4149,6 +3634,195 @@ exports[`regression tests hotkey x selects draw tool: [end of test] number of el
 
 exports[`regression tests hotkey x selects draw tool: [end of test] number of renders 1`] = `6`;
 
+exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] appState 1`] = `
+Object {
+  "collaborators": Map {},
+  "currentItemBackgroundColor": "transparent",
+  "currentItemFillStyle": "hachure",
+  "currentItemFont": "20px Virgil",
+  "currentItemOpacity": 100,
+  "currentItemRoughness": 1,
+  "currentItemStrokeColor": "#000000",
+  "currentItemStrokeStyle": "solid",
+  "currentItemStrokeWidth": 1,
+  "currentItemTextAlign": "left",
+  "cursorButton": "up",
+  "cursorX": 0,
+  "cursorY": 0,
+  "draggingElement": null,
+  "editingElement": null,
+  "elementLocked": false,
+  "elementType": "selection",
+  "errorMessage": null,
+  "exportBackground": true,
+  "isCollaborating": false,
+  "isLoading": false,
+  "isResizing": false,
+  "isRotating": false,
+  "lastPointerDownWith": "mouse",
+  "multiElement": null,
+  "name": "Untitled-201933152653",
+  "openMenu": null,
+  "resizingElement": null,
+  "scrollX": 0,
+  "scrollY": 0,
+  "scrolledOutside": false,
+  "selectedElementIds": Object {
+    "id1": true,
+    "id4": true,
+  },
+  "selectionElement": null,
+  "shouldAddWatermark": false,
+  "shouldCacheIgnoreZoom": false,
+  "showShortcutsDialog": false,
+  "username": "",
+  "viewBackgroundColor": "#ffffff",
+  "zenModeEnabled": false,
+  "zoom": 1,
+}
+`;
+
+exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 0 1`] = `
+Object {
+  "angle": 0,
+  "backgroundColor": "transparent",
+  "fillStyle": "hachure",
+  "height": 10,
+  "id": "id0",
+  "isDeleted": false,
+  "opacity": 100,
+  "roughness": 1,
+  "seed": 337897,
+  "strokeColor": "#000000",
+  "strokeStyle": "solid",
+  "strokeWidth": 1,
+  "type": "rectangle",
+  "version": 3,
+  "versionNonce": 1014066025,
+  "width": 10,
+  "x": 10,
+  "y": 10,
+}
+`;
+
+exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] element 1 1`] = `
+Object {
+  "angle": 0,
+  "backgroundColor": "transparent",
+  "fillStyle": "hachure",
+  "height": 10,
+  "id": "id1",
+  "isDeleted": false,
+  "opacity": 100,
+  "roughness": 1,
+  "seed": 449462985,
+  "strokeColor": "#000000",
+  "strokeStyle": "solid",
+  "strokeWidth": 1,
+  "type": "rectangle",
+  "version": 3,
+  "versionNonce": 238820263,
+  "width": 10,
+  "x": 30,
+  "y": 10,
+}
+`;
+
+exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] history 1`] = `
+Object {
+  "recording": false,
+  "redoStack": Array [],
+  "stateHistory": Array [
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 10,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
+          "version": 2,
+          "versionNonce": 1278240551,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id1": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 10,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
+          "version": 2,
+          "versionNonce": 1278240551,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 10,
+          "id": "id1",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 449462985,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
+          "version": 2,
+          "versionNonce": 453191,
+          "width": 10,
+          "x": 30,
+          "y": 10,
+        },
+      ],
+    },
+  ],
+}
+`;
+
+exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] number of elements 1`] = `2`;
+
+exports[`regression tests noop interaction after undo shouldn't create history entry: [end of test] number of renders 1`] = `18`;
+
 exports[`regression tests pinch-to-zoom works: [end of test] appState 1`] = `
 Object {
   "collaborators": Map {},
@@ -4287,7 +3961,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 18,
-  "versionNonce": 651223591,
+  "versionNonce": 845789479,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -4301,20 +3975,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4332,7 +3996,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -4342,21 +4006,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4374,8 +4028,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -4384,22 +4038,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4417,52 +4061,42 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+          "id2": true,
+          "id3": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 5,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
           "version": 5,
           "versionNonce": 1116226695,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 5,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -4471,15 +4105,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -4488,7 +4113,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4506,8 +4130,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -4516,15 +4140,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -4534,7 +4149,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4552,8 +4166,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -4562,15 +4176,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -4581,7 +4186,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4599,8 +4203,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -4609,15 +4213,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -4629,7 +4224,6 @@ Object {
           "id6": true,
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4647,8 +4241,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 10,
-          "versionNonce": 1315507081,
+          "version": 9,
+          "versionNonce": 915032327,
           "width": 15,
           "x": 10,
           "y": 15,
@@ -4657,15 +4251,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -4678,7 +4263,6 @@ Object {
           "id7": true,
           "id8": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4696,8 +4280,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 11,
-          "versionNonce": 406373543,
+          "version": 10,
+          "versionNonce": 747212839,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -4706,15 +4290,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -4728,7 +4303,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4746,8 +4320,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 12,
-          "versionNonce": 1402203177,
+          "version": 11,
+          "versionNonce": 760410951,
           "width": 15,
           "x": 5,
           "y": 10,
@@ -4756,15 +4330,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -4779,7 +4344,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4797,8 +4361,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 13,
-          "versionNonce": 2004587015,
+          "version": 12,
+          "versionNonce": 289600103,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -4807,15 +4371,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -4831,7 +4386,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4849,8 +4403,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 14,
-          "versionNonce": 1292308681,
+          "version": 13,
+          "versionNonce": 1898319239,
           "width": 5,
           "x": 15,
           "y": 10,
@@ -4859,15 +4413,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -4884,7 +4429,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4902,8 +4446,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 15,
-          "versionNonce": 1508694887,
+          "version": 14,
+          "versionNonce": 406373543,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -4912,15 +4456,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -4938,7 +4473,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -4956,8 +4490,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 16,
-          "versionNonce": 1996028265,
+          "version": 15,
+          "versionNonce": 908564423,
           "width": 5,
           "x": 10,
           "y": 10,
@@ -4966,15 +4500,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -4993,7 +4518,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5011,8 +4535,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 17,
-          "versionNonce": 1573789895,
+          "version": 16,
+          "versionNonce": 1359939303,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -5021,15 +4545,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -5049,7 +4564,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5067,8 +4581,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 18,
-          "versionNonce": 2066753033,
+          "version": 17,
+          "versionNonce": 2004587015,
           "width": 15,
           "x": 10,
           "y": 10,
@@ -5077,15 +4591,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -5106,7 +4611,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5124,8 +4628,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 19,
-          "versionNonce": 651223591,
+          "version": 18,
+          "versionNonce": 845789479,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -5210,7 +4714,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 9,
-  "versionNonce": 1315507081,
+  "versionNonce": 915032327,
   "width": 15,
   "x": 10,
   "y": 15,
@@ -5224,20 +4728,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5255,7 +4749,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -5265,21 +4759,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5297,8 +4781,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -5307,22 +4791,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5340,52 +4814,42 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+          "id2": true,
+          "id3": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 5,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
           "version": 5,
           "versionNonce": 1116226695,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 5,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -5394,15 +4858,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -5411,7 +4866,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5429,8 +4883,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -5439,15 +4893,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -5457,7 +4902,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5475,8 +4919,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -5485,15 +4929,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -5504,7 +4939,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5522,8 +4956,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -5532,15 +4966,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -5552,7 +4977,6 @@ Object {
           "id6": true,
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5570,8 +4994,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 10,
-          "versionNonce": 1315507081,
+          "version": 9,
+          "versionNonce": 915032327,
           "width": 15,
           "x": 10,
           "y": 15,
@@ -5654,7 +5078,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 7,
-  "versionNonce": 81784553,
+  "versionNonce": 1604849351,
   "width": 5,
   "x": 10,
   "y": 5,
@@ -5668,20 +5092,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5699,7 +5113,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -5709,21 +5123,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5741,8 +5145,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -5751,22 +5155,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5784,8 +5178,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 5,
-          "versionNonce": 1116226695,
+          "version": 4,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -5794,15 +5188,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -5810,7 +5195,6 @@ Object {
           "id2": true,
           "id3": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5828,8 +5212,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
+          "version": 5,
+          "versionNonce": 1116226695,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -5838,15 +5222,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -5855,7 +5230,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5873,8 +5247,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -5883,15 +5257,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -5901,7 +5266,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -5919,8 +5283,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -6001,7 +5365,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 5,
-  "versionNonce": 400692809,
+  "versionNonce": 1116226695,
   "width": 5,
   "x": 15,
   "y": 15,
@@ -6015,20 +5379,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6046,7 +5400,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -6056,21 +5410,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6088,8 +5432,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -6098,22 +5442,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6131,8 +5465,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 5,
-          "versionNonce": 1116226695,
+          "version": 4,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -6141,15 +5475,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -6157,7 +5482,6 @@ Object {
           "id2": true,
           "id3": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6175,8 +5499,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
+          "version": 5,
+          "versionNonce": 1116226695,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -6255,7 +5579,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 3,
-  "versionNonce": 401146281,
+  "versionNonce": 453191,
   "width": 15,
   "x": 5,
   "y": 5,
@@ -6269,20 +5593,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6300,7 +5614,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -6310,21 +5624,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6342,8 +5646,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -6436,7 +5740,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 17,
-  "versionNonce": 2066753033,
+  "versionNonce": 2004587015,
   "width": 15,
   "x": 10,
   "y": 10,
@@ -6450,20 +5754,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6481,7 +5775,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -6491,21 +5785,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6523,8 +5807,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -6533,22 +5817,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6566,52 +5840,42 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+          "id2": true,
+          "id3": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 5,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
           "version": 5,
           "versionNonce": 1116226695,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 5,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -6620,15 +5884,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -6637,7 +5892,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6655,8 +5909,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -6665,15 +5919,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -6683,7 +5928,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6701,8 +5945,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -6711,15 +5955,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -6730,7 +5965,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6748,8 +5982,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -6758,15 +5992,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -6778,7 +6003,6 @@ Object {
           "id6": true,
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6796,8 +6020,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 10,
-          "versionNonce": 1315507081,
+          "version": 9,
+          "versionNonce": 915032327,
           "width": 15,
           "x": 10,
           "y": 15,
@@ -6806,15 +6030,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -6827,7 +6042,6 @@ Object {
           "id7": true,
           "id8": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6845,8 +6059,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 11,
-          "versionNonce": 406373543,
+          "version": 10,
+          "versionNonce": 747212839,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -6855,15 +6069,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -6877,7 +6082,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6895,8 +6099,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 12,
-          "versionNonce": 1402203177,
+          "version": 11,
+          "versionNonce": 760410951,
           "width": 15,
           "x": 5,
           "y": 10,
@@ -6905,15 +6109,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -6928,7 +6123,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6946,8 +6140,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 13,
-          "versionNonce": 2004587015,
+          "version": 12,
+          "versionNonce": 289600103,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -6956,15 +6150,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -6980,7 +6165,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -6998,8 +6182,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 14,
-          "versionNonce": 1292308681,
+          "version": 13,
+          "versionNonce": 1898319239,
           "width": 5,
           "x": 15,
           "y": 10,
@@ -7008,15 +6192,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7033,7 +6208,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7051,8 +6225,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 15,
-          "versionNonce": 1508694887,
+          "version": 14,
+          "versionNonce": 406373543,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -7061,15 +6235,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7087,7 +6252,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7105,8 +6269,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 16,
-          "versionNonce": 1996028265,
+          "version": 15,
+          "versionNonce": 908564423,
           "width": 5,
           "x": 10,
           "y": 10,
@@ -7115,15 +6279,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7142,7 +6297,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7160,8 +6314,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 17,
-          "versionNonce": 1573789895,
+          "version": 16,
+          "versionNonce": 1359939303,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -7170,15 +6324,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7198,7 +6343,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7216,8 +6360,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 18,
-          "versionNonce": 2066753033,
+          "version": 17,
+          "versionNonce": 2004587015,
           "width": 15,
           "x": 10,
           "y": 10,
@@ -7308,7 +6452,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 15,
-  "versionNonce": 1996028265,
+  "versionNonce": 908564423,
   "width": 5,
   "x": 10,
   "y": 10,
@@ -7322,20 +6466,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7353,7 +6487,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -7363,21 +6497,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7395,8 +6519,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -7405,22 +6529,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7438,52 +6552,42 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+          "id2": true,
+          "id3": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 5,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
           "version": 5,
           "versionNonce": 1116226695,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 5,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -7492,15 +6596,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7509,7 +6604,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7527,8 +6621,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -7537,15 +6631,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7555,7 +6640,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7573,8 +6657,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -7583,15 +6667,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7602,7 +6677,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7620,8 +6694,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -7630,15 +6704,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7650,7 +6715,6 @@ Object {
           "id6": true,
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7668,8 +6732,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 10,
-          "versionNonce": 1315507081,
+          "version": 9,
+          "versionNonce": 915032327,
           "width": 15,
           "x": 10,
           "y": 15,
@@ -7678,15 +6742,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7699,7 +6754,6 @@ Object {
           "id7": true,
           "id8": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7717,8 +6771,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 11,
-          "versionNonce": 406373543,
+          "version": 10,
+          "versionNonce": 747212839,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -7727,15 +6781,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7749,7 +6794,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7767,8 +6811,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 12,
-          "versionNonce": 1402203177,
+          "version": 11,
+          "versionNonce": 760410951,
           "width": 15,
           "x": 5,
           "y": 10,
@@ -7777,15 +6821,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7800,7 +6835,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7818,8 +6852,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 13,
-          "versionNonce": 2004587015,
+          "version": 12,
+          "versionNonce": 289600103,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -7828,15 +6862,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7852,7 +6877,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7870,8 +6894,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 14,
-          "versionNonce": 1292308681,
+          "version": 13,
+          "versionNonce": 1898319239,
           "width": 5,
           "x": 15,
           "y": 10,
@@ -7880,15 +6904,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7905,7 +6920,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7923,8 +6937,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 15,
-          "versionNonce": 1508694887,
+          "version": 14,
+          "versionNonce": 406373543,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -7933,15 +6947,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -7959,7 +6964,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -7977,8 +6981,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 16,
-          "versionNonce": 1996028265,
+          "version": 15,
+          "versionNonce": 908564423,
           "width": 5,
           "x": 10,
           "y": 10,
@@ -8067,7 +7071,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 13,
-  "versionNonce": 1292308681,
+  "versionNonce": 1898319239,
   "width": 5,
   "x": 15,
   "y": 10,
@@ -8081,20 +7085,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8112,7 +7106,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -8122,21 +7116,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8154,8 +7138,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -8164,22 +7148,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8197,52 +7171,42 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+          "id2": true,
+          "id3": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 5,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
           "version": 5,
           "versionNonce": 1116226695,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 5,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -8251,15 +7215,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -8268,7 +7223,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8286,8 +7240,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -8296,15 +7250,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -8314,7 +7259,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8332,8 +7276,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -8342,15 +7286,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -8361,7 +7296,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8379,8 +7313,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -8389,15 +7323,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -8409,7 +7334,6 @@ Object {
           "id6": true,
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8427,8 +7351,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 10,
-          "versionNonce": 1315507081,
+          "version": 9,
+          "versionNonce": 915032327,
           "width": 15,
           "x": 10,
           "y": 15,
@@ -8437,15 +7361,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -8458,7 +7373,6 @@ Object {
           "id7": true,
           "id8": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8476,8 +7390,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 11,
-          "versionNonce": 406373543,
+          "version": 10,
+          "versionNonce": 747212839,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -8486,15 +7400,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -8508,7 +7413,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8526,8 +7430,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 12,
-          "versionNonce": 1402203177,
+          "version": 11,
+          "versionNonce": 760410951,
           "width": 15,
           "x": 5,
           "y": 10,
@@ -8536,15 +7440,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -8559,7 +7454,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8577,8 +7471,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 13,
-          "versionNonce": 2004587015,
+          "version": 12,
+          "versionNonce": 289600103,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -8587,15 +7481,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -8611,7 +7496,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8629,8 +7513,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 14,
-          "versionNonce": 1292308681,
+          "version": 13,
+          "versionNonce": 1898319239,
           "width": 5,
           "x": 15,
           "y": 10,
@@ -8717,7 +7601,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 11,
-  "versionNonce": 1402203177,
+  "versionNonce": 760410951,
   "width": 15,
   "x": 5,
   "y": 10,
@@ -8731,20 +7615,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8762,7 +7636,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -8772,21 +7646,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8804,8 +7668,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -8814,22 +7678,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8847,52 +7701,42 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+          "id2": true,
+          "id3": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 5,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
           "version": 5,
           "versionNonce": 1116226695,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 5,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -8901,15 +7745,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -8918,7 +7753,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8936,8 +7770,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -8946,15 +7780,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -8964,7 +7789,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -8982,8 +7806,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -8992,15 +7816,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -9011,7 +7826,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9029,8 +7843,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -9039,15 +7853,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -9059,7 +7864,6 @@ Object {
           "id6": true,
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9077,8 +7881,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 10,
-          "versionNonce": 1315507081,
+          "version": 9,
+          "versionNonce": 915032327,
           "width": 15,
           "x": 10,
           "y": 15,
@@ -9087,15 +7891,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -9108,7 +7903,6 @@ Object {
           "id7": true,
           "id8": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9126,8 +7920,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 11,
-          "versionNonce": 406373543,
+          "version": 10,
+          "versionNonce": 747212839,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -9136,15 +7930,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -9158,7 +7943,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9176,8 +7960,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 12,
-          "versionNonce": 1402203177,
+          "version": 11,
+          "versionNonce": 760410951,
           "width": 15,
           "x": 5,
           "y": 10,
@@ -9263,7 +8047,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 10,
-  "versionNonce": 406373543,
+  "versionNonce": 747212839,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -9277,20 +8061,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9308,7 +8082,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -9318,21 +8092,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9350,8 +8114,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -9360,22 +8124,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9393,52 +8147,42 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+          "id2": true,
+          "id3": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 5,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
           "version": 5,
           "versionNonce": 1116226695,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 5,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -9447,15 +8191,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -9464,7 +8199,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9482,8 +8216,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -9492,15 +8226,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -9510,7 +8235,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9528,8 +8252,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -9538,15 +8262,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -9557,7 +8272,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9575,8 +8289,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -9585,15 +8299,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -9605,7 +8310,6 @@ Object {
           "id6": true,
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9623,8 +8327,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 10,
-          "versionNonce": 1315507081,
+          "version": 9,
+          "versionNonce": 915032327,
           "width": 15,
           "x": 10,
           "y": 15,
@@ -9633,15 +8337,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -9654,7 +8349,6 @@ Object {
           "id7": true,
           "id8": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9672,8 +8366,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 11,
-          "versionNonce": 406373543,
+          "version": 10,
+          "versionNonce": 747212839,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -9757,7 +8451,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 8,
-  "versionNonce": 760410951,
+  "versionNonce": 23633383,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -9771,20 +8465,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9802,7 +8486,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -9812,21 +8496,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9844,8 +8518,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -9854,22 +8528,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9887,8 +8551,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 5,
-          "versionNonce": 1116226695,
+          "version": 4,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -9897,15 +8561,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -9913,7 +8568,6 @@ Object {
           "id2": true,
           "id3": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9931,8 +8585,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
+          "version": 5,
+          "versionNonce": 1116226695,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -9941,15 +8595,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -9958,7 +8603,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -9976,8 +8620,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -9986,15 +8630,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -10004,7 +8639,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10022,8 +8656,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -10032,15 +8666,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -10051,7 +8676,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10069,8 +8693,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -10152,7 +8776,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 6,
-  "versionNonce": 23633383,
+  "versionNonce": 238820263,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -10166,20 +8790,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10197,7 +8811,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -10207,21 +8821,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10239,8 +8843,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -10249,22 +8853,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10282,8 +8876,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 5,
-          "versionNonce": 1116226695,
+          "version": 4,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -10292,15 +8886,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -10308,7 +8893,6 @@ Object {
           "id2": true,
           "id3": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10326,8 +8910,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
+          "version": 5,
+          "versionNonce": 1116226695,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -10336,15 +8920,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -10353,7 +8928,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10371,8 +8945,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -10452,7 +9026,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 4,
-  "versionNonce": 1116226695,
+  "versionNonce": 2019559783,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -10466,20 +9040,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10497,7 +9061,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -10507,21 +9071,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10539,8 +9093,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -10549,22 +9103,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10582,8 +9126,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 5,
-          "versionNonce": 1116226695,
+          "version": 4,
+          "versionNonce": 2019559783,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -10677,7 +9221,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 18,
-  "versionNonce": 651223591,
+  "versionNonce": 845789479,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -10691,20 +9235,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10722,7 +9256,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -10732,21 +9266,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10764,8 +9288,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -10774,22 +9298,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10807,52 +9321,42 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+          "id2": true,
+          "id3": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 5,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
           "version": 5,
           "versionNonce": 1116226695,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 5,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -10861,15 +9365,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -10878,7 +9373,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10896,8 +9390,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -10906,15 +9400,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -10924,7 +9409,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10942,8 +9426,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -10952,15 +9436,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -10971,7 +9446,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -10989,8 +9463,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -10999,15 +9473,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11019,7 +9484,6 @@ Object {
           "id6": true,
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11037,8 +9501,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 10,
-          "versionNonce": 1315507081,
+          "version": 9,
+          "versionNonce": 915032327,
           "width": 15,
           "x": 10,
           "y": 15,
@@ -11047,15 +9511,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11068,7 +9523,6 @@ Object {
           "id7": true,
           "id8": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11086,8 +9540,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 11,
-          "versionNonce": 406373543,
+          "version": 10,
+          "versionNonce": 747212839,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -11096,15 +9550,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11118,7 +9563,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11136,8 +9580,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 12,
-          "versionNonce": 1402203177,
+          "version": 11,
+          "versionNonce": 760410951,
           "width": 15,
           "x": 5,
           "y": 10,
@@ -11146,15 +9590,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11169,7 +9604,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11187,8 +9621,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 13,
-          "versionNonce": 2004587015,
+          "version": 12,
+          "versionNonce": 289600103,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -11197,15 +9631,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11221,7 +9646,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11239,8 +9663,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 14,
-          "versionNonce": 1292308681,
+          "version": 13,
+          "versionNonce": 1898319239,
           "width": 5,
           "x": 15,
           "y": 10,
@@ -11249,15 +9673,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11274,7 +9689,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11292,8 +9706,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 15,
-          "versionNonce": 1508694887,
+          "version": 14,
+          "versionNonce": 406373543,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -11302,15 +9716,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11328,7 +9733,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11346,8 +9750,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 16,
-          "versionNonce": 1996028265,
+          "version": 15,
+          "versionNonce": 908564423,
           "width": 5,
           "x": 10,
           "y": 10,
@@ -11356,15 +9760,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11383,7 +9778,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11401,8 +9795,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 17,
-          "versionNonce": 1573789895,
+          "version": 16,
+          "versionNonce": 1359939303,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -11411,15 +9805,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11439,7 +9824,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11457,8 +9841,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 18,
-          "versionNonce": 2066753033,
+          "version": 17,
+          "versionNonce": 2004587015,
           "width": 15,
           "x": 10,
           "y": 10,
@@ -11467,15 +9851,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11496,7 +9871,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11514,8 +9888,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 19,
-          "versionNonce": 651223591,
+          "version": 18,
+          "versionNonce": 845789479,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -11607,7 +9981,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 16,
-  "versionNonce": 1573789895,
+  "versionNonce": 1359939303,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -11621,20 +9995,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11652,7 +10016,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -11662,21 +10026,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11694,8 +10048,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -11704,22 +10058,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11737,52 +10081,42 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+          "id2": true,
+          "id3": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 5,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
           "version": 5,
           "versionNonce": 1116226695,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 5,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -11791,15 +10125,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11808,7 +10133,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11826,8 +10150,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -11836,15 +10160,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11854,7 +10169,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11872,8 +10186,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -11882,15 +10196,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11901,7 +10206,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11919,8 +10223,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -11929,15 +10233,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11949,7 +10244,6 @@ Object {
           "id6": true,
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -11967,8 +10261,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 10,
-          "versionNonce": 1315507081,
+          "version": 9,
+          "versionNonce": 915032327,
           "width": 15,
           "x": 10,
           "y": 15,
@@ -11977,15 +10271,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -11998,7 +10283,6 @@ Object {
           "id7": true,
           "id8": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12016,8 +10300,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 11,
-          "versionNonce": 406373543,
+          "version": 10,
+          "versionNonce": 747212839,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -12026,15 +10310,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12048,7 +10323,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12066,8 +10340,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 12,
-          "versionNonce": 1402203177,
+          "version": 11,
+          "versionNonce": 760410951,
           "width": 15,
           "x": 5,
           "y": 10,
@@ -12076,15 +10350,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12099,7 +10364,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12117,8 +10381,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 13,
-          "versionNonce": 2004587015,
+          "version": 12,
+          "versionNonce": 289600103,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -12127,15 +10391,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12151,7 +10406,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12169,8 +10423,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 14,
-          "versionNonce": 1292308681,
+          "version": 13,
+          "versionNonce": 1898319239,
           "width": 5,
           "x": 15,
           "y": 10,
@@ -12179,15 +10433,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12204,7 +10449,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12222,8 +10466,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 15,
-          "versionNonce": 1508694887,
+          "version": 14,
+          "versionNonce": 406373543,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -12232,15 +10476,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12258,7 +10493,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12276,8 +10510,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 16,
-          "versionNonce": 1996028265,
+          "version": 15,
+          "versionNonce": 908564423,
           "width": 5,
           "x": 10,
           "y": 10,
@@ -12286,15 +10520,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12313,7 +10538,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12331,8 +10555,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 17,
-          "versionNonce": 1573789895,
+          "version": 16,
+          "versionNonce": 1359939303,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -12422,7 +10646,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 14,
-  "versionNonce": 1508694887,
+  "versionNonce": 406373543,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -12436,20 +10660,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12467,7 +10681,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -12477,21 +10691,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12509,8 +10713,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -12519,22 +10723,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12552,52 +10746,42 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+          "id2": true,
+          "id3": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 5,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
           "version": 5,
           "versionNonce": 1116226695,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 5,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -12606,15 +10790,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12623,7 +10798,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12641,8 +10815,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -12651,15 +10825,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12669,7 +10834,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12687,8 +10851,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -12697,15 +10861,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12716,7 +10871,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12734,8 +10888,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -12744,15 +10898,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12764,7 +10909,6 @@ Object {
           "id6": true,
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12782,8 +10926,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 10,
-          "versionNonce": 1315507081,
+          "version": 9,
+          "versionNonce": 915032327,
           "width": 15,
           "x": 10,
           "y": 15,
@@ -12792,15 +10936,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12813,7 +10948,6 @@ Object {
           "id7": true,
           "id8": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12831,8 +10965,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 11,
-          "versionNonce": 406373543,
+          "version": 10,
+          "versionNonce": 747212839,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -12841,15 +10975,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12863,7 +10988,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12881,8 +11005,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 12,
-          "versionNonce": 1402203177,
+          "version": 11,
+          "versionNonce": 760410951,
           "width": 15,
           "x": 5,
           "y": 10,
@@ -12891,15 +11015,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12914,7 +11029,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12932,8 +11046,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 13,
-          "versionNonce": 2004587015,
+          "version": 12,
+          "versionNonce": 289600103,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -12942,15 +11056,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -12966,7 +11071,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -12984,8 +11088,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 14,
-          "versionNonce": 1292308681,
+          "version": 13,
+          "versionNonce": 1898319239,
           "width": 5,
           "x": 15,
           "y": 10,
@@ -12994,15 +11098,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -13019,7 +11114,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13037,8 +11131,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 15,
-          "versionNonce": 1508694887,
+          "version": 14,
+          "versionNonce": 406373543,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -13126,7 +11220,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 12,
-  "versionNonce": 2004587015,
+  "versionNonce": 289600103,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -13140,20 +11234,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13171,7 +11255,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -13181,21 +11265,11 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13213,8 +11287,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 401146281,
+          "version": 3,
+          "versionNonce": 453191,
           "width": 15,
           "x": 5,
           "y": 5,
@@ -13223,22 +11297,12 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
           "id1": true,
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13256,52 +11320,42 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
+          "version": 4,
+          "versionNonce": 2019559783,
+          "width": 10,
+          "x": 10,
+          "y": 10,
+        },
+      ],
+    },
+    Object {
+      "appState": Object {
+        "name": "Untitled-201933152653",
+        "selectedElementIds": Object {
+          "id0": true,
+          "id1": true,
+          "id2": true,
+          "id3": true,
+        },
+        "viewBackgroundColor": "#ffffff",
+      },
+      "elements": Array [
+        Object {
+          "angle": 0,
+          "backgroundColor": "transparent",
+          "fillStyle": "hachure",
+          "height": 5,
+          "id": "id0",
+          "isDeleted": false,
+          "opacity": 100,
+          "roughness": 1,
+          "seed": 337897,
+          "strokeColor": "#000000",
+          "strokeStyle": "solid",
+          "strokeWidth": 1,
+          "type": "rectangle",
           "version": 5,
           "versionNonce": 1116226695,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 5,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 6,
-          "versionNonce": 400692809,
           "width": 5,
           "x": 15,
           "y": 15,
@@ -13310,15 +11364,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -13327,7 +11372,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13345,8 +11389,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 7,
-          "versionNonce": 23633383,
+          "version": 6,
+          "versionNonce": 238820263,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -13355,15 +11399,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -13373,7 +11408,6 @@ Object {
           "id4": true,
           "id5": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13391,8 +11425,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 1604849351,
           "width": 5,
           "x": 10,
           "y": 5,
@@ -13401,15 +11435,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -13420,7 +11445,6 @@ Object {
           "id5": true,
           "id6": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13438,8 +11462,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 9,
-          "versionNonce": 760410951,
+          "version": 8,
+          "versionNonce": 23633383,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -13448,15 +11472,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -13468,7 +11483,6 @@ Object {
           "id6": true,
           "id7": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13486,8 +11500,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 10,
-          "versionNonce": 1315507081,
+          "version": 9,
+          "versionNonce": 915032327,
           "width": 15,
           "x": 10,
           "y": 15,
@@ -13496,15 +11510,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -13517,7 +11522,6 @@ Object {
           "id7": true,
           "id8": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13535,8 +11539,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 11,
-          "versionNonce": 406373543,
+          "version": 10,
+          "versionNonce": 747212839,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -13545,15 +11549,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -13567,7 +11562,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13585,8 +11579,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 12,
-          "versionNonce": 1402203177,
+          "version": 11,
+          "versionNonce": 760410951,
           "width": 15,
           "x": 5,
           "y": 10,
@@ -13595,15 +11589,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -13618,7 +11603,6 @@ Object {
           "id8": true,
           "id9": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13636,8 +11620,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 13,
-          "versionNonce": 2004587015,
+          "version": 12,
+          "versionNonce": 289600103,
           "width": 10,
           "x": 10,
           "y": 10,
@@ -13719,7 +11703,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 3,
-  "versionNonce": 493213705,
+  "versionNonce": 1116226695,
   "width": 10,
   "x": 20,
   "y": 20,
@@ -13736,13 +11720,13 @@ Object {
   "isDeleted": false,
   "opacity": 100,
   "roughness": 1,
-  "seed": 453191,
+  "seed": 449462985,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 3,
-  "versionNonce": 915032327,
+  "versionNonce": 1014066025,
   "width": 10,
   "x": 40,
   "y": 20,
@@ -13756,20 +11740,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13787,7 +11761,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -13797,20 +11771,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -13828,7 +11792,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -13843,13 +11807,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -13858,141 +11822,6 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id2": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 3,
-          "versionNonce": 1278240551,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id1",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 453191,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 3,
-          "versionNonce": 401146281,
-          "width": 10,
-          "x": 30,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
-        "name": "Untitled-201933152653",
-        "selectedElementIds": Object {
-          "id0": true,
-          "id1": true,
-          "id2": true,
-          "id3": true,
-        },
-        "shouldAddWatermark": false,
-        "viewBackgroundColor": "#ffffff",
-      },
-      "elements": Array [
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id0",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 337897,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 3,
-          "versionNonce": 1278240551,
-          "width": 10,
-          "x": 10,
-          "y": 10,
-        },
-        Object {
-          "angle": 0,
-          "backgroundColor": "transparent",
-          "fillStyle": "hachure",
-          "height": 10,
-          "id": "id1",
-          "isDeleted": false,
-          "opacity": 100,
-          "roughness": 1,
-          "seed": 453191,
-          "strokeColor": "#000000",
-          "strokeStyle": "solid",
-          "strokeWidth": 1,
-          "type": "rectangle",
-          "version": 3,
-          "versionNonce": 401146281,
-          "width": 10,
-          "x": 30,
-          "y": 10,
-        },
-      ],
-    },
-    Object {
-      "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
@@ -14001,7 +11830,6 @@ Object {
           "id3": true,
           "id4": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -14019,8 +11847,8 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 493213705,
+          "version": 3,
+          "versionNonce": 1116226695,
           "width": 10,
           "x": 20,
           "y": 20,
@@ -14034,13 +11862,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 4,
-          "versionNonce": 915032327,
+          "version": 3,
+          "versionNonce": 1014066025,
           "width": 10,
           "x": 40,
           "y": 20,
@@ -14234,7 +12062,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 3,
-  "versionNonce": 1278240551,
+  "versionNonce": 941653321,
   "width": 10,
   "x": 10,
   "y": 10,
@@ -14251,13 +12079,13 @@ Object {
   "isDeleted": false,
   "opacity": 100,
   "roughness": 1,
-  "seed": 453191,
+  "seed": 449462985,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 3,
-  "versionNonce": 401146281,
+  "versionNonce": 908564423,
   "width": 10,
   "x": 30,
   "y": 10,
@@ -14288,13 +12116,13 @@ Object {
     ],
   ],
   "roughness": 1,
-  "seed": 1116226695,
+  "seed": 401146281,
   "strokeColor": "#000000",
   "strokeStyle": "solid",
   "strokeWidth": 1,
   "type": "arrow",
   "version": 9,
-  "versionNonce": 2004587015,
+  "versionNonce": 1349943049,
   "width": 10,
   "x": 10,
   "y": 30,
@@ -14307,20 +12135,10 @@ Object {
   "redoStack": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -14338,7 +12156,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -14353,13 +12171,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -14391,13 +12209,13 @@ Object {
             ],
           ],
           "roughness": 1,
-          "seed": 1116226695,
+          "seed": 401146281,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "arrow",
-          "version": 8,
-          "versionNonce": 81784553,
+          "version": 7,
+          "versionNonce": 400692809,
           "width": 10,
           "x": 10,
           "y": 30,
@@ -14406,20 +12224,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id2": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -14437,7 +12245,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -14452,13 +12260,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
@@ -14486,13 +12294,13 @@ Object {
             ],
           ],
           "roughness": 1,
-          "seed": 1116226695,
+          "seed": 401146281,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "arrow",
-          "version": 6,
-          "versionNonce": 1604849351,
+          "version": 5,
+          "versionNonce": 1014066025,
           "width": 10,
           "x": 10,
           "y": 30,
@@ -14503,20 +12311,10 @@ Object {
   "stateHistory": Array [
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id0": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -14534,7 +12332,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -14544,20 +12342,10 @@ Object {
     },
     Object {
       "appState": Object {
-        "currentItemBackgroundColor": "transparent",
-        "currentItemFillStyle": "hachure",
-        "currentItemFont": "20px Virgil",
-        "currentItemOpacity": 100,
-        "currentItemRoughness": 1,
-        "currentItemStrokeColor": "#000000",
-        "currentItemStrokeWidth": 1,
-        "currentItemTextAlign": "left",
-        "exportBackground": true,
         "name": "Untitled-201933152653",
         "selectedElementIds": Object {
           "id1": true,
         },
-        "shouldAddWatermark": false,
         "viewBackgroundColor": "#ffffff",
       },
       "elements": Array [
@@ -14575,7 +12363,7 @@ Object {
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
+          "version": 2,
           "versionNonce": 1278240551,
           "width": 10,
           "x": 10,
@@ -14590,13 +12378,13 @@ Object {
           "isDeleted": false,
           "opacity": 100,
           "roughness": 1,
-          "seed": 453191,
+          "seed": 449462985,
           "strokeColor": "#000000",
           "strokeStyle": "solid",
           "strokeWidth": 1,
           "type": "rectangle",
-          "version": 3,
-          "versionNonce": 401146281,
+          "version": 2,
+          "versionNonce": 453191,
           "width": 10,
           "x": 30,
           "y": 10,
diff --git a/src/tests/__snapshots__/resize.test.tsx.snap b/src/tests/__snapshots__/resize.test.tsx.snap
index e8cdcb6c..a88d7bda 100644
--- a/src/tests/__snapshots__/resize.test.tsx.snap
+++ b/src/tests/__snapshots__/resize.test.tsx.snap
@@ -16,7 +16,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 3,
-  "versionNonce": 1150084233,
+  "versionNonce": 401146281,
   "width": 30,
   "x": 29,
   "y": 47,
@@ -39,7 +39,7 @@ Object {
   "strokeWidth": 1,
   "type": "rectangle",
   "version": 3,
-  "versionNonce": 1150084233,
+  "versionNonce": 401146281,
   "width": 30,
   "x": 29,
   "y": 47,
diff --git a/src/tests/regressionTests.test.tsx b/src/tests/regressionTests.test.tsx
index 81294008..834fb93c 100644
--- a/src/tests/regressionTests.test.tsx
+++ b/src/tests/regressionTests.test.tsx
@@ -162,6 +162,11 @@ const getSelectedElement = (): ExcalidrawElement => {
   return selectedElements[0];
 };
 
+function getStateHistory() {
+  // @ts-ignore
+  return h.history.stateHistory;
+}
+
 type HandlerRectanglesRet = keyof ReturnType<typeof handlerRectangles>;
 const getResizeHandles = () => {
   const rects = handlerRectangles(
@@ -569,6 +574,46 @@ describe("regression tests", () => {
     expect(h.elements.filter((element) => !element.isDeleted).length).toBe(2);
   });
 
+  it("noop interaction after undo shouldn't create history entry", () => {
+    // NOTE: this will fail if this test case is run in isolation. There's
+    //  some leaking state or race conditions in initialization/teardown
+    //  (couldn't figure out)
+    expect(getStateHistory().length).toBe(0);
+
+    clickTool("rectangle");
+    pointerDown(10, 10);
+    pointerMove(20, 20);
+    pointerUp();
+
+    clickTool("rectangle");
+    pointerDown(30, 10);
+    pointerMove(40, 20);
+    pointerUp();
+
+    expect(getStateHistory().length).toBe(2);
+
+    keyPress("z", true);
+    expect(getStateHistory().length).toBe(1);
+
+    // clicking an element shouldn't addu to history
+    pointerDown(10, 10);
+    pointerUp();
+    expect(getStateHistory().length).toBe(1);
+
+    keyPress("z", true, true);
+    expect(getStateHistory().length).toBe(2);
+
+    // clicking an element shouldn't addu to history
+    pointerDown(10, 10);
+    pointerUp();
+    expect(getStateHistory().length).toBe(2);
+
+    // same for clicking the element just redo-ed
+    pointerDown(30, 10);
+    pointerUp();
+    expect(getStateHistory().length).toBe(2);
+  });
+
   it("zoom hotkeys", () => {
     expect(h.state.zoom).toBe(1);
     fireEvent.keyDown(document, { code: "Equal", ctrlKey: true });